Interface CfnAnalysis.GradientColorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.GradientColorProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.GradientColorProperty
extends software.amazon.jsii.JsiiSerializable
Determines the gradient color settings.
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.*;
GradientColorProperty gradientColorProperty = GradientColorProperty.builder()
.stops(List.of(GradientStopProperty.builder()
.gradientOffset(123)
// the properties below are optional
.color("color")
.dataValue(123)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.GradientColorPropertystatic final classAn implementation forCfnAnalysis.GradientColorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStops
The list of gradient color stops.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysis.GradientStopProperty>- See Also:
-
builder
-