{
"$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-memory-gi-b-per-v-cpu-request-structure.json",
"name": "MemoryGiBPerVCpuRequest",
"description": "Specifies the minimum and maximum for the MemoryGiBPerVCpu object when you specify InstanceRequirements for an Auto Scaling group.",
"type": "object",
"properties": {
"Min": {
"allOf": [
{
"$ref": "#/components/schemas/NullablePositiveDouble"
},
{
"description": "The memory minimum in GiB."
}
]
},
"Max": {
"allOf": [
{
"$ref": "#/components/schemas/NullablePositiveDouble"
},
{
"description": "The memory maximum in GiB."
}
]
}
}
}