Modify Target Group Attributes
elbv2_modify_target_group_attributes | R Documentation |
Modifies the specified attributes of the specified target group¶
Description¶
Modifies the specified attributes of the specified target group.
Usage¶
Arguments¶
TargetGroupArn
[required] The Amazon Resource Name (ARN) of the target group.
Attributes
[required] The attributes.
Value¶
A list with the following syntax:
Request syntax¶
svc$modify_target_group_attributes(
TargetGroupArn = "string",
Attributes = list(
list(
Key = "string",
Value = "string"
)
)
)
Examples¶
## Not run:
# This example sets the deregistration delay timeout to the specified
# value for the specified target group.
svc$modify_target_group_attributes(
Attributes = list(
list(
Key = "deregistration_delay.timeout_seconds",
Value = "600"
)
),
TargetGroupArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:tar..."
)
## End(Not run)