Interface HttpRouteAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HttpRouteAction.Builder,HttpRouteAction>,SdkBuilder<HttpRouteAction.Builder,HttpRouteAction>,SdkPojo
- Enclosing class:
- HttpRouteAction
public static interface HttpRouteAction.Builder extends SdkPojo, CopyableBuilder<HttpRouteAction.Builder,HttpRouteAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpRouteAction.BuilderweightedTargets(Collection<WeightedTarget> weightedTargets)An object that represents the targets that traffic is routed to when a request matches the route.HttpRouteAction.BuilderweightedTargets(Consumer<WeightedTarget.Builder>... weightedTargets)An object that represents the targets that traffic is routed to when a request matches the route.HttpRouteAction.BuilderweightedTargets(WeightedTarget... weightedTargets)An object that represents the targets that traffic is routed to when a request matches 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
-
weightedTargets
HttpRouteAction.Builder weightedTargets(Collection<WeightedTarget> weightedTargets)
An object that represents the targets that traffic is routed to when a request matches the route.
- Parameters:
weightedTargets- An object that represents the targets that traffic is routed to when a request matches the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
weightedTargets
HttpRouteAction.Builder weightedTargets(WeightedTarget... weightedTargets)
An object that represents the targets that traffic is routed to when a request matches the route.
- Parameters:
weightedTargets- An object that represents the targets that traffic is routed to when a request matches the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
weightedTargets
HttpRouteAction.Builder weightedTargets(Consumer<WeightedTarget.Builder>... weightedTargets)
An object that represents the targets that traffic is routed to when a request matches the route.
This is a convenience method that creates an instance of theWeightedTarget.Builderavoiding the need to create one manually viaWeightedTarget.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#weightedTargets(List.) - Parameters:
weightedTargets- a consumer that will call methods onWeightedTarget.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#weightedTargets(java.util.Collection)
-
-