Module EKS.Cluster

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html

type control_plane_placement = {
  1. group_name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-controlplaneplacement.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and provider = {
  1. key_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-provider.html

and kubernetes_network_config = {
  1. service_ipv4_cidr : string option;
  2. service_ipv6_cidr : string option;
  3. ip_family : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-kubernetesnetworkconfig.html

and resources_vpc_config = {
  1. endpoint_public_access : bool option;
  2. public_access_cidrs : string list option;
  3. endpoint_private_access : bool option;
  4. security_group_ids : string list option;
  5. subnet_ids : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-resourcesvpcconfig.html

and logging_type_config = {
  1. type_ : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-loggingtypeconfig.html

and access_config = {
  1. authentication_mode : string option;
  2. bootstrap_cluster_creator_admin_permissions : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-accessconfig.html

and cluster_logging = {
  1. enabled_types : logging_type_config list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-clusterlogging.html

and outpost_config = {
  1. outpost_arns : string list;
  2. control_plane_placement : control_plane_placement option;
  3. control_plane_instance_type : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-outpostconfig.html

and encryption_config = {
  1. resources : string list option;
  2. provider : provider option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-encryptionconfig.html

and logging = {
  1. cluster_logging : cluster_logging option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-logging.html

type properties = {
  1. logging : logging option;
  2. version : string option;
  3. access_config : access_config option;
  4. outpost_config : outpost_config option;
  5. encryption_config : encryption_config list option;
  6. kubernetes_network_config : kubernetes_network_config option;
  7. role_arn : string;
  8. resources_vpc_config : resources_vpc_config;
  9. tags : tag list option;
  10. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html;

val make_properties : ?logging:logging -> ?version:string -> ?access_config:access_config -> ?outpost_config:outpost_config -> ?encryption_config:encryption_config list -> ?kubernetes_network_config:kubernetes_network_config -> role_arn:string -> resources_vpc_config:resources_vpc_config -> ?tags:tag list -> ?name:string -> unit -> properties
val make_control_plane_placement : ?group_name:string -> unit -> control_plane_placement
val make_tag : value:string -> key:string -> unit -> tag
val make_provider : ?key_arn:string -> unit -> provider
val make_kubernetes_network_config : ?service_ipv4_cidr:string -> ?service_ipv6_cidr:string -> ?ip_family:string -> unit -> kubernetes_network_config
val make_resources_vpc_config : ?endpoint_public_access:bool -> ?public_access_cidrs:string list -> ?endpoint_private_access:bool -> ?security_group_ids:string list -> subnet_ids:string list -> unit -> resources_vpc_config
val make_logging_type_config : ?type_:string -> unit -> logging_type_config
val make_access_config : ?authentication_mode:string -> ?bootstrap_cluster_creator_admin_permissions:bool -> unit -> access_config
val make_cluster_logging : ?enabled_types:logging_type_config list -> unit -> cluster_logging
val make_outpost_config : outpost_arns:string list -> ?control_plane_placement:control_plane_placement -> control_plane_instance_type:string -> unit -> outpost_config
val make_encryption_config : ?resources:string list -> ?provider:provider -> unit -> encryption_config
val make_logging : ?cluster_logging:cluster_logging -> unit -> logging
val yojson_of_control_plane_placement : control_plane_placement -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_provider : provider -> Yojson.Safe.t
val yojson_of_kubernetes_network_config : kubernetes_network_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_resources_vpc_config : resources_vpc_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_logging_type_config : logging_type_config -> Yojson.Safe.t
val yojson_of_access_config : access_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_cluster_logging : cluster_logging -> Yojson.Safe.t
val yojson_of_outpost_config : outpost_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_encryption_config : encryption_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_logging : logging -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. endpoint : string;
  3. cluster_security_group_id : string;
  4. encryption_config_key_arn : string;
  5. id : string;
  6. certificate_authority_data : string;
  7. arn : string;
  8. kubernetes_network_config__service_ipv6_cidr : string;
  9. open_id_connect_issuer_url : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string