Get Restore Testing Selection
backup_get_restore_testing_selection | R Documentation |
Returns RestoreTestingSelection, which displays resources and elements of the restore testing plan¶
Description¶
Returns RestoreTestingSelection, which displays resources and elements of the restore testing plan.
Usage¶
Arguments¶
RestoreTestingPlanName
[required] Required unique name of the restore testing plan.
RestoreTestingSelectionName
[required] Required unique name of the restore testing selection.
Value¶
A list with the following syntax:
list(
RestoreTestingSelection = list(
CreationTime = as.POSIXct(
"2015-01-01"
),
CreatorRequestId = "string",
IamRoleArn = "string",
ProtectedResourceArns = list(
"string"
),
ProtectedResourceConditions = list(
StringEquals = list(
list(
Key = "string",
Value = "string"
)
),
StringNotEquals = list(
list(
Key = "string",
Value = "string"
)
)
),
ProtectedResourceType = "string",
RestoreMetadataOverrides = list(
"string"
),
RestoreTestingPlanName = "string",
RestoreTestingSelectionName = "string",
ValidationWindowHours = 123
)
)