Interface RoutePassThroughWaypoint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RoutePassThroughWaypoint.Builder,RoutePassThroughWaypoint>,SdkBuilder<RoutePassThroughWaypoint.Builder,RoutePassThroughWaypoint>,SdkPojo
- Enclosing class:
- RoutePassThroughWaypoint
public static interface RoutePassThroughWaypoint.Builder extends SdkPojo, CopyableBuilder<RoutePassThroughWaypoint.Builder,RoutePassThroughWaypoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RoutePassThroughWaypoint.BuildergeometryOffset(Integer geometryOffset)Offset in the leg geometry corresponding to the start of this step.default RoutePassThroughWaypoint.Builderplace(Consumer<RoutePassThroughPlace.Builder> place)The place details.RoutePassThroughWaypoint.Builderplace(RoutePassThroughPlace place)The place details.-
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
-
geometryOffset
RoutePassThroughWaypoint.Builder geometryOffset(Integer geometryOffset)
Offset in the leg geometry corresponding to the start of this step.
- Parameters:
geometryOffset- Offset in the leg geometry corresponding to the start of this step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
place
RoutePassThroughWaypoint.Builder place(RoutePassThroughPlace place)
The place details.
- Parameters:
place- The place details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
place
default RoutePassThroughWaypoint.Builder place(Consumer<RoutePassThroughPlace.Builder> place)
The place details.
This is a convenience method that creates an instance of theRoutePassThroughPlace.Builderavoiding the need to create one manually viaRoutePassThroughPlace.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toplace(RoutePassThroughPlace).- Parameters:
place- a consumer that will call methods onRoutePassThroughPlace.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
place(RoutePassThroughPlace)
-
-