Class: Aws::CodeDeploy::Types::LoadBalancerInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::LoadBalancerInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
When making an API call, you may pass LoadBalancerInfo data as a hash:
{
elb_info_list: [
{
name: "ELBName",
},
],
target_group_info_list: [
{
name: "TargetGroupName",
},
],
target_group_pair_info_list: [
{
target_groups: [
{
name: "TargetGroupName",
},
],
prod_traffic_route: {
listener_arns: ["ListenerArn"],
},
test_traffic_route: {
listener_arns: ["ListenerArn"],
},
},
],
}
Information about the Elastic Load Balancing load balancer or target group used in a deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#elb_info_list ⇒ Array<Types::ELBInfo>
An array that contains information about the load balancer to use for load balancing in a deployment.
-
#target_group_info_list ⇒ Array<Types::TargetGroupInfo>
An array that contains information about the target group 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 balancer to use for load balancing in a deployment. In Elastic Load Balancing, load balancers are used with Classic Load Balancers.
<note markdown=“1”> Adding more than one load balancer to the array is not supported.
</note>
4621 4622 4623 4624 4625 4626 4627 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4621 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 group to use for load balancing in a deployment. In Elastic Load Balancing, target groups are used with Application Load Balancers.
<note markdown=“1”> Adding more than one target group to the array is not supported.
</note>
4621 4622 4623 4624 4625 4626 4627 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4621 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.
4621 4622 4623 4624 4625 4626 4627 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4621 class LoadBalancerInfo < Struct.new( :elb_info_list, :target_group_info_list, :target_group_pair_info_list) SENSITIVE = [] include Aws::Structure end |