Module Values.DescribeClusterVersionsRequestSource

Lists available Kubernetes versions for Amazon EKS clusters.

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

    The type of cluster to filter versions by.

    *)
  2. maxResults : DescribeClusterVersionMaxResults.t option;
    (*

    Maximum number of results to return.

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

    Pagination token for the next set of results.

    *)
  4. defaultOnly : BoxedBoolean.t option;
    (*

    Filter to show only default versions.

    *)
  5. includeAll : BoxedBoolean.t option;
    (*

    Include all available versions in the response.

    *)
  6. clusterVersions : StringList.t option;
    (*

    List of specific cluster versions to describe.

    *)
  7. status : ClusterVersionStatus.t option;
    (*

    This field is deprecated. Use versionStatus instead, as that field matches for input and output of this action. Filter versions by their current status.

    *)
  8. versionStatus : VersionStatus.t option;
    (*

    Filter versions by their current status.

    *)
}
Sourceval make : ?clusterType:??? -> ?maxResults:??? -> ?nextToken:??? -> ?defaultOnly:??? -> ?includeAll:??? -> ?clusterVersions:??? -> ?status:??? -> ?versionStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Enum of string | `Integer of DescribeClusterVersionMaxResults.t | `List of [> `String of String_.t ] list | `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