ListMetricSetsRequest

ListMetricSetsRequest schema from Amazon Lookout for Metrics API

Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

Properties

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

JSON Schema

amazon-lookout-for-metrics-list-metric-sets-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-metric-sets-request-schema.json",
  "title": "ListMetricSetsRequest",
  "description": "ListMetricSetsRequest schema from Amazon Lookout for Metrics API",
  "type": "object",
  "properties": {
    "AnomalyDetectorArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The ARN of the anomaly detector containing the metrics sets to list."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxResults"
        },
        {
          "description": "The maximum number of results to return."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "If the result of the previous request was truncated, the response includes a <code>NextToken</code>. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours."
        }
      ]
    }
  }
}