Interface CfnDashboard.GeospatialPointStyleOptionsProperty

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

@Stability(Stable) public static interface CfnDashboard.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())
         .selectedPointStyle("selectedPointStyle")
         .build();