Class: Aws::CodeDeploy::Types::LoadBalancerInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::LoadBalancerInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about the Elastic Load Balancing load balancer or target group used in a deployment.
You can use load balancers and target groups in combination. For example, if you have two Classic Load Balancers, and five target groups tied to an Application Load Balancer, you can specify the two Classic Load Balancers in ‘elbInfoList`, and the five target groups in `targetGroupInfoList`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#elb_info_list ⇒ Array<Types::ELBInfo>
An array that contains information about the load balancers to use for load balancing in a deployment.
-
#target_group_info_list ⇒ Array<Types::TargetGroupInfo>
An array that contains information about the target groups to use for load balancing in a deployment.
-
#target_group_pair_info_list ⇒ Array<Types::TargetGroupPairInfo>
The target group pair information.
Instance Attribute Details
#elb_info_list ⇒ Array<Types::ELBInfo>
An array that contains information about the load balancers to use for load balancing in a deployment. If you’re using Classic Load Balancers, specify those load balancers in this array.
<note markdown=“1”> You can add up to 10 load balancers to the array.
</note>
<note markdown=“1”> If you’re using Application Load Balancers or Network Load Balancers, use the ‘targetGroupInfoList` array instead of this one.
</note>
4084 4085 4086 4087 4088 4089 4090 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4084 class LoadBalancerInfo < Struct.new( :elb_info_list, :target_group_info_list, :target_group_pair_info_list) SENSITIVE = [] include Aws::Structure end |
#target_group_info_list ⇒ Array<Types::TargetGroupInfo>
An array that contains information about the target groups to use for load balancing in a deployment. If you’re using Application Load Balancers and Network Load Balancers, specify their associated target groups in this array.
<note markdown=“1”> You can add up to 10 target groups to the array.
</note>
<note markdown=“1”> If you’re using Classic Load Balancers, use the ‘elbInfoList` array instead of this one.
</note>
4084 4085 4086 4087 4088 4089 4090 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4084 class LoadBalancerInfo < Struct.new( :elb_info_list, :target_group_info_list, :target_group_pair_info_list) SENSITIVE = [] include Aws::Structure end |
#target_group_pair_info_list ⇒ Array<Types::TargetGroupPairInfo>
The target group pair information. This is an array of ‘TargeGroupPairInfo` objects with a maximum size of one.
4084 4085 4086 4087 4088 4089 4090 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4084 class LoadBalancerInfo < Struct.new( :elb_info_list, :target_group_info_list, :target_group_pair_info_list) SENSITIVE = [] include Aws::Structure end |