AWS CloudWatch · Schema

AlarmHistoryItem

Represents the history of a specific alarm.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
AlarmName string The descriptive name for the alarm.
AlarmType string The type of alarm, either metric alarm or composite alarm.
Timestamp string The time stamp for the alarm history item.
HistoryItemType string The type of alarm history item.
HistorySummary string A summary of the alarm history, in text format.
HistoryData string Data about the alarm, in JSON format.
View JSON Schema on GitHub

JSON Schema

cloudwatch-alarm-history-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AlarmHistoryItem",
  "type": "object",
  "description": "Represents the history of a specific alarm.",
  "properties": {
    "AlarmName": {
      "type": "string",
      "description": "The descriptive name for the alarm."
    },
    "AlarmType": {
      "type": "string",
      "description": "The type of alarm, either metric alarm or composite alarm."
    },
    "Timestamp": {
      "type": "string",
      "description": "The time stamp for the alarm history item."
    },
    "HistoryItemType": {
      "type": "string",
      "description": "The type of alarm history item."
    },
    "HistorySummary": {
      "type": "string",
      "description": "A summary of the alarm history, in text format."
    },
    "HistoryData": {
      "type": "string",
      "description": "Data about the alarm, in JSON format."
    }
  }
}