Module Values.ConfigurationRevisionSource

Describes a configuration revision.

Sourcetype nonrec t = {
  1. creationTime : string option;
    (*

    The time when the configuration revision was created.

    *)
  2. description : string option;
    (*

    The description of the configuration revision.

    *)
  3. revision : Awso.Import.Int64.t option;
    (*

    The revision number.

    *)
}
Sourceval make : ?creationTime:??? -> ?description:??? -> ?revision:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string | `Timestamp of string ]) 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