Class: Aws::ElasticLoadBalancingV2::Types::TargetGroupTuple
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::TargetGroupTuple
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass TargetGroupTuple data as a hash:
{
target_group_arn: "TargetGroupArn",
weight: 1,
}
Information about how traffic will be distributed between multiple target groups in a forward rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_group_arn ⇒ String
The Amazon Resource Name (ARN) of the target group.
-
#weight ⇒ Integer
The weight.
Instance Attribute Details
#target_group_arn ⇒ String
The Amazon Resource Name (ARN) of the target group.
4262 4263 4264 4265 4266 4267 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4262 class TargetGroupTuple < Struct.new( :target_group_arn, :weight) SENSITIVE = [] include Aws::Structure end |
#weight ⇒ Integer
The weight. The range is 0 to 999.
4262 4263 4264 4265 4266 4267 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4262 class TargetGroupTuple < Struct.new( :target_group_arn, :weight) SENSITIVE = [] include Aws::Structure end |