Interface CfnDashboard.ColorScaleProperty

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

@Stability(Stable) public static interface CfnDashboard.ColorScaleProperty extends software.amazon.jsii.JsiiSerializable
Determines the color scale that is applied to the visual.

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.*;
 ColorScaleProperty colorScaleProperty = ColorScaleProperty.builder()
         .colorFillType("colorFillType")
         .colors(List.of(DataColorProperty.builder()
                 .color("color")
                 .dataValue(123)
                 .build()))
         // the properties below are optional
         .nullValueColor(DataColorProperty.builder()
                 .color("color")
                 .dataValue(123)
                 .build())
         .build();