interface GeospatialPointStyleOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.GeospatialPointStyleOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.GeospatialPointStyleOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.GeospatialPointStyleOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » GeospatialPointStyleOptionsProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const geospatialPointStyleOptionsProperty: quicksight.CfnDashboard.GeospatialPointStyleOptionsProperty = {
clusterMarkerConfiguration: {
clusterMarker: {
simpleClusterMarker: {
color: 'color',
},
},
},
selectedPointStyle: 'selectedPointStyle',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | IResolvable | Cluster | The cluster marker configuration of the geospatial point style. |
| selected | string | The selected point styles (point, cluster) of the geospatial map. |
clusterMarkerConfiguration?
Type:
IResolvable | Cluster
(optional)
The cluster marker configuration of the geospatial point style.
selectedPointStyle?
Type:
string
(optional)
The selected point styles (point, cluster) of the geospatial map.

.NET
Java
Python
TypeScript