Create Backup Vault
backup_create_backup_vault | R Documentation |
Creates a logical container where backups are stored¶
Description¶
Creates a logical container where backups are stored. A
create_backup_vault
request includes a name, optionally one or more
resource tags, an encryption key, and a request ID.
Do not include sensitive data, such as passport numbers, in the name of a backup vault.
Usage¶
Arguments¶
BackupVaultName
[required] The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of letters, numbers, and hyphens.
BackupVaultTags
The tags to assign to the backup vault.
EncryptionKeyArn
The server-side encryption key that is used to protect your backups; for example,
arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
.CreatorRequestId
A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice. This parameter is optional.
If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.
Value¶
A list with the following syntax:
list(
BackupVaultName = "string",
BackupVaultArn = "string",
CreationDate = as.POSIXct(
"2015-01-01"
)
)