Interface CfnTemplate.GradientColorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.GradientColorProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.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: