Amazon CloudWatch · Schema

ListMetricsResponse

Response from the ListMetrics action

CloudWatchMonitoringObservabilityMetricsLogs

Properties

Name Type Description
metrics array The metrics that match the filter criteria
nextToken string Token for the next page of results
View JSON Schema on GitHub

JSON Schema

cloudwatch-list-metrics-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudwatch/refs/heads/main/json-schema/cloudwatch-list-metrics-response-schema.json",
  "title": "ListMetricsResponse",
  "description": "Response from the ListMetrics action",
  "type": "object",
  "properties": {
    "metrics": {
      "type": "array",
      "description": "The metrics that match the filter criteria",
      "items": {
        "$ref": "#/components/schemas/Metric"
      }
    },
    "nextToken": {
      "type": "string",
      "description": "Token for the next page of results"
    }
  }
}