Method: AWS::Flow::SignalWorkflowOptions#run_id
- Defined in:
- lib/aws/decider/options.rb
#run_id ⇒ Object
The runId of the workflow execution to signal.
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 result = {} SignalWorkflowOptions.held_properties.each do |option| result[option] = self.send(option) if self.send(option) != nil && self.send(option) != "" end result end end |