ListAnomalyGroupRelatedMetricsRequest

ListAnomalyGroupRelatedMetricsRequest schema from Amazon Lookout for Metrics API

Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

Properties

Name Type Description
AnomalyDetectorArn object
AnomalyGroupId object
RelationshipTypeFilter object
MaxResults object
NextToken object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-metrics-list-anomaly-group-related-metrics-request-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-list-anomaly-group-related-metrics-request-schema.json",
  "title": "ListAnomalyGroupRelatedMetricsRequest",
  "description": "ListAnomalyGroupRelatedMetricsRequest schema from Amazon Lookout for Metrics API",
  "type": "object",
  "properties": {
    "AnomalyDetectorArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the anomaly detector."
        }
      ]
    },
    "AnomalyGroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UUID"
        },
        {
          "description": "The ID of the anomaly group."
        }
      ]
    },
    "RelationshipTypeFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RelationshipType"
        },
        {
          "description": "Filter for potential causes (<code>CAUSE_OF_INPUT_ANOMALY_GROUP</code>) or downstream effects (<code>EFFECT_OF_INPUT_ANOMALY_GROUP</code>) of the anomaly group."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxResults"
        },
        {
          "description": "The maximum number of results to return."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "Specify the pagination token that's returned by a previous request to retrieve the next page of results."
        }
      ]
    }
  },
  "required": [
    "AnomalyDetectorArn",
    "AnomalyGroupId"
  ]
}