Interface CfnTemplatePropsMixin.FilledMapShapeConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.FilledMapShapeConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.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.cfnpropertymixins.services.quicksight.*;
FilledMapShapeConditionalFormattingProperty filledMapShapeConditionalFormattingProperty = FilledMapShapeConditionalFormattingProperty.builder()
.fieldId("fieldId")
.format(ShapeConditionalFormatProperty.builder()
.backgroundColor(ConditionalFormattingColorProperty.builder()
.gradient(ConditionalFormattingGradientColorProperty.builder()
.color(GradientColorProperty.builder()
.stops(List.of(GradientStopProperty.builder()
.color("color")
.dataValue(123)
.gradientOffset(123)
.build()))
.build())
.expression("expression")
.build())
.solid(ConditionalFormattingSolidColorProperty.builder()
.color("color")
.expression("expression")
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTemplatePropsMixin.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.Returns union: either
IResolvableorCfnTemplatePropsMixin.ShapeConditionalFormatProperty- See Also:
-
builder
@Stability(Stable) static CfnTemplatePropsMixin.FilledMapShapeConditionalFormattingProperty.Builder builder()
-