Interface CfnDashboard.ColorsConfigurationProperty

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

@Stability(Stable) public static interface CfnDashboard.ColorsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The color configurations for a column.

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.*;
 ColorsConfigurationProperty colorsConfigurationProperty = ColorsConfigurationProperty.builder()
         .customColors(List.of(CustomColorProperty.builder()
                 .color("color")
                 // the properties below are optional
                 .fieldValue("fieldValue")
                 .specialValue("specialValue")
                 .build()))
         .build();
 

See Also: