You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SWF::Types::SignalWorkflowExecutionInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SignalWorkflowExecutionInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  domain: "DomainName", # required
  workflow_id: "WorkflowId", # required
  run_id: "WorkflowRunIdOptional",
  signal_name: "SignalName", # required
  input: "Data",
}

Instance Attribute Summary collapse

Instance Attribute Details

#domainString

The name of the domain containing the workflow execution to signal.

Returns:

  • (String)

    The name of the domain containing the workflow execution to signal.

#inputString

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

Returns:

  • (String)

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

#run_idString

The runId of the workflow execution to signal.

Returns:

  • (String)

    The runId of the workflow execution to signal.

#signal_nameString

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

Returns:

  • (String)

    The name of the signal.

#workflow_idString

The workflowId of the workflow execution to signal.

Returns:

  • (String)

    The workflowId of the workflow execution to signal.