Module Values.WaitStartedDetailsSource

Details about a wait operation that has started.

Sourcetype nonrec t = {
  1. duration : DurationSeconds.t option;
    (*

    The duration to wait, in seconds.

    *)
  2. scheduledEndTimestamp : ExecutionTimestamp.t option;
    (*

    The date and time when the wait operation is scheduled to complete, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
}
Sourceval make : ?duration:??? -> ?scheduledEndTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationSeconds.t | `Timestamp of ExecutionTimestamp.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