Module Values.DeploymentEventDataSummarySource

A summary of the deployment event data.

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

    The name of the deployment event.

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

    The description of the deployment event.

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

    The status of the deployment event.

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

    The reason of the deployment event status.

    *)
  5. timestamp : Timestamp.t option;
    (*

    The timestamp of the deployment event.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?status:??? -> ?statusReason:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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