AcceleratorCountRequest

Specifies the minimum and maximum for the AcceleratorCount object when you specify InstanceRequirements for an Auto Scaling group.

Amazon Web ServicesAuto-ScalingComputeEC2High AvailabilityScaling

Properties

Name Type Description
Min object
Max object
View JSON Schema on GitHub

JSON Schema

ec2-auto-scaling-accelerator-count-request-schema.json Raw ↑
{
  "$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-accelerator-count-request-schema.json",
  "title": "AcceleratorCountRequest",
  "description": "Specifies the minimum and maximum for the <code>AcceleratorCount</code> object when you specify <a>InstanceRequirements</a> for an Auto Scaling group.",
  "type": "object",
  "properties": {
    "Min": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullablePositiveInteger"
        },
        {
          "description": "The minimum value."
        }
      ]
    },
    "Max": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullablePositiveInteger"
        },
        {
          "description": "The maximum value."
        }
      ]
    }
  }
}