{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-auto-scaling/refs/heads/main/json-structure/ec2-auto-scaling-metric-dimension-structure.json", "name": "MetricDimension", "description": "Describes the dimension of a metric.", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/MetricDimensionName" }, { "description": "The name of the dimension." } ] }, "Value": { "allOf": [ { "$ref": "#/components/schemas/MetricDimensionValue" }, { "description": "The value of the dimension." } ] } }, "required": [ "Name", "Value" ] }