Learn R Programming

paws.application.integration (version 0.9.0)

swf_signal_workflow_execution: 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

Description

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.

Usage

swf_signal_workflow_execution(
  domain,
  workflowId,
  runId = NULL,
  signalName,
  input = NULL
)

Arguments

domain

[required] The name of the domain containing the workflow execution to signal.

workflowId

[required] The workflowId of the workflow execution to signal.

runId

The runId of the workflow execution to signal.

signalName

[required] The name of the signal. This name must be meaningful to the target workflow.

input

Data to attach to the WorkflowExecutionSignaled event in the target workflow execution's history.