Method: AWS::Flow::SignalWorkflowOptions#control
- Defined in:
- lib/aws/decider/options.rb
#control ⇒ Object
Optional data attached to the signal that can be used by the workflow execution.
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 |