Interface GeospatialPointStyleOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeospatialPointStyleOptions.Builder,GeospatialPointStyleOptions>,SdkBuilder<GeospatialPointStyleOptions.Builder,GeospatialPointStyleOptions>,SdkPojo
- Enclosing class:
- GeospatialPointStyleOptions
@Mutable @NotThreadSafe public static interface GeospatialPointStyleOptions.Builder extends SdkPojo, CopyableBuilder<GeospatialPointStyleOptions.Builder,GeospatialPointStyleOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GeospatialPointStyleOptions.BuilderclusterMarkerConfiguration(Consumer<ClusterMarkerConfiguration.Builder> clusterMarkerConfiguration)The cluster marker configuration of the geospatial point style.GeospatialPointStyleOptions.BuilderclusterMarkerConfiguration(ClusterMarkerConfiguration clusterMarkerConfiguration)The cluster marker configuration of the geospatial point style.default GeospatialPointStyleOptions.BuilderheatmapConfiguration(Consumer<GeospatialHeatmapConfiguration.Builder> heatmapConfiguration)The heatmap configuration of the geospatial point style.GeospatialPointStyleOptions.BuilderheatmapConfiguration(GeospatialHeatmapConfiguration heatmapConfiguration)The heatmap configuration of the geospatial point style.GeospatialPointStyleOptions.BuilderselectedPointStyle(String selectedPointStyle)The selected point styles (point, cluster) of the geospatial map.GeospatialPointStyleOptions.BuilderselectedPointStyle(GeospatialSelectedPointStyle selectedPointStyle)The selected point styles (point, cluster) of the geospatial map.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
selectedPointStyle
GeospatialPointStyleOptions.Builder selectedPointStyle(String selectedPointStyle)
The selected point styles (point, cluster) of the geospatial map.
- Parameters:
selectedPointStyle- The selected point styles (point, cluster) of the geospatial map.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GeospatialSelectedPointStyle,GeospatialSelectedPointStyle
-
selectedPointStyle
GeospatialPointStyleOptions.Builder selectedPointStyle(GeospatialSelectedPointStyle selectedPointStyle)
The selected point styles (point, cluster) of the geospatial map.
- Parameters:
selectedPointStyle- The selected point styles (point, cluster) of the geospatial map.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GeospatialSelectedPointStyle,GeospatialSelectedPointStyle
-
clusterMarkerConfiguration
GeospatialPointStyleOptions.Builder clusterMarkerConfiguration(ClusterMarkerConfiguration clusterMarkerConfiguration)
The cluster marker configuration of the geospatial point style.
- Parameters:
clusterMarkerConfiguration- The cluster marker configuration of the geospatial point style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clusterMarkerConfiguration
default GeospatialPointStyleOptions.Builder clusterMarkerConfiguration(Consumer<ClusterMarkerConfiguration.Builder> clusterMarkerConfiguration)
The cluster marker configuration of the geospatial point style.
This is a convenience method that creates an instance of theClusterMarkerConfiguration.Builderavoiding the need to create one manually viaClusterMarkerConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toclusterMarkerConfiguration(ClusterMarkerConfiguration).- Parameters:
clusterMarkerConfiguration- a consumer that will call methods onClusterMarkerConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
clusterMarkerConfiguration(ClusterMarkerConfiguration)
-
heatmapConfiguration
GeospatialPointStyleOptions.Builder heatmapConfiguration(GeospatialHeatmapConfiguration heatmapConfiguration)
The heatmap configuration of the geospatial point style.
- Parameters:
heatmapConfiguration- The heatmap configuration of the geospatial point style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
heatmapConfiguration
default GeospatialPointStyleOptions.Builder heatmapConfiguration(Consumer<GeospatialHeatmapConfiguration.Builder> heatmapConfiguration)
The heatmap configuration of the geospatial point style.
This is a convenience method that creates an instance of theGeospatialHeatmapConfiguration.Builderavoiding the need to create one manually viaGeospatialHeatmapConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toheatmapConfiguration(GeospatialHeatmapConfiguration).- Parameters:
heatmapConfiguration- a consumer that will call methods onGeospatialHeatmapConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
heatmapConfiguration(GeospatialHeatmapConfiguration)
-
-