Module Values.SandboxSessionPhaseSource

Contains information about the sandbox phase.

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

    The name of the sandbox phase.

    *)
  2. 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.

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

    When the sandbox phase started, expressed in Unix time format.

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

    When the sandbox phase ended, expressed in Unix time format.

    *)
  5. durationInSeconds : WrapperLong.t option;
    (*

    How long, in seconds, between the starting and ending times of the sandbox's phase.

    *)
  6. contexts : PhaseContexts.t option;
    (*

    An array of PhaseContext objects.

    *)
}
Sourceval make : ?phaseType:??? -> ?phaseStatus:??? -> ?startTime:??? -> ?endTime:??? -> ?durationInSeconds:??? -> ?contexts:??? -> unit -> t
Sourceval 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 ]
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