List Tags For Vault
glacier_list_tags_for_vault | R Documentation |
This operation lists all the tags attached to a vault¶
Description¶
This operation lists all the tags attached to a vault. The operation returns an empty map if there are no tags. For more information about tags, see Tagging Amazon S3 Glacier Resources.
Usage¶
glacier_list_tags_for_vault(accountId, vaultName)
Arguments¶
accountId |
[required] The |
vaultName |
[required] The name of the vault. |
Value¶
A list with the following syntax:
list(
Tags = list(
"string"
)
)
Request syntax¶
svc$list_tags_for_vault(
accountId = "string",
vaultName = "string"
)
Examples¶
## Not run:
# The example lists all the tags attached to the vault examplevault.
svc$list_tags_for_vault(
accountId = "-",
vaultName = "examplevault"
)
## End(Not run)