Module Values.ConfigurationRevisionSource

Returns information about the specified configuration revision.

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

    Required. The date and time of the configuration revision.

    *)
  2. description : string option;
    (*

    The description of the configuration revision.

    *)
  3. revision : int option;
    (*

    Required. The revision number of the configuration.

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