Interface Corridor.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Corridor.Builder,Corridor>,SdkBuilder<Corridor.Builder,Corridor>,SdkPojo
- Enclosing class:
- Corridor
public static interface Corridor.Builder extends SdkPojo, CopyableBuilder<Corridor.Builder,Corridor>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Corridor.BuilderlineString(Collection<? extends Collection<Double>> lineString)An ordered list of positions used to plot a route on a map.Corridor.BuilderlineString(Collection<Double>... lineString)An ordered list of positions used to plot a route on a map.Corridor.Builderradius(Integer radius)Radius that defines the width of the corridor.-
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
-
lineString
Corridor.Builder lineString(Collection<? extends Collection<Double>> lineString)
An ordered list of positions used to plot a route on a map.
LineString and Polyline are mutually exclusive properties.
- Parameters:
lineString- An ordered list of positions used to plot a route on a map.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineString
Corridor.Builder lineString(Collection<Double>... lineString)
An ordered list of positions used to plot a route on a map.
LineString and Polyline are mutually exclusive properties.
- Parameters:
lineString- An ordered list of positions used to plot a route on a map.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radius
Corridor.Builder radius(Integer radius)
Radius that defines the width of the corridor.
- Parameters:
radius- Radius that defines the width of the corridor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-