Module Values.OrderableClusterOptionSource

Describes an orderable cluster option.

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

    The version of the orderable cluster.

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

    The cluster type, for example multi-node.

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

    The node type for the orderable cluster.

    *)
  4. availabilityZones : AvailabilityZoneList.t option;
    (*

    A list of availability zones for the orderable cluster.

    *)
}
Sourceval make : ?clusterVersion:??? -> ?clusterType:??? -> ?nodeType:??? -> ?availabilityZones:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] 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