Interface CfnTemplate.GeospatialPointStyleOptionsProperty

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

@Stability(Stable) public static interface CfnTemplate.GeospatialPointStyleOptionsProperty extends software.amazon.jsii.JsiiSerializable
The point style of the geospatial map.

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.*;
 GeospatialPointStyleOptionsProperty geospatialPointStyleOptionsProperty = GeospatialPointStyleOptionsProperty.builder()
         .clusterMarkerConfiguration(ClusterMarkerConfigurationProperty.builder()
                 .clusterMarker(ClusterMarkerProperty.builder()
                         .simpleClusterMarker(SimpleClusterMarkerProperty.builder()
                                 .color("color")
                                 .build())
                         .build())
                 .build())
         .heatmapConfiguration(GeospatialHeatmapConfigurationProperty.builder()
                 .heatmapColor(GeospatialHeatmapColorScaleProperty.builder()
                         .colors(List.of(GeospatialHeatmapDataColorProperty.builder()
                                 .color("color")
                                 .build()))
                         .build())
                 .build())
         .selectedPointStyle("selectedPointStyle")
         .build();
 

See Also: