Module Values.ApplicationVersionSummarySource

Defines an application version summary.

Sourcetype nonrec t = {
  1. applicationVersion : Version.t option;
    (*

    The application version.

    *)
  2. creationTime : Timestamp.t option;
    (*

    The timestamp when the application version was created.

    *)
  3. status : ApplicationVersionLifecycle.t option;
    (*

    The status of the application.

    *)
  4. statusReason : String_.t option;
    (*

    The reason for the reported status.

    *)
}
Sourceval make : ?applicationVersion:??? -> ?creationTime:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Version.t | `String of String_.t | `Timestamp of Timestamp.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