List Suggested Resiliency Policies
| resiliencehub_list_suggested_resiliency_policies | R Documentation |
Lists the suggested resiliency policies for the Resilience Hub applications¶
Description¶
Lists the suggested resiliency policies for the Resilience Hub applications.
Usage¶
Arguments¶
maxResultsMaximum number of results to include in the response. If more results exist than the specified
MaxResultsvalue, a token is included in the response so that the remaining results can be retrieved.nextTokenNull, or the token from a previous call to get the next set of results.
Value¶
A list with the following syntax:
list(
nextToken = "string",
resiliencyPolicies = list(
list(
creationTime = as.POSIXct(
"2015-01-01"
),
dataLocationConstraint = "AnyLocation"|"SameContinent"|"SameCountry",
estimatedCostTier = "L1"|"L2"|"L3"|"L4",
policy = list(
list(
rpoInSecs = 123,
rtoInSecs = 123
)
),
policyArn = "string",
policyDescription = "string",
policyName = "string",
tags = list(
"string"
),
tier = "MissionCritical"|"Critical"|"Important"|"CoreServices"|"NonCritical"|"NotApplicable"
)
)
)