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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PutAnomalyDetectorInput",
"type": "object",
"properties": {
"Namespace": {
"type": "string",
"description": "The namespace of the metric to create the anomaly detection model for."
},
"MetricName": {
"type": "string",
"description": "The name of the metric to create the anomaly detection model for."
},
"Dimensions": {
"type": "array",
"description": "The metric dimensions to create the anomaly detection model for."
},
"Stat": {
"type": "string",
"description": "The statistic to use for the metric and the anomaly detection model."
}
}
}