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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.ColorScaleProperty
static final class
An implementation forCfnDashboard.ColorScaleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColorFillType
Determines the color fill type.- See Also:
-
getColors
Determines the list of colors that are applied to the visual.- See Also:
-
getNullValueColor
Determines the color that is applied to null values.- See Also:
-
builder
-