Update Restore Testing Plan
backup_update_restore_testing_plan | R Documentation |
This request will send changes to your specified restore testing plan¶
Description¶
This request will send changes to your specified restore testing plan.
RestoreTestingPlanName
cannot be updated after it is created.
RecoveryPointSelection
can contain:
-
Algorithm
-
ExcludeVaults
-
IncludeVaults
-
RecoveryPointTypes
-
SelectionWindowDays
Usage¶
Arguments¶
RestoreTestingPlan
[required] Specifies the body of a restore testing plan.
RestoreTestingPlanName
[required] The name of the restore testing plan name.
Value¶
A list with the following syntax:
list(
CreationTime = as.POSIXct(
"2015-01-01"
),
RestoreTestingPlanArn = "string",
RestoreTestingPlanName = "string",
UpdateTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_restore_testing_plan(
RestoreTestingPlan = list(
RecoveryPointSelection = list(
Algorithm = "LATEST_WITHIN_WINDOW"|"RANDOM_WITHIN_WINDOW",
ExcludeVaults = list(
"string"
),
IncludeVaults = list(
"string"
),
RecoveryPointTypes = list(
"CONTINUOUS"|"SNAPSHOT"
),
SelectionWindowDays = 123
),
ScheduleExpression = "string",
ScheduleExpressionTimezone = "string",
StartWindowHours = 123
),
RestoreTestingPlanName = "string"
)