Skip to main content

alarm_contributors

Creates, updates, deletes, gets or lists an alarm_contributors resource.

Overview

Namealarm_contributors
TypeResource
Idaws.cloudwatch.alarm_contributors

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
alarm_contributorsarrayA list of alarm contributors that provide details about the individual time series contributing to the alarm's state.
next_tokenstringThe token that marks the start of the next batch of returned results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_alarm_contributorsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;