aws-cdk-lib.aws_quicksight.CfnTemplate.GeospatialPointStyleOptionsProperty

interface GeospatialPointStyleOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.GeospatialPointStyleOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_GeospatialPointStyleOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.GeospatialPointStyleOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.GeospatialPointStyleOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const geospatialPointStyleOptionsProperty: quicksight.CfnTemplate.GeospatialPointStyleOptionsProperty = {
  clusterMarkerConfiguration: {
    clusterMarker: {
      simpleClusterMarker: {
        color: 'color',
      },
    },
  },
  heatmapConfiguration: {
    heatmapColor: {
      colors: [{
        color: 'color',
      }],
    },
  },
  selectedPointStyle: 'selectedPointStyle',
};

Properties

NameTypeDescription
clusterMarkerConfiguration?IResolvable | ClusterMarkerConfigurationPropertyThe cluster marker configuration of the geospatial point style.
heatmapConfiguration?IResolvable | GeospatialHeatmapConfigurationPropertyThe heatmap configuration of the geospatial point style.
selectedPointStyle?stringThe selected point styles (point, cluster) of the geospatial map.

clusterMarkerConfiguration?

Type: IResolvable | ClusterMarkerConfigurationProperty (optional)

The cluster marker configuration of the geospatial point style.


heatmapConfiguration?

Type: IResolvable | GeospatialHeatmapConfigurationProperty (optional)

The heatmap configuration of the geospatial point style.


selectedPointStyle?

Type: string (optional)

The selected point styles (point, cluster) of the geospatial map.