Module Values.ExecutionStartedDetailsSource

Details about a durable execution that started.

Sourcetype nonrec t = {
  1. input : EventInput.t option;
    (*

    The input payload provided for the durable execution.

    *)
  2. executionTimeout : DurationSeconds.t option;
    (*

    The maximum amount of time that the durable execution is allowed to run, in seconds.

    *)
}
Sourceval make : ?input:??? -> ?executionTimeout:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationSeconds.t | `Structure of (string * [> `Boolean of Truncated.t | `String of InputPayload.t ]) list ]) 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