AcceleratorTotalMemoryMiBRequest

Specifies the minimum and maximum for the AcceleratorTotalMemoryMiB 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-total-memory-mi-b-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-total-memory-mi-b-request-schema.json",
  "title": "AcceleratorTotalMemoryMiBRequest",
  "description": "Specifies the minimum and maximum for the <code>AcceleratorTotalMemoryMiB</code> object when you specify <a>InstanceRequirements</a> 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."
        }
      ]
    }
  }
}