Module Values.LifecycleEventSource

Information about a deployment lifecycle event.

Sourcetype nonrec t = {
  1. lifecycleEventName : LifecycleEventName.t option;
    (*

    The deployment lifecycle event name, such as ApplicationStop, BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.

    *)
  2. diagnostics : Diagnostics.t option;
    (*

    Diagnostic information about the deployment lifecycle event.

    *)
  3. startTime : Timestamp.t option;
    (*

    A timestamp that indicates when the deployment lifecycle event started.

    *)
  4. endTime : Timestamp.t option;
    (*

    A timestamp that indicates when the deployment lifecycle event ended.

    *)
  5. status : LifecycleEventStatus.t option;
    (*

    The deployment lifecycle event status: Pending: The deployment lifecycle event is pending. InProgress: The deployment lifecycle event is in progress. Succeeded: The deployment lifecycle event ran successfully. Failed: The deployment lifecycle event has failed. Skipped: The deployment lifecycle event has been skipped. Unknown: The deployment lifecycle event is unknown.

    *)
}
Sourceval make : ?lifecycleEventName:??? -> ?diagnostics:??? -> ?startTime:??? -> ?endTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LifecycleEventName.t | `Structure of (string * [> `Enum of string | `String of ScriptName.t ]) list | `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