{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-auto-scaling/refs/heads/main/json-schema/ec2-auto-scaling-disable-metrics-collection-query-schema.json", "title": "DisableMetricsCollectionQuery", "description": "DisableMetricsCollectionQuery schema from Auto Scaling", "type": "object", "properties": { "AutoScalingGroupName": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen255" }, { "description": "The name of the Auto Scaling group." } ] }, "Metrics": { "allOf": [ { "$ref": "#/components/schemas/Metrics" }, { "description": "

Identifies the metrics to disable.

You can specify one or more of the following metrics:

If you omit this property, all metrics are disabled.

For more information, see Auto Scaling group metrics in the Amazon EC2 Auto Scaling User Guide.

" } ] } }, "required": [ "AutoScalingGroupName" ] }