Tag Resource
appfabric_tag_resource | R Documentation |
Assigns one or more tags (key-value pairs) to the specified resource¶
Description¶
Assigns one or more tags (key-value pairs) to the specified resource.
Usage¶
appfabric_tag_resource(resourceArn, tags)
Arguments¶
resourceArn |
[required] The Amazon Resource Name (ARN) of the resource that you want to tag. |
tags |
[required] A map of the key-value pairs of the tag or tags to assign to the resource. |
Value¶
An empty list.
Request syntax¶
svc$tag_resource(
resourceArn = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)