Module Values.DescribeExecutionRequestSource

You can use DescribeExecution to check the details of the execution of the specified workflow. This API call only returns details for in-progress workflows. If you provide an ID for an execution that is not in progress, or if the execution doesn't match the specified workflow ID, you receive a ResourceNotFound exception.

Sourcetype nonrec t = {
  1. executionId : ExecutionId.t;
    (*

    A unique identifier for the execution of a workflow.

    *)
  2. workflowId : WorkflowId.t;
    (*

    A unique identifier for the workflow.

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