{
"$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-accelerator-count-request-structure.json",
"name": "AcceleratorCountRequest",
"description": "Specifies the minimum and maximum for the AcceleratorCount object when you specify InstanceRequirements 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."
}
]
}
}
}