MemoryGiBPerVCpuRequest

Specifies the minimum and maximum for the MemoryGiBPerVCpu 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-memory-gi-b-per-v-cpu-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-memory-gi-b-per-v-cpu-request-schema.json",
  "title": "MemoryGiBPerVCpuRequest",
  "description": "Specifies the minimum and maximum for the <code>MemoryGiBPerVCpu</code> object when you specify <a>InstanceRequirements</a> 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."
        }
      ]
    }
  }
}