Values.LifecycleEventSourceInformation about a deployment lifecycle event.
type nonrec t = {lifecycleEventName : LifecycleEventName.t option;The deployment lifecycle event name, such as ApplicationStop, BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.
*)diagnostics : Diagnostics.t option;Diagnostic information about the deployment lifecycle event.
*)startTime : Timestamp.t option;A timestamp that indicates when the deployment lifecycle event started.
*)endTime : Timestamp.t option;A timestamp that indicates when the deployment lifecycle event ended.
*)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.
*)}val 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 ]