List Resiliency Policies
resiliencehub_list_resiliency_policies | R Documentation |
Lists the resiliency policies for the Resilience Hub applications¶
Description¶
Lists the resiliency policies for the Resilience Hub applications.
Usage¶
resiliencehub_list_resiliency_policies(maxResults, nextToken,
policyName)
Arguments¶
maxResults |
Maximum number of results to include in the response. If more
results exist than the specified |
nextToken |
Null, or the token from a previous call to get the next set of results. |
policyName |
Name of the resiliency policy. |
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"
)
)
)
Request syntax¶
svc$list_resiliency_policies(
maxResults = 123,
nextToken = "string",
policyName = "string"
)