Interface CfnTemplate.GeospatialHeatmapConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.GeospatialHeatmapConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.GeospatialHeatmapConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The heatmap configuration of the geospatial point style.

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.*;
 GeospatialHeatmapConfigurationProperty geospatialHeatmapConfigurationProperty = GeospatialHeatmapConfigurationProperty.builder()
         .heatmapColor(GeospatialHeatmapColorScaleProperty.builder()
                 .colors(List.of(GeospatialHeatmapDataColorProperty.builder()
                         .color("color")
                         .build()))
                 .build())
         .build();
 

See Also: