Class: AWS::Flow::WorkflowOptions

Inherits:
Options
  • Object
show all
Defined in:
lib/aws/decider/options.rb

Overview

Options for workflows.

Instance Attribute Summary collapse

Attributes included from Utilities::UpwardLookups

#precursors

Attributes included from Utilities::UpwardLookups::InstanceMethods

#precursors

Instance Method Summary collapse

Methods inherited from Options

#get_options, inherited, #initialize, #method_missing

Methods included from Utilities::UpwardLookups

#held_properties, #properties, #property

Methods included from Utilities::UpwardLookups::InstanceMethods

#look_upwards

Constructor Details

This class inherits a constructor from AWS::Flow::Options

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class AWS::Flow::Options

Instance Attribute Details

#child_policyObject

The optional policy to use for the child workflow executions when a workflow execution of this type is terminated, by calling the ‘TerminateWorkflowExecution` action explicitly or due to an expired timeout.

This can be overridden when starting a workflow execution using AWS::Flow::WorkflowClient#start_execution or the ‘StartChildWorkflowExecution` decision.

The supported child policies are:

  • ‘TERMINATE`: the child executions will be terminated.

  • ‘REQUEST_CANCEL`: a request to cancel will be attempted for each child

    execution by recording a `WorkflowExecutionCancelRequested` event in its
    history. It is up to the decider to take appropriate actions when it
    receives an execution history with this event.
    
  • ‘ABANDON`: no action will be taken. The child executions will continue to run.

The default is ‘TERMINATE`.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#execution_methodObject

Options for workflows.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#execution_start_to_close_timeoutObject

The optional maximum duration, specified when registering the workflow type, for executions of this workflow type.

This default can be overridden when starting a workflow execution using AWS::Flow::WorkflowClient#start_execution or with the ‘StartChildWorkflowExecution` decision.

The valid values are integers greater than or equal to zero. An integer value can be used to specify the duration in seconds while ‘NONE` can be used to specify unlimited duration.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#inputObject

A string of up to 32768 characters to be provided to the workflow execution. This will be received in the decider when polling for decision tasks.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#tag_listObject

The list of tags to associate with the child workflow execution.

A maximum of five tags can be specified. You can list workflow executions with a specific tag by calling [AWS::SimpleWorkflow::Client#list_open_workflow_executions](docs.aws.amazon.com/AWSRubySDK/latest/AWS/SimpleWorkflow/Client.html#list_open_workflow_executions-instance_method) or [AWS::SimpleWorkflow::Client#list_closed_workflow_executions](docs.aws.amazon.com/AWSRubySDK/latest/AWS/SimpleWorkflow/Client.html#list_closed_workflow_executions-instance_method) and specifying a tag to filter on.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#task_listObject

The optional task list, specified when registering the workflow type, for decisions tasks scheduled for workflow executions of this type.

This default can be overridden when starting a workflow execution using AWS::Flow::WorkflowClient#start_execution or the ‘StartChildWorkflowExecution` decision.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#task_start_to_close_timeoutObject

The optional maximum duration, specified when registering the workflow type, that a decision task for executions of this workflow type might take before returning completion or failure.

If the task does not close in the specified time, then the task is automatically timed out and rescheduled. If the decider eventually reports a completion or failure, it is ignored. This default can be overridden when starting a workflow execution using AWS::Flow::WorkflowClient#start_execution or the ‘StartChildWorkflowExecution` decision.

The valid values are integers greater than or equal to 0. An integer value can be used to specify the duration in seconds while ‘NONE` can be used to specify unlimited duration. The default is `30`.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#versionObject

A string that represents the version of the workflow. This can be any alphanumeric string. If you update any of the other options, you must also update the version.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

#workflow_idObject

Required. The workflow ID of the workflow execution. The workflow ID must follow these rules:

  • The specified string must not start or end with whitespace.

  • It must not contain a ‘:` (colon), `/` (slash), `|` (vertical bar), or any control characters (`u0000`-`u001f` | `u007f`-`u009f`).

  • It must not contain the literal string “arn”.



456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/aws/decider/options.rb', line 456

class WorkflowOptions < Options

  properties(
    :version,
    :input,
    :workflow_id,
    :execution_start_to_close_timeout,
    :task_start_to_close_timeout,
    :task_list,
    :execution_method
  )

  property(:tag_list, [])
  property(:child_policy, [lambda(&:to_s), lambda(&:upcase)])
  property(:data_converter, [])

  default_classes << WorkflowDefaults.new

  def get_full_options
    result = {}
    usable_properties = self.class.held_properties
    usable_properties.delete(:from_class)
    usable_properties.each do |option|
      result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
    end
    result
  end

end

Instance Method Details

#get_full_optionsObject



474
475
476
477
478
479
480
481
482
# File 'lib/aws/decider/options.rb', line 474

def get_full_options
  result = {}
  usable_properties = self.class.held_properties
  usable_properties.delete(:from_class)
  usable_properties.each do |option|
    result[option] = self.send(option) if self.send(option) != nil && self.send(option) != ""
  end
  result
end