Records a WorkflowExecutionSignaled
event in the workflow execution history and creates a decision task for the workflow execution identified by the given domain, workflowId and runId. The event is recorded with the specified user defined signalName and input (if provided).
See https://www.paws-r-sdk.com/docs/swf_signal_workflow_execution/ for full documentation.
swf_signal_workflow_execution(
domain,
workflowId,
runId = NULL,
signalName,
input = NULL
)
[required] The name of the domain containing the workflow execution to signal.
[required] The workflowId of the workflow execution to signal.
The runId of the workflow execution to signal.
[required] The name of the signal. This name must be meaningful to the target workflow.
Data to attach to the WorkflowExecutionSignaled
event in the target
workflow execution's history.