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