Untag Resource
memorydb_untag_resource | R Documentation |
Use this operation to remove tags on a resource¶
Description¶
Use this operation to remove tags on a resource.
Usage¶
memorydb_untag_resource(ResourceArn, TagKeys)
Arguments¶
ResourceArn |
[required] The Amazon Resource Name (ARN) of the resource to which the tags are to be removed. |
TagKeys |
[required] The list of keys of the tags that are to be removed. |
Value¶
A list with the following syntax:
list(
TagList = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$untag_resource(
ResourceArn = "string",
TagKeys = list(
"string"
)
)