Method: AWS::Flow::SignalWorkflowOptions#input

Defined in:
lib/aws/decider/options.rb

#inputObject

Data to attach to the ‘WorkflowExecutionSignaled` event in the target workflow execution’s history.



186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/aws/decider/options.rb', line 186

class SignalWorkflowOptions < Options
  properties(:input, :signal_name, :run_id, :workflow_id, :control, :domain)

  # Gets a hash containing the held options.
  def get_full_options
    result = {}
    SignalWorkflowOptions.held_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end
end