sop_recommendations
Creates, updates, deletes, gets or lists a sop_recommendations resource.
Overview
| Name | sop_recommendations |
| Type | Resource |
| Id | aws.resiliencehub.sop_recommendations |
Fields
The following fields are returned by SELECT queries:
- list_sop_recommendations
| 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>) |
sop_recommendations | array | The standard operating procedure (SOP) recommendations for the Resilience Hub applications. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_sop_recommendations | select | region | Lists the standard operating procedure (SOP) recommendations 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) |
SELECT examples
- list_sop_recommendations
Lists the standard operating procedure (SOP) recommendations for the Resilience Hub applications.
SELECT
next_token,
sop_recommendations
FROM aws.resiliencehub.sop_recommendations
WHERE region = '{{ region }}' -- required
;