alarm_contributors
Creates, updates, deletes, gets or lists an alarm_contributors resource.
Overview
| Name | alarm_contributors |
| Type | Resource |
| Id | aws.cloudwatch.alarm_contributors |
Fields
The following fields are returned by SELECT queries:
- describe_alarm_contributors
| Name | Datatype | Description |
|---|---|---|
alarm_contributors | array | A list of alarm contributors that provide details about the individual time series contributing to the alarm's state. |
next_token | string | The token that marks the start of the next batch of returned results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_alarm_contributors | select | region | Returns the information of the current alarm contributors that are in ALARM state. This operation returns details about the individual time series that contribute to the alarm's state. |
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
- describe_alarm_contributors
Returns the information of the current alarm contributors that are in ALARM state. This operation returns details about the individual time series that contribute to the alarm's state.
SELECT
alarm_contributors,
next_token
FROM aws.cloudwatch.alarm_contributors
WHERE region = '{{ region }}' -- required
;