paws.networking (version 0.1.6)

elbv2_modify_target_group_attributes: Modifies the specified attributes of the specified target group

Description

Modifies the specified attributes of the specified target group.

Usage

elbv2_modify_target_group_attributes(TargetGroupArn, Attributes)

Arguments

TargetGroupArn

[required] The Amazon Resource Name (ARN) of the target group.

Attributes

[required] The attributes.

Request syntax

svc$modify_target_group_attributes(
  TargetGroupArn = "string",
  Attributes = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Examples

Run this code
# NOT RUN {
# This example sets the deregistration delay timeout to the specified
# value for the specified target group.
# }
# NOT RUN {
svc$modify_target_group_attributes(
  Attributes = list(
    list(
      Key = "deregistration_delay.timeout_seconds",
      Value = "600"
    )
  ),
  TargetGroupArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targe..."
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace