List Backup Vaults
| backup_list_backup_vaults | R Documentation |
Returns a list of recovery point storage containers along with information about them¶
Description¶
Returns a list of recovery point storage containers along with information about them.
Usage¶
Arguments¶
ByVaultTypeThis parameter will sort the list of vaults by vault type.
BySharedThis parameter will sort the list of vaults by shared vaults.
NextTokenThe next item following a partial list of returned items. For example, if a request is made to return
MaxResultsnumber of items,NextTokenallows you to return more items in your list starting at the location pointed to by the next token.MaxResultsThe maximum number of items to be returned.
Value¶
A list with the following syntax:
list(
BackupVaultList = list(
list(
BackupVaultName = "string",
BackupVaultArn = "string",
VaultType = "BACKUP_VAULT"|"LOGICALLY_AIR_GAPPED_BACKUP_VAULT",
VaultState = "CREATING"|"AVAILABLE"|"FAILED",
CreationDate = as.POSIXct(
"2015-01-01"
),
EncryptionKeyArn = "string",
CreatorRequestId = "string",
NumberOfRecoveryPoints = 123,
Locked = TRUE|FALSE,
MinRetentionDays = 123,
MaxRetentionDays = 123,
LockDate = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)