Interface CfnAnalysis.GeospatialPointStyleOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.GeospatialPointStyleOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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 forCfnAnalysis.GeospatialPointStyleOptionsPropertystatic final classAn implementation forCfnAnalysis.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
IResolvableorCfnAnalysis.ClusterMarkerConfigurationProperty- See Also:
-
getHeatmapConfiguration
The heatmap configuration of the geospatial point style.Returns union: either
IResolvableorCfnAnalysis.GeospatialHeatmapConfigurationProperty- See Also:
-
getSelectedPointStyle
The selected point styles (point, cluster) of the geospatial map.- See Also:
-
builder
-