public static interface LoadBalancerInfo.Builder extends CopyableBuilder<LoadBalancerInfo.Builder,LoadBalancerInfo>
Modifier and Type | Method and Description |
---|---|
LoadBalancerInfo.Builder |
elbInfoList(Collection<ELBInfo> elbInfoList)
An array containing information about the load balancer to use for load balancing in a deployment.
|
LoadBalancerInfo.Builder |
elbInfoList(Consumer<ELBInfo.Builder>... elbInfoList)
An array containing information about the load balancer to use for load balancing in a deployment.
|
LoadBalancerInfo.Builder |
elbInfoList(ELBInfo... elbInfoList)
An array containing information about the load balancer to use for load balancing in a deployment.
|
LoadBalancerInfo.Builder |
targetGroupInfoList(Collection<TargetGroupInfo> targetGroupInfoList)
An array containing information about the target group to use for load balancing in a deployment.
|
LoadBalancerInfo.Builder |
targetGroupInfoList(Consumer<TargetGroupInfo.Builder>... targetGroupInfoList)
An array containing information about the target group to use for load balancing in a deployment.
|
LoadBalancerInfo.Builder |
targetGroupInfoList(TargetGroupInfo... targetGroupInfoList)
An array containing information about the target group to use for load balancing in a deployment.
|
copy
applyMutation, build
LoadBalancerInfo.Builder elbInfoList(Collection<ELBInfo> elbInfoList)
An array containing information about the load balancer to use for load balancing in a deployment. In Elastic Load Balancing, load balancers are used with Classic Load Balancers.
elbInfoList
- An array containing information about the load balancer to use for load balancing in a deployment. In
Elastic Load Balancing, load balancers are used with Classic Load Balancers.LoadBalancerInfo.Builder elbInfoList(ELBInfo... elbInfoList)
An array containing information about the load balancer to use for load balancing in a deployment. In Elastic Load Balancing, load balancers are used with Classic Load Balancers.
elbInfoList
- An array containing information about the load balancer to use for load balancing in a deployment. In
Elastic Load Balancing, load balancers are used with Classic Load Balancers.LoadBalancerInfo.Builder elbInfoList(Consumer<ELBInfo.Builder>... elbInfoList)
An array containing information about the load balancer to use for load balancing in a deployment. In Elastic Load Balancing, load balancers are used with Classic Load Balancers.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #elbInfoList(List)
.elbInfoList
- a consumer that will call methods on List.Builder
#elbInfoList(List)
LoadBalancerInfo.Builder targetGroupInfoList(Collection<TargetGroupInfo> targetGroupInfoList)
An array containing information about the target group to use for load balancing in a deployment. In Elastic Load Balancing, target groups are used with Application Load Balancers.
targetGroupInfoList
- An array containing information about the target group to use for load balancing in a deployment. In
Elastic Load Balancing, target groups are used with Application Load Balancers.LoadBalancerInfo.Builder targetGroupInfoList(TargetGroupInfo... targetGroupInfoList)
An array containing information about the target group to use for load balancing in a deployment. In Elastic Load Balancing, target groups are used with Application Load Balancers.
targetGroupInfoList
- An array containing information about the target group to use for load balancing in a deployment. In
Elastic Load Balancing, target groups are used with Application Load Balancers.LoadBalancerInfo.Builder targetGroupInfoList(Consumer<TargetGroupInfo.Builder>... targetGroupInfoList)
An array containing information about the target group to use for load balancing in a deployment. In Elastic Load Balancing, target groups are used with Application Load Balancers.
This is a convenience that creates an instance of theList.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #targetGroupInfoList(List)
.targetGroupInfoList
- a consumer that will call methods on List.Builder
#targetGroupInfoList(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.