Describe Target Group Attributes
elbv2_describe_target_group_attributes | R Documentation |
Describes the attributes for the specified target group¶
Description¶
Describes the attributes for the specified target group.
For more information, see the following:
-
Target group attributes in the Application Load Balancers Guide
-
Target group attributes in the Network Load Balancers Guide
-
Target group attributes in the Gateway Load Balancers Guide
Usage¶
elbv2_describe_target_group_attributes(TargetGroupArn)
Arguments¶
TargetGroupArn |
[required] The Amazon Resource Name (ARN) of the target group. |
Value¶
A list with the following syntax:
list(
Attributes = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$describe_target_group_attributes(
TargetGroupArn = "string"
)
Examples¶
## Not run:
# This example describes the attributes of the specified target group.
svc$describe_target_group_attributes(
TargetGroupArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:tar..."
)
## End(Not run)