Class: Aws::SWF::Types::SignalWorkflowExecutionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::SignalWorkflowExecutionInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass SignalWorkflowExecutionInput data as a hash:
{
domain: "DomainName", # required
workflow_id: "WorkflowId", # required
run_id: "WorkflowRunIdOptional",
signal_name: "SignalName", # required
input: "Data",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain containing the workflow execution to signal.
-
#input ⇒ String
Data to attach to the ‘WorkflowExecutionSignaled` event in the target workflow execution’s history.
-
#run_id ⇒ String
The runId of the workflow execution to signal.
-
#signal_name ⇒ String
The name of the signal.
-
#workflow_id ⇒ String
The workflowId of the workflow execution to signal.
Instance Attribute Details
#domain ⇒ String
The name of the domain containing the workflow execution to signal.
5381 5382 5383 5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-swf/types.rb', line 5381 class SignalWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id, :signal_name, :input) SENSITIVE = [] include Aws::Structure end |
#input ⇒ String
Data to attach to the ‘WorkflowExecutionSignaled` event in the target workflow execution’s history.
5381 5382 5383 5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-swf/types.rb', line 5381 class SignalWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id, :signal_name, :input) SENSITIVE = [] include Aws::Structure end |
#run_id ⇒ String
The runId of the workflow execution to signal.
5381 5382 5383 5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-swf/types.rb', line 5381 class SignalWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id, :signal_name, :input) SENSITIVE = [] include Aws::Structure end |
#signal_name ⇒ String
The name of the signal. This name must be meaningful to the target workflow.
5381 5382 5383 5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-swf/types.rb', line 5381 class SignalWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id, :signal_name, :input) SENSITIVE = [] include Aws::Structure end |
#workflow_id ⇒ String
The workflowId of the workflow execution to signal.
5381 5382 5383 5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-swf/types.rb', line 5381 class SignalWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id, :signal_name, :input) SENSITIVE = [] include Aws::Structure end |