Interface CfnDashboard.GeospatialGradientColorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.GeospatialGradientColorProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.GeospatialGradientColorProperty
extends software.amazon.jsii.JsiiSerializable
The definition for a gradient color.
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.*;
GeospatialGradientColorProperty geospatialGradientColorProperty = GeospatialGradientColorProperty.builder()
.stepColors(List.of(GeospatialGradientStepColorProperty.builder()
.color("color")
.dataValue(123)
.build()))
// the properties below are optional
.defaultOpacity(123)
.nullDataSettings(GeospatialNullDataSettingsProperty.builder()
.symbolStyle(GeospatialNullSymbolStyleProperty.builder()
.fillColor("fillColor")
.strokeColor("strokeColor")
.strokeWidth(123)
.build())
.build())
.nullDataVisibility("nullDataVisibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.GeospatialGradientColorPropertystatic final classAn implementation forCfnDashboard.GeospatialGradientColorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStepColors
A list of gradient step colors for the gradient.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.GeospatialGradientStepColorProperty>- See Also:
-
getDefaultOpacity
The default opacity for the gradient color.- See Also:
-
getNullDataSettings
The null data visualization settings.Returns union: either
IResolvableorCfnDashboard.GeospatialNullDataSettingsProperty- See Also:
-
getNullDataVisibility
The state of visibility for null data.- See Also:
-
builder
-