Values.SandboxSessionPhaseSourceContains information about the sandbox phase.
type nonrec t = {phaseType : String_.t option;The name of the sandbox phase.
*)phaseStatus : StatusType.t option;The current status of the sandbox phase. Valid values include: FAILED The sandbox phase failed. FAULT The sandbox phase faulted. IN_PROGRESS The sandbox phase is still in progress. STOPPED The sandbox phase stopped. SUCCEEDED The sandbox phase succeeded. TIMED_OUT The sandbox phase timed out.
*)startTime : Timestamp.t option;When the sandbox phase started, expressed in Unix time format.
*)endTime : Timestamp.t option;When the sandbox phase ended, expressed in Unix time format.
*)durationInSeconds : WrapperLong.t option;How long, in seconds, between the starting and ending times of the sandbox's phase.
*)contexts : PhaseContexts.t option;An array of PhaseContext objects.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `Structure of (string * [> `String of String_.t ]) list ] list
| `Long of WrapperLong.t
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]