Add Tags To Vault
glacier_add_tags_to_vault | R Documentation |
This operation adds the specified tags to a vault¶
Description¶
This operation adds the specified tags to a vault. Each tag is composed
of a key and a value. Each vault can have up to 10 tags. If your request
would cause the tag limit for the vault to be exceeded, the operation
throws the LimitExceededException
error. If a tag already exists on
the vault under a specified key, the existing key value will be
overwritten. For more information about tags, see Tagging Amazon S3
Glacier
Resources.
Usage¶
glacier_add_tags_to_vault(accountId, vaultName, Tags)
Arguments¶
accountId |
[required] The |
vaultName |
[required] The name of the vault. |
Tags |
The tags to add to the vault. Each tag is composed of a key and a value. The value can be an empty string. |
Value¶
An empty list.
Request syntax¶
svc$add_tags_to_vault(
accountId = "string",
vaultName = "string",
Tags = list(
"string"
)
)
Examples¶
## Not run:
# The example adds two tags to a my-vault.
svc$add_tags_to_vault(
Tags = list(
examplekey1 = "examplevalue1",
examplekey2 = "examplevalue2"
),
accountId = "-",
vaultName = "my-vault"
)
## End(Not run)