Tag Resource
directconnect_tag_resource | R Documentation |
Adds the specified tags to the specified Direct Connect resource¶
Description¶
Adds the specified tags to the specified Direct Connect resource. Each resource can have a maximum of 50 tags.
Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
Usage¶
directconnect_tag_resource(resourceArn, tags)
Arguments¶
resourceArn |
[required] The Amazon Resource Name (ARN) of the resource. |
tags |
[required] The tags to add. |
Value¶
An empty list.
Request syntax¶
svc$tag_resource(
resourceArn = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)