Amazon EKS · Schema

VpcConfigResponse

VpcConfigResponse schema from Amazon EKS API

Container OrchestrationContainersEKSKubernetes

Properties

Name Type Description
subnetIds array
securityGroupIds array
clusterSecurityGroupId string
vpcId string
endpointPublicAccess boolean
endpointPrivateAccess boolean
publicAccessCidrs array
View JSON Schema on GitHub

JSON Schema

eks-openapi-vpc-config-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eks/refs/heads/main/json-schema/eks-openapi-vpc-config-response-schema.json",
  "title": "VpcConfigResponse",
  "description": "VpcConfigResponse schema from Amazon EKS API",
  "type": "object",
  "properties": {
    "subnetIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "securityGroupIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "clusterSecurityGroupId": {
      "type": "string"
    },
    "vpcId": {
      "type": "string"
    },
    "endpointPublicAccess": {
      "type": "boolean"
    },
    "endpointPrivateAccess": {
      "type": "boolean"
    },
    "publicAccessCidrs": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}