NetworkInterfaceCountRequest

Specifies the minimum and maximum for the NetworkInterfaceCount 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-network-interface-count-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-network-interface-count-request-schema.json",
  "title": "NetworkInterfaceCountRequest",
  "description": "Specifies the minimum and maximum for the <code>NetworkInterfaceCount</code> object when you specify <a>InstanceRequirements</a> for an Auto Scaling group.",
  "type": "object",
  "properties": {
    "Min": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullablePositiveInteger"
        },
        {
          "description": "The minimum number of network interfaces."
        }
      ]
    },
    "Max": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullablePositiveInteger"
        },
        {
          "description": "The maximum number of network interfaces."
        }
      ]
    }
  }
}