Module Values.WorkflowExecutionSource

Represents a workflow execution.

Sourcetype nonrec t = {
  1. workflowId : WorkflowId.t;
    (*

    The user defined identifier associated with the workflow execution.

    *)
  2. runId : WorkflowRunId.t;
    (*

    A system-generated unique identifier for the workflow execution.

    *)
}
Sourceval context_ : string
Sourceval make : workflowId:WorkflowId.t -> runId:WorkflowRunId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkflowId.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