AWS CloudWatch · Schema

DeleteAnomalyDetectorInput

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
Namespace string The namespace associated with the anomaly detection model to delete.
MetricName string The metric name associated with the anomaly detection model to delete.
Dimensions array The metric dimensions associated with the anomaly detection model to delete.
Stat string The statistic associated with the anomaly detection model to delete.
SingleMetricAnomalyDetector object
MetricMathAnomalyDetector object
View JSON Schema on GitHub

JSON Schema

cloudwatch-deleteanomalydetectorinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteAnomalyDetectorInput",
  "title": "DeleteAnomalyDetectorInput",
  "type": "object",
  "properties": {
    "Namespace": {
      "type": "string",
      "description": "The namespace associated with the anomaly detection model to delete.",
      "example": "example_value"
    },
    "MetricName": {
      "type": "string",
      "description": "The metric name associated with the anomaly detection model to delete.",
      "example": "example_value"
    },
    "Dimensions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Dimension"
      },
      "description": "The metric dimensions associated with the anomaly detection model to delete.",
      "example": []
    },
    "Stat": {
      "type": "string",
      "description": "The statistic associated with the anomaly detection model to delete.",
      "example": "example_value"
    },
    "SingleMetricAnomalyDetector": {
      "$ref": "#/components/schemas/SingleMetricAnomalyDetector"
    },
    "MetricMathAnomalyDetector": {
      "$ref": "#/components/schemas/MetricMathAnomalyDetector"
    }
  }
}