{ "$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" } } }