Interface CfnDashboard.FilledMapShapeConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.FilledMapShapeConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.FilledMapShapeConditionalFormattingProperty
extends software.amazon.jsii.JsiiSerializable
The conditional formatting that determines the shape of the filled map.
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.*; FilledMapShapeConditionalFormattingProperty filledMapShapeConditionalFormattingProperty = 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.FilledMapShapeConditionalFormattingProperty
static final class
An implementation forCfnDashboard.FilledMapShapeConditionalFormattingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldId
The field ID of the filled map shape.- See Also:
-
getFormat
The conditional formatting that determines the background color of a filled map's shape.- See Also:
-
builder
@Stability(Stable) static CfnDashboard.FilledMapShapeConditionalFormattingProperty.Builder builder()
-