alarm_recommendations
Creates, updates, deletes, gets or lists an alarm_recommendations resource.
Overview
| Name | alarm_recommendations |
| Type | Resource |
| Id | aws.resiliencehub.alarm_recommendations |
Fields
The following fields are returned by SELECT queries:
- list_alarm_recommendations
| Name | Datatype | Description |
|---|---|---|
alarm_recommendations | array | The alarm recommendations for an Resilience Hub application, returned as an object. This object includes Application Component names, descriptions, information about whether a recommendation has already been implemented or not, prerequisites, and more. |
next_token | string | Token for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_alarm_recommendations | select | region | Lists the alarm recommendations for an 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_alarm_recommendations
Lists the alarm recommendations for an Resilience Hub application.
SELECT
alarm_recommendations,
next_token
FROM aws.resiliencehub.alarm_recommendations
WHERE region = '{{ region }}' -- required
;