Get Restore Testing Plan
backup_get_restore_testing_plan | R Documentation |
Returns RestoreTestingPlan details for the specified RestoreTestingPlanName¶
Description¶
Returns RestoreTestingPlan
details for the specified
RestoreTestingPlanName
. The details are the body of a restore testing
plan in JSON format, in addition to plan metadata.
Usage¶
Arguments¶
RestoreTestingPlanName
[required] Required unique name of the restore testing plan.
Value¶
A list with the following syntax:
list(
RestoreTestingPlan = list(
CreationTime = as.POSIXct(
"2015-01-01"
),
CreatorRequestId = "string",
LastExecutionTime = as.POSIXct(
"2015-01-01"
),
LastUpdateTime = as.POSIXct(
"2015-01-01"
),
RecoveryPointSelection = list(
Algorithm = "LATEST_WITHIN_WINDOW"|"RANDOM_WITHIN_WINDOW",
ExcludeVaults = list(
"string"
),
IncludeVaults = list(
"string"
),
RecoveryPointTypes = list(
"CONTINUOUS"|"SNAPSHOT"
),
SelectionWindowDays = 123
),
RestoreTestingPlanArn = "string",
RestoreTestingPlanName = "string",
ScheduleExpression = "string",
ScheduleExpressionTimezone = "string",
StartWindowHours = 123
)
)