Interface CfnAnalysis.GeospatialCategoricalColorProperty

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

@Stability(Stable) public static interface CfnAnalysis.GeospatialCategoricalColorProperty extends software.amazon.jsii.JsiiSerializable
The definition for a categorical 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.*;
 GeospatialCategoricalColorProperty geospatialCategoricalColorProperty = GeospatialCategoricalColorProperty.builder()
         .categoryDataColors(List.of(GeospatialCategoricalDataColorProperty.builder()
                 .color("color")
                 .dataValue("dataValue")
                 .build()))
         // the properties below are optional
         .defaultOpacity(123)
         .nullDataSettings(GeospatialNullDataSettingsProperty.builder()
                 .symbolStyle(GeospatialNullSymbolStyleProperty.builder()
                         .fillColor("fillColor")
                         .strokeColor("strokeColor")
                         .strokeWidth(123)
                         .build())
                 .build())
         .nullDataVisibility("nullDataVisibility")
         .build();
 

See Also: