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