Tag Resource
dax_tag_resource | R Documentation |
Associates a set of tags with a DAX resource¶
Description¶
Associates a set of tags with a DAX resource. You can call
tag_resource
up to 5 times per second, per account.
Usage¶
dax_tag_resource(ResourceName, Tags)
Arguments¶
ResourceName |
[required] The name of the DAX resource to which tags should be added. |
Tags |
[required] The tags to be assigned to the DAX resource. |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$tag_resource(
ResourceName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)