Interface Route.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Route.Builder,Route>,SdkBuilder<Route.Builder,Route>,SdkPojo
- Enclosing class:
- Route
public static interface Route.Builder extends SdkPojo, CopyableBuilder<Route.Builder,Route>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Route.Builderdestination(String destination)The destination of the route.Route.BuilderdestinationType(String destinationType)The type of destination for the route.Route.BuilderdestinationType(DestinationType destinationType)The type of destination for the route.Route.Buildertarget(String target)The route's target.Route.BuildertargetType(String targetType)The type of target for the route.Route.BuildertargetType(TargetType targetType)The type of target for the route.-
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
-
destinationType
Route.Builder destinationType(String destinationType)
The type of destination for the route.
- Parameters:
destinationType- The type of destination for the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DestinationType,DestinationType
-
destinationType
Route.Builder destinationType(DestinationType destinationType)
The type of destination for the route.
- Parameters:
destinationType- The type of destination for the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DestinationType,DestinationType
-
targetType
Route.Builder targetType(String targetType)
The type of target for the route.
- Parameters:
targetType- The type of target for the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TargetType,TargetType
-
targetType
Route.Builder targetType(TargetType targetType)
The type of target for the route.
- Parameters:
targetType- The type of target for the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TargetType,TargetType
-
destination
Route.Builder destination(String destination)
The destination of the route.
- Parameters:
destination- The destination of the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
Route.Builder target(String target)
The route's target.
- Parameters:
target- The route's target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-