Class: AWS::Flow::WorkflowDefaults
- Defined in:
- lib/aws/decider/options.rb
Overview
Defaults for WorkflowOptions
Instance Method Summary collapse
-
#child_policy ⇒ Object
The default child workflow policy.
- #data_converter ⇒ Object
-
#tag_list ⇒ Object
Returns a list of tags (currently an empty array).
-
#task_start_to_close_timeout ⇒ Object
The default task start-to-close timeout duration.
Methods inherited from Defaults
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class AWS::Flow::Defaults
Instance Method Details
#child_policy ⇒ Object
The default child workflow policy
265 |
# File 'lib/aws/decider/options.rb', line 265 def child_policy; :TERMINATE; end |
#data_converter ⇒ Object
270 |
# File 'lib/aws/decider/options.rb', line 270 def data_converter; FlowConstants.default_data_converter; end |
#tag_list ⇒ Object
Returns a list of tags (currently an empty array).
268 |
# File 'lib/aws/decider/options.rb', line 268 def tag_list; []; end |
#task_start_to_close_timeout ⇒ Object
The default task start-to-close timeout duration.
262 |
# File 'lib/aws/decider/options.rb', line 262 def task_start_to_close_timeout; 30; end |