Describe Alarm History
| cloudwatch_describe_alarm_history | R Documentation |
Retrieves the history for the specified alarm¶
Description¶
Retrieves the history for the specified alarm. You can filter the results by date range or item type. If an alarm name is not specified, the histories for either all metric alarms or all composite alarms are returned.
CloudWatch retains the history of an alarm even if you delete the alarm.
To use this operation and return information about a composite alarm,
you must be signed on with the cloudwatch:DescribeAlarmHistory
permission that is scoped to *. You can't return information about
composite alarms if your cloudwatch:DescribeAlarmHistory permission
has a narrower scope.
Usage¶
cloudwatch_describe_alarm_history(AlarmName, AlarmTypes,
HistoryItemType, StartDate, EndDate, MaxRecords, NextToken, ScanBy)
Arguments¶
AlarmNameThe name of the alarm.
AlarmTypesUse this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter, only metric alarms are returned.
HistoryItemTypeThe type of alarm histories to retrieve.
StartDateThe starting date to retrieve alarm history.
EndDateThe ending date to retrieve alarm history.
MaxRecordsThe maximum number of alarm history records to retrieve.
NextTokenThe token returned by a previous call to indicate that there is more data available.
ScanBySpecified whether to return the newest or oldest alarm history first. Specify
TimestampDescendingto have the newest event history returned first, and specifyTimestampAscendingto have the oldest history returned first.
Value¶
A list with the following syntax:
list(
AlarmHistoryItems = list(
list(
AlarmName = "string",
AlarmType = "CompositeAlarm"|"MetricAlarm",
Timestamp = as.POSIXct(
"2015-01-01"
),
HistoryItemType = "ConfigurationUpdate"|"StateUpdate"|"Action",
HistorySummary = "string",
HistoryData = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_alarm_history(
AlarmName = "string",
AlarmTypes = list(
"CompositeAlarm"|"MetricAlarm"
),
HistoryItemType = "ConfigurationUpdate"|"StateUpdate"|"Action",
StartDate = as.POSIXct(
"2015-01-01"
),
EndDate = as.POSIXct(
"2015-01-01"
),
MaxRecords = 123,
NextToken = "string",
ScanBy = "TimestampDescending"|"TimestampAscending"
)