Describe Protected Resource
backup_describe_protected_resource | R Documentation |
Returns information about a saved resource, including the last time it was backed up, its Amazon Resource Name (ARN), and the Amazon Web Services service type of the saved resource¶
Description¶
Returns information about a saved resource, including the last time it was backed up, its Amazon Resource Name (ARN), and the Amazon Web Services service type of the saved resource.
Usage¶
Arguments¶
ResourceArn
[required] An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
Value¶
A list with the following syntax:
list(
ResourceArn = "string",
ResourceType = "string",
LastBackupTime = as.POSIXct(
"2015-01-01"
),
ResourceName = "string",
LastBackupVaultArn = "string",
LastRecoveryPointArn = "string",
LatestRestoreExecutionTimeMinutes = 123,
LatestRestoreJobCreationDate = as.POSIXct(
"2015-01-01"
),
LatestRestoreRecoveryPointCreationDate = as.POSIXct(
"2015-01-01"
)
)