DimensionFilter

The dimension filter, containing DimensionName and DimensionValueList.

Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

Properties

Name Type Description
DimensionName object
DimensionValueList object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-metrics-dimension-filter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-schema/amazon-lookout-for-metrics-dimension-filter-schema.json",
  "title": "DimensionFilter",
  "description": "The dimension filter, containing DimensionName and DimensionValueList.",
  "type": "object",
  "properties": {
    "DimensionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnName"
        },
        {
          "description": "The name of the dimension to filter on."
        }
      ]
    },
    "DimensionValueList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DimensionValueList"
        },
        {
          "description": "The list of values for the dimension specified in DimensionName that you want to filter on."
        }
      ]
    }
  }
}