Amazon EKS · Schema

KubernetesNetworkConfigResponse

KubernetesNetworkConfigResponse schema from Amazon EKS API

Container OrchestrationContainersEKSKubernetes

Properties

Name Type Description
serviceIpv4Cidr string
serviceIpv6Cidr string
ipFamily string
View JSON Schema on GitHub

JSON Schema

eks-openapi-kubernetes-network-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-kubernetes-network-config-response-schema.json",
  "title": "KubernetesNetworkConfigResponse",
  "description": "KubernetesNetworkConfigResponse schema from Amazon EKS API",
  "type": "object",
  "properties": {
    "serviceIpv4Cidr": {
      "type": "string"
    },
    "serviceIpv6Cidr": {
      "type": "string"
    },
    "ipFamily": {
      "type": "string",
      "enum": [
        "ipv4",
        "ipv6"
      ]
    }
  }
}