Values.ChildWorkflowExecutionCanceledEventAttributesSourceProvide details of the ChildWorkflowExecutionCanceled event.
type nonrec t = {workflowExecution : WorkflowExecution.t option;The child workflow execution that was canceled.
*)workflowType : WorkflowType.t option;The type of the child workflow execution.
*)details : Data.t option;Details of the cancellation (if provided).
*)initiatedEventId : EventId.t option;The ID of the StartChildWorkflowExecutionInitiated event corresponding to the StartChildWorkflowExecution Decision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
*)startedEventId : EventId.t option;The ID of the ChildWorkflowExecutionStarted event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of EventId.t
| `String of Data.t
| `Structure of (string * [> `String of WorkflowId.t ]) list ])
list ]