Interface CfnTemplate.VisualPaletteProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.VisualPaletteProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.VisualPaletteProperty extends software.amazon.jsii.JsiiSerializable
The visual display options for the visual palette.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 VisualPaletteProperty visualPaletteProperty = VisualPaletteProperty.builder()
         .chartColor("chartColor")
         .colorMap(List.of(DataPathColorProperty.builder()
                 .color("color")
                 .element(DataPathValueProperty.builder()
                         .dataPathType(DataPathTypeProperty.builder()
                                 .pivotTableDataPathType("pivotTableDataPathType")
                                 .build())
                         .fieldId("fieldId")
                         .fieldValue("fieldValue")
                         .build())
                 // the properties below are optional
                 .timeGranularity("timeGranularity")
                 .build()))
         .build();
 

See Also: