Interface CfnAnalysis.ConditionalFormattingGradientColorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ConditionalFormattingGradientColorProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ConditionalFormattingGradientColorProperty
extends software.amazon.jsii.JsiiSerializable
Formatting configuration for 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.*;
ConditionalFormattingGradientColorProperty conditionalFormattingGradientColorProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.ConditionalFormattingGradientColorPropertystatic final classAn implementation forCfnAnalysis.ConditionalFormattingGradientColorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColor
Determines the color.- See Also:
-
getExpression
The expression that determines the formatting configuration for gradient color.- See Also:
-
builder
-