Module Values.ClusterVersionSource

Describes a cluster version, including the parameter group family and description of the version.

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

    The version number used by the cluster.

    *)
  2. clusterParameterGroupFamily : String_.t option;
    (*

    The name of the cluster parameter group family for the cluster.

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

    The description of the cluster version.

    *)
}
Sourceval make : ?clusterVersion:??? -> ?clusterParameterGroupFamily:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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