Module Values.AwsEksClusterResourcesVpcConfigDetailsSource

Information about the VPC configuration used by the cluster control plane.

Sourcetype nonrec t = {
  1. securityGroupIds : NonEmptyStringList.t option;
    (*

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

    *)
  2. subnetIds : NonEmptyStringList.t option;
    (*

    The subnets that are associated with the cluster.

    *)
  3. endpointPublicAccess : Boolean.t option;
    (*

    Indicates whether the Amazon EKS public API server endpoint is turned on. If the Amazon EKS public API server endpoint is turned off, your cluster's Kubernetes API server can only receive requests that originate from within the cluster VPC.

    *)
}
Sourceval make : ?securityGroupIds:??? -> ?subnetIds:??? -> ?endpointPublicAccess:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t