Interface CfnDashboard.FilledMapConditionalFormattingOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.FilledMapConditionalFormattingOptionProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.FilledMapConditionalFormattingOptionProperty
extends software.amazon.jsii.JsiiSerializable
Conditional formatting options of a
FilledMapVisual .
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.*;
FilledMapConditionalFormattingOptionProperty filledMapConditionalFormattingOptionProperty = FilledMapConditionalFormattingOptionProperty.builder()
.shape(FilledMapShapeConditionalFormattingProperty.builder()
.fieldId("fieldId")
// the properties below are optional
.format(ShapeConditionalFormatProperty.builder()
.backgroundColor(ConditionalFormattingColorProperty.builder()
.gradient(ConditionalFormattingGradientColorProperty.builder()
.color(GradientColorProperty.builder()
.stops(List.of(GradientStopProperty.builder()
.gradientOffset(123)
// the properties below are optional
.color("color")
.dataValue(123)
.build()))
.build())
.expression("expression")
.build())
.solid(ConditionalFormattingSolidColorProperty.builder()
.expression("expression")
// the properties below are optional
.color("color")
.build())
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboard.FilledMapConditionalFormattingOptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getShape
The conditional formatting that determines the shape of the filled map.Returns union: either
IResolvableorCfnDashboard.FilledMapShapeConditionalFormattingProperty- See Also:
-
builder
@Stability(Stable) static CfnDashboard.FilledMapConditionalFormattingOptionProperty.Builder builder()
-