AWS CloudWatch · Schema

DimensionFilter

Represents filters for a dimension.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
Name string The dimension name to be matched.
Value string The value of the dimension to be matched.
View JSON Schema on GitHub

JSON Schema

cloudwatch-dimensionfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DimensionFilter",
  "title": "DimensionFilter",
  "type": "object",
  "description": "Represents filters for a dimension.",
  "required": [
    "Name"
  ],
  "properties": {
    "Name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255,
      "description": "The dimension name to be matched.",
      "example": "Example Title"
    },
    "Value": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024,
      "description": "The value of the dimension to be matched.",
      "example": "example_value"
    }
  }
}