Amazon CloudWatch · Schema

DescribeAlarmsResponse

Response from the DescribeAlarms action

CloudWatchMonitoringObservabilityMetricsLogs

Properties

Name Type Description
metricAlarms array The information about the alarms
nextToken string Token for the next page of results
View JSON Schema on GitHub

JSON Schema

cloudwatch-describe-alarms-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudwatch/refs/heads/main/json-schema/cloudwatch-describe-alarms-response-schema.json",
  "title": "DescribeAlarmsResponse",
  "description": "Response from the DescribeAlarms action",
  "type": "object",
  "properties": {
    "metricAlarms": {
      "type": "array",
      "description": "The information about the alarms",
      "items": {
        "$ref": "#/components/schemas/Alarm"
      }
    },
    "nextToken": {
      "type": "string",
      "description": "Token for the next page of results"
    }
  }
}