{
"$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-total-memory-mi-b-request-structure.json",
"name": "AcceleratorTotalMemoryMiBRequest",
"description": "Specifies the minimum and maximum for the AcceleratorTotalMemoryMiB object when you specify InstanceRequirements for an Auto Scaling group.",
"type": "object",
"properties": {
"Min": {
"allOf": [
{
"$ref": "#/components/schemas/NullablePositiveInteger"
},
{
"description": "The memory minimum in MiB."
}
]
},
"Max": {
"allOf": [
{
"$ref": "#/components/schemas/NullablePositiveInteger"
},
{
"description": "The memory maximum in MiB."
}
]
}
}
}