AWS CloudWatch · Schema

ComparisonOperator

The arithmetic operation to use when comparing the specified statistic and threshold.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability
View JSON Schema on GitHub

JSON Schema

cloudwatch-comparisonoperator-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComparisonOperator",
  "title": "ComparisonOperator",
  "type": "string",
  "description": "The arithmetic operation to use when comparing the specified statistic and threshold.",
  "enum": [
    "GreaterThanOrEqualToThreshold",
    "GreaterThanThreshold",
    "LessThanThreshold",
    "LessThanOrEqualToThreshold",
    "LessThanLowerOrGreaterThanUpperThreshold",
    "LessThanLowerThreshold",
    "GreaterThanUpperThreshold"
  ]
}