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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.GeospatialPointStyleOptionsPropertystatic final classAn implementation forCfnTemplate.GeospatialPointStyleOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterMarkerConfiguration
The cluster marker configuration of the geospatial point style.Returns union: either
IResolvableorCfnTemplate.ClusterMarkerConfigurationProperty- See Also:
-
getHeatmapConfiguration
The heatmap configuration of the geospatial point style.Returns union: either
IResolvableorCfnTemplate.GeospatialHeatmapConfigurationProperty- See Also:
-
getSelectedPointStyle
The selected point styles (point, cluster) of the geospatial map.- See Also:
-
builder
-