Interface GeospatialPointLayer.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeospatialPointLayer.Builder,GeospatialPointLayer>,SdkBuilder<GeospatialPointLayer.Builder,GeospatialPointLayer>,SdkPojo
- Enclosing class:
- GeospatialPointLayer
@Mutable @NotThreadSafe public static interface GeospatialPointLayer.Builder extends SdkPojo, CopyableBuilder<GeospatialPointLayer.Builder,GeospatialPointLayer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GeospatialPointLayer.Builderstyle(Consumer<GeospatialPointStyle.Builder> style)The visualization style for a point layer.GeospatialPointLayer.Builderstyle(GeospatialPointStyle style)The visualization style for a point layer.-
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
-
style
GeospatialPointLayer.Builder style(GeospatialPointStyle style)
The visualization style for a point layer.
- Parameters:
style- The visualization style for a point layer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
style
default GeospatialPointLayer.Builder style(Consumer<GeospatialPointStyle.Builder> style)
The visualization style for a point layer.
This is a convenience method that creates an instance of theGeospatialPointStyle.Builderavoiding the need to create one manually viaGeospatialPointStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostyle(GeospatialPointStyle).- Parameters:
style- a consumer that will call methods onGeospatialPointStyle.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
style(GeospatialPointStyle)
-
-