Module Values.ClusterDbRevisionSource

Describes a ClusterDbRevision.

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

    The unique identifier of the cluster.

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

    A string representing the current cluster version.

    *)
  3. databaseRevisionReleaseDate : TStamp.t option;
    (*

    The date on which the database revision was released.

    *)
  4. revisionTargets : RevisionTargetsList.t option;
    (*

    A list of RevisionTarget objects, where each object describes the database revision that a cluster can be updated to.

    *)
}
Sourceval make : ?clusterIdentifier:??? -> ?currentDatabaseRevision:??? -> ?databaseRevisionReleaseDate:??? -> ?revisionTargets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Timestamp of TStamp.t ]) list ] list | `String of String_.t | `Timestamp of TStamp.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