Class: Aws::CodeDeploy::Types::LoadBalancerInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::LoadBalancerInfo
- Defined in:
- gems/aws-sdk-codedeploy/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.
4652 4653 4654 4655 4656 4657 4658 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4652 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.
4652 4653 4654 4655 4656 4657 4658 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4652 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.
4652 4653 4654 4655 4656 4657 4658 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4652 class LoadBalancerInfo < Struct.new( :elb_info_list, :target_group_info_list, :target_group_pair_info_list) SENSITIVE = [] include Aws::Structure end |