Class CfnDashboard.ClusterMarkerConfigurationProperty
The cluster marker configuration of the geospatial map selected point style.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.ClusterMarkerConfigurationProperty : CfnDashboard.IClusterMarkerConfigurationProperty
Syntax (vb)
Public Class CfnDashboard.ClusterMarkerConfigurationProperty Implements CfnDashboard.IClusterMarkerConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var clusterMarkerConfigurationProperty = new ClusterMarkerConfigurationProperty {
ClusterMarker = new ClusterMarkerProperty {
SimpleClusterMarker = new SimpleClusterMarkerProperty {
Color = "color"
}
}
};
Synopsis
Constructors
ClusterMarkerConfigurationProperty() | The cluster marker configuration of the geospatial map selected point style. |
Properties
ClusterMarker | The cluster marker that is a part of the cluster marker configuration. |
Constructors
ClusterMarkerConfigurationProperty()
The cluster marker configuration of the geospatial map selected point style.
public ClusterMarkerConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var clusterMarkerConfigurationProperty = new ClusterMarkerConfigurationProperty {
ClusterMarker = new ClusterMarkerProperty {
SimpleClusterMarker = new SimpleClusterMarkerProperty {
Color = "color"
}
}
};
Properties
ClusterMarker
The cluster marker that is a part of the cluster marker configuration.
public object? ClusterMarker { get; set; }