AWS CloudWatch · Schema
DescribeAlarmsForMetricInput
AlarmsAwsDashboardsLogsMetricsMonitoringObservability
Properties
| Name | Type | Description |
|---|---|---|
| MetricName | string | The name of the metric. |
| Namespace | string | The namespace of the metric. |
| ExtendedStatistic | string | The percentile statistic for the metric. |
| Dimensions | array | The dimensions associated with the metric. |
| Period | integer | The period, in seconds, over which the statistic is applied. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DescribeAlarmsForMetricInput",
"type": "object",
"properties": {
"MetricName": {
"type": "string",
"description": "The name of the metric."
},
"Namespace": {
"type": "string",
"description": "The namespace of the metric."
},
"ExtendedStatistic": {
"type": "string",
"description": "The percentile statistic for the metric."
},
"Dimensions": {
"type": "array",
"description": "The dimensions associated with the metric."
},
"Period": {
"type": "integer",
"description": "The period, in seconds, over which the statistic is applied."
}
}
}