Class: Aws::ElasticLoadBalancingV2::Types::ModifyTargetGroupAttributesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::ModifyTargetGroupAttributesInput
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass ModifyTargetGroupAttributesInput data as a hash:
{
target_group_arn: "TargetGroupArn", # required
attributes: [ # required
{
key: "TargetGroupAttributeKey",
value: "TargetGroupAttributeValue",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::TargetGroupAttribute>
The attributes.
-
#target_group_arn ⇒ String
The Amazon Resource Name (ARN) of the target group.
Instance Attribute Details
#attributes ⇒ Array<Types::TargetGroupAttribute>
The attributes.
2921 2922 2923 2924 2925 2926 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2921 class ModifyTargetGroupAttributesInput < Struct.new( :target_group_arn, :attributes) SENSITIVE = [] include Aws::Structure end |
#target_group_arn ⇒ String
The Amazon Resource Name (ARN) of the target group.
2921 2922 2923 2924 2925 2926 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2921 class ModifyTargetGroupAttributesInput < Struct.new( :target_group_arn, :attributes) SENSITIVE = [] include Aws::Structure end |