AWS CloudWatch · Schema

PutAnomalyDetectorInput

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
Namespace string The namespace of the metric to create the anomaly detection model for.
MetricName string The name of the metric to create the anomaly detection model for.
Dimensions array The metric dimensions to create the anomaly detection model for.
Stat string The statistic to use for the metric and the anomaly detection model.
Configuration object
MetricCharacteristics object
SingleMetricAnomalyDetector object
MetricMathAnomalyDetector object
View JSON Schema on GitHub

JSON Schema

cloudwatch-putanomalydetectorinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutAnomalyDetectorInput",
  "title": "PutAnomalyDetectorInput",
  "type": "object",
  "properties": {
    "Namespace": {
      "type": "string",
      "description": "The namespace of the metric to create the anomaly detection model for.",
      "example": "example_value"
    },
    "MetricName": {
      "type": "string",
      "description": "The name of the metric to create the anomaly detection model for.",
      "example": "example_value"
    },
    "Dimensions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Dimension"
      },
      "description": "The metric dimensions to create the anomaly detection model for.",
      "example": []
    },
    "Stat": {
      "type": "string",
      "description": "The statistic to use for the metric and the anomaly detection model.",
      "example": "example_value"
    },
    "Configuration": {
      "$ref": "#/components/schemas/AnomalyDetectorConfiguration"
    },
    "MetricCharacteristics": {
      "$ref": "#/components/schemas/MetricCharacteristics"
    },
    "SingleMetricAnomalyDetector": {
      "$ref": "#/components/schemas/SingleMetricAnomalyDetector"
    },
    "MetricMathAnomalyDetector": {
      "$ref": "#/components/schemas/MetricMathAnomalyDetector"
    }
  }
}