AWS CloudWatch · Schema

MetricMathAnomalyDetector

Indicates the CloudWatch math expression that provides the time series the anomaly detector uses as input.

AlarmsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
MetricDataQueries array An array of metric data query structures that enables you to create an anomaly detector based on the result of a metric math expression.
View JSON Schema on GitHub

JSON Schema

cloudwatch-metricmathanomalydetector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricMathAnomalyDetector",
  "title": "MetricMathAnomalyDetector",
  "type": "object",
  "description": "Indicates the CloudWatch math expression that provides the time series the anomaly detector uses as input.",
  "properties": {
    "MetricDataQueries": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MetricDataQuery"
      },
      "description": "An array of metric data query structures that enables you to create an anomaly detector based on the result of a metric math expression.",
      "example": []
    }
  }
}