suggested_resiliency_policies
Creates, updates, deletes, gets or lists a suggested_resiliency_policies resource.
Overview
| Name | suggested_resiliency_policies |
| Type | Resource |
| Id | aws.resiliencehub.suggested_resiliency_policies |
Fields
The following fields are returned by SELECT queries:
- list_suggested_resiliency_policies
| Name | Datatype | Description |
|---|---|---|
next_token | string | Token for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>) |
resiliency_policies | array | The suggested resiliency policies for the Resilience Hub applications. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_suggested_resiliency_policies | select | region | maxResults, nextToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
maxResults | integer | Maximum 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. |
nextToken | string | Null, or the token from a previous call to get the next set of results. |
SELECT examples
- list_suggested_resiliency_policies
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 }}'
;