AWS CloudWatch · Schema

MetricStreamFilter

Contains the configuration for a metric stream filter.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
Namespace string The name of the metric namespace in the filter.
MetricNames array The names of the metrics to either include or exclude from the metric stream.
View JSON Schema on GitHub

JSON Schema

cloudwatch-metric-stream-filter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MetricStreamFilter",
  "type": "object",
  "description": "Contains the configuration for a metric stream filter.",
  "properties": {
    "Namespace": {
      "type": "string",
      "description": "The name of the metric namespace in the filter."
    },
    "MetricNames": {
      "type": "array",
      "description": "The names of the metrics to either include or exclude from the metric stream."
    }
  }
}