Interface RegisterInstancesWithLoadBalancerResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<RegisterInstancesWithLoadBalancerResponse.Builder,RegisterInstancesWithLoadBalancerResponse>
,ElasticLoadBalancingResponse.Builder
,SdkBuilder<RegisterInstancesWithLoadBalancerResponse.Builder,RegisterInstancesWithLoadBalancerResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- RegisterInstancesWithLoadBalancerResponse
public static interface RegisterInstancesWithLoadBalancerResponse.Builder extends ElasticLoadBalancingResponse.Builder, SdkPojo, CopyableBuilder<RegisterInstancesWithLoadBalancerResponse.Builder,RegisterInstancesWithLoadBalancerResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegisterInstancesWithLoadBalancerResponse.Builder
instances(Collection<Instance> instances)
The updated list of instances for the load balancer.RegisterInstancesWithLoadBalancerResponse.Builder
instances(Consumer<Instance.Builder>... instances)
The updated list of instances for the load balancer.RegisterInstancesWithLoadBalancerResponse.Builder
instances(Instance... instances)
The updated list of instances for the load balancer.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticloadbalancing.model.ElasticLoadBalancingResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
instances
RegisterInstancesWithLoadBalancerResponse.Builder instances(Collection<Instance> instances)
The updated list of instances for the load balancer.
- Parameters:
instances
- The updated list of instances for the load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instances
RegisterInstancesWithLoadBalancerResponse.Builder instances(Instance... instances)
The updated list of instances for the load balancer.
- Parameters:
instances
- The updated list of instances for the load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instances
RegisterInstancesWithLoadBalancerResponse.Builder instances(Consumer<Instance.Builder>... instances)
The updated list of instances for the load balancer.
This is a convenience method that creates an instance of theInstance.Builder
avoiding the need to create one manually viaInstance.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#instances(List
.) - Parameters:
instances
- a consumer that will call methods onInstance.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#instances(java.util.Collection
)
-
-