Module Values.RevisionTargetSource

Describes a RevisionTarget.

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

    A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision.

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

    A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision.

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

    The date on which the database revision was released.

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