Interface GeospatialMapState.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<GeospatialMapState.Builder,GeospatialMapState>
,SdkBuilder<GeospatialMapState.Builder,GeospatialMapState>
,SdkPojo
- Enclosing class:
- GeospatialMapState
public static interface GeospatialMapState.Builder extends SdkPojo, CopyableBuilder<GeospatialMapState.Builder,GeospatialMapState>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GeospatialMapState.Builder
bounds(Consumer<GeospatialCoordinateBounds.Builder> bounds)
Sets the value of the Bounds property for this object.GeospatialMapState.Builder
bounds(GeospatialCoordinateBounds bounds)
Sets the value of the Bounds property for this object.GeospatialMapState.Builder
mapNavigation(String mapNavigation)
Enables or disables map navigation for a map.GeospatialMapState.Builder
mapNavigation(GeospatialMapNavigation mapNavigation)
Enables or disables map navigation for a 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
-
bounds
GeospatialMapState.Builder bounds(GeospatialCoordinateBounds bounds)
Sets the value of the Bounds property for this object.- Parameters:
bounds
- The new value for the Bounds property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bounds
default GeospatialMapState.Builder bounds(Consumer<GeospatialCoordinateBounds.Builder> bounds)
Sets the value of the Bounds property for this object. This is a convenience method that creates an instance of theGeospatialCoordinateBounds.Builder
avoiding the need to create one manually viaGeospatialCoordinateBounds.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tobounds(GeospatialCoordinateBounds)
.- Parameters:
bounds
- a consumer that will call methods onGeospatialCoordinateBounds.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
bounds(GeospatialCoordinateBounds)
-
mapNavigation
GeospatialMapState.Builder mapNavigation(String mapNavigation)
Enables or disables map navigation for a map.
- Parameters:
mapNavigation
- Enables or disables map navigation for a map.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GeospatialMapNavigation
,GeospatialMapNavigation
-
mapNavigation
GeospatialMapState.Builder mapNavigation(GeospatialMapNavigation mapNavigation)
Enables or disables map navigation for a map.
- Parameters:
mapNavigation
- Enables or disables map navigation for a map.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GeospatialMapNavigation
,GeospatialMapNavigation
-
-