Get Recovery Point Index Details
backup_get_recovery_point_index_details | R Documentation |
This operation returns the metadata and details specific to the backup index associated with the specified recovery point¶
Description¶
This operation returns the metadata and details specific to the backup index associated with the specified recovery point.
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 Region where they are created.
Accepted characters include lowercase letters, numbers, and hyphens.
RecoveryPointArn
[required] An ARN that uniquely identifies a recovery point; for example,
arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45
.
Value¶
A list with the following syntax:
list(
RecoveryPointArn = "string",
BackupVaultArn = "string",
SourceResourceArn = "string",
IndexCreationDate = as.POSIXct(
"2015-01-01"
),
IndexDeletionDate = as.POSIXct(
"2015-01-01"
),
IndexCompletionDate = as.POSIXct(
"2015-01-01"
),
IndexStatus = "PENDING"|"ACTIVE"|"FAILED"|"DELETING",
IndexStatusMessage = "string",
TotalItemsIndexed = 123
)