Skip to content

Describe Alarm Contributors

cloudwatch_describe_alarm_contributors R Documentation

Returns the information of the current alarm contributors that are in ALARM state

Description

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.

Usage

cloudwatch_describe_alarm_contributors(AlarmName, NextToken)

Arguments

AlarmName

[required] The name of the alarm for which to retrieve contributor information.

NextToken

The token returned by a previous call to indicate that there is more data available.

Value

A list with the following syntax:

list(
  AlarmContributors = list(
    list(
      ContributorId = "string",
      ContributorAttributes = list(
        "string"
      ),
      StateReason = "string",
      StateTransitionedTimestamp = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_alarm_contributors(
  AlarmName = "string",
  NextToken = "string"
)