Values.ClusterVersionInformationSourceContains details about a specific EKS cluster version.
type nonrec t = {clusterVersion : String_.t option;The Kubernetes version for the cluster.
*)clusterType : String_.t option;The type of cluster this version is for.
*)defaultPlatformVersion : String_.t option;Default platform version for this Kubernetes version.
*)defaultVersion : Boolean.t option;Indicates if this is a default version.
*)releaseDate : Timestamp.t option;The release date of this cluster version.
*)endOfStandardSupportDate : Timestamp.t option;Date when standard support ends for this version.
*)endOfExtendedSupportDate : Timestamp.t option;Date when extended support ends for this version.
*)status : ClusterVersionStatus.t option;This field is deprecated. Use versionStatus instead, as that field matches for input and output of this action. Current status of this cluster version.
*)versionStatus : VersionStatus.t option;Current status of this cluster version.
*)kubernetesPatchVersion : String_.t option;The patch version of Kubernetes for this cluster version.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]