Interface GeospatialHeatmapColorScale.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeospatialHeatmapColorScale.Builder,GeospatialHeatmapColorScale>,SdkBuilder<GeospatialHeatmapColorScale.Builder,GeospatialHeatmapColorScale>,SdkPojo
- Enclosing class:
- GeospatialHeatmapColorScale
public static interface GeospatialHeatmapColorScale.Builder extends SdkPojo, CopyableBuilder<GeospatialHeatmapColorScale.Builder,GeospatialHeatmapColorScale>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeospatialHeatmapColorScale.Buildercolors(Collection<GeospatialHeatmapDataColor> colors)The list of colors to be used in heatmap point style.GeospatialHeatmapColorScale.Buildercolors(Consumer<GeospatialHeatmapDataColor.Builder>... colors)The list of colors to be used in heatmap point style.GeospatialHeatmapColorScale.Buildercolors(GeospatialHeatmapDataColor... colors)The list of colors to be used in heatmap point style.-
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, sdkFields
-
-
-
-
Method Detail
-
colors
GeospatialHeatmapColorScale.Builder colors(Collection<GeospatialHeatmapDataColor> colors)
The list of colors to be used in heatmap point style.
- Parameters:
colors- The list of colors to be used in heatmap point style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colors
GeospatialHeatmapColorScale.Builder colors(GeospatialHeatmapDataColor... colors)
The list of colors to be used in heatmap point style.
- Parameters:
colors- The list of colors to be used in heatmap point style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colors
GeospatialHeatmapColorScale.Builder colors(Consumer<GeospatialHeatmapDataColor.Builder>... colors)
The list of colors to be used in heatmap point style.
This is a convenience method that creates an instance of theGeospatialHeatmapDataColor.Builderavoiding the need to create one manually viaGeospatialHeatmapDataColor.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#colors(List.) - Parameters:
colors- a consumer that will call methods onGeospatialHeatmapDataColor.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#colors(java.util.Collection)
-
-