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¶
resiliencehub_list_suggested_resiliency_policies(maxResults, nextToken)
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. | 
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_suggested_resiliency_policies(
  maxResults = 123,
  nextToken = "string"
)