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
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.
3982 3983 3984 3985 3986 3987 3988 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3982 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.
3982 3983 3984 3985 3986 3987 3988 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3982 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.
3982 3983 3984 3985 3986 3987 3988 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3982 class LoadBalancerInfo < Struct.new( :elb_info_list, :target_group_info_list, :target_group_pair_info_list) SENSITIVE = [] include Aws::Structure end |