Module Values.UpdateClusterVersionRequestSource

Updates an Amazon EKS cluster to the specified Kubernetes version. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation. Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active. If your cluster has managed node groups attached to it, all of your node groups' Kubernetes versions must match the cluster's Kubernetes version in order to update the cluster to a new Kubernetes version.

Sourcetype nonrec t = {
  1. name : String_.t;
    (*

    The name of the Amazon EKS cluster to update.

    *)
  2. version : String_.t;
    (*

    The desired Kubernetes version following a successful update.

    *)
  3. clientRequestToken : String_.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  4. force : Boolean.t option;
    (*

    Set this value to true to override upgrade-blocking readiness checks when updating a cluster.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> ?force:??? -> name:String_.t -> version:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) 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