Amazon EC2 Auto Scaling · JSON Structure

Ec2 Auto Scaling Metric Dimension Structure

Describes the dimension of a metric.

Type: object Properties: 2 Required: 2
Amazon Web ServicesAuto ScalingComputeEC2High AvailabilityScaling

MetricDimension is a JSON Structure definition published by Amazon EC2 Auto Scaling, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}