Interface CfnDashboard.ClusterMarkerConfigurationProperty

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

@Stability(Stable) public static interface CfnDashboard.ClusterMarkerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The cluster marker configuration of the geospatial map selected point style.

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.*;
 ClusterMarkerConfigurationProperty clusterMarkerConfigurationProperty = ClusterMarkerConfigurationProperty.builder()
         .clusterMarker(ClusterMarkerProperty.builder()
                 .simpleClusterMarker(SimpleClusterMarkerProperty.builder()
                         .color("color")
                         .build())
                 .build())
         .build();
 

See Also: