Skip to main content

suggested_resiliency_policies

Creates, updates, deletes, gets or lists a suggested_resiliency_policies resource.

Overview

Namesuggested_resiliency_policies
TypeResource
Idaws.resiliencehub.suggested_resiliency_policies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringToken for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>)
resiliency_policiesarrayThe suggested resiliency policies for the Resilience Hub applications.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_suggested_resiliency_policiesselectregionmaxResults, nextTokenLists the suggested resiliency policies for the Resilience Hub applications.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
maxResultsintegerMaximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
nextTokenstringNull, or the token from a previous call to get the next set of results.

SELECT examples

Lists the suggested resiliency policies for the Resilience Hub applications.

SELECT
next_token,
resiliency_policies
FROM aws.resiliencehub.suggested_resiliency_policies
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;