VpcConfigResponseResponse

data class VpcConfigResponseResponse(val clusterSecurityGroupId: String? = null, val endpointPrivateAccess: Boolean? = null, val endpointPublicAccess: Boolean? = null, val publicAccessCidrs: List<String>? = null, val securityGroupIds: List<String>? = null, val subnetIds: List<String>? = null, val vpcId: String? = null)

Definition of VpcConfigResponse

Constructors

Link copied to clipboard
constructor(clusterSecurityGroupId: String? = null, endpointPrivateAccess: Boolean? = null, endpointPublicAccess: Boolean? = null, publicAccessCidrs: List<String>? = null, securityGroupIds: List<String>? = null, subnetIds: List<String>? = null, vpcId: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The cluster security group that was created by Amazon EKS for the cluster. Managed node groups use this security group for control-plane-to-data-plane communication.

Link copied to clipboard

This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate from within your cluster's VPC use the private VPC endpoint instead of traversing the internet. If this value is disabled and you have nodes or Fargate pods in the cluster, then ensure that publicAccessCidrs includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see Amazon EKS cluster endpoint access control in the Amazon EKS User Guide .

Link copied to clipboard

Whether the public API server endpoint is enabled.

Link copied to clipboard

The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint.

Link copied to clipboard

The security groups associated with the cross-account elastic network interfaces that are used to allow communication between your nodes and the Kubernetes control plane.

Link copied to clipboard
val subnetIds: List<String>? = null

The subnets associated with your cluster.

Link copied to clipboard
val vpcId: String? = null

The VPC associated with your cluster.