Interface CfnTemplate.ShapeConditionalFormatProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ShapeConditionalFormatProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.ShapeConditionalFormatProperty
extends software.amazon.jsii.JsiiSerializable
The shape conditional formatting of a filled map 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.*;
ShapeConditionalFormatProperty shapeConditionalFormatProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.ShapeConditionalFormatPropertystatic final classAn implementation forCfnTemplate.ShapeConditionalFormatProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The conditional formatting for the shape background color of a filled map visual.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackgroundColor
The conditional formatting for the shape background color of a filled map visual.Returns union: either
IResolvableorCfnTemplate.ConditionalFormattingColorProperty- See Also:
-
builder
-