Values.SignalExternalWorkflowExecutionInitiatedEventAttributesSourceProvides the details of the SignalExternalWorkflowExecutionInitiated event.
type nonrec t = {workflowId : WorkflowId.t option;The workflowId of the external workflow execution.
*)runId : WorkflowRunIdOptional.t option;The runId of the external workflow execution to send the signal to.
*)signalName : SignalName.t option;The name of the signal.
*)input : Data.t option;The input provided to the signal.
*)decisionTaskCompletedEventId : EventId.t option;The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
*)control : Data.t option;Data attached to the event that can be used by the decider in subsequent decision tasks.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Long of EventId.t | `String of WorkflowId.t ]) list ]