Interface CfnAnalysis.ColorScaleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ColorScaleProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.ColorScalePropertystatic final classAn implementation forCfnAnalysis.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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysis.DataColorProperty>- See Also:
-
getNullValueColor
Determines the color that is applied to null values.Returns union: either
IResolvableorCfnAnalysis.DataColorProperty- See Also:
-
builder
-