Class: AWS::Flow::MinimalWorkflowExecution

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(domain, workflow_id, run_id) ⇒ MinimalWorkflowExecution

Returns a new instance of MinimalWorkflowExecution.



26
27
28
29
30
# File 'lib/aws/decider/workflow_client.rb', line 26

def initialize(domain, workflow_id, run_id)
  @domain = domain
  @workflow_id = workflow_id
  @run_id = run_id
end

Instance Attribute Details

#domainObject

Returns the value of attribute domain.



25
26
27
# File 'lib/aws/decider/workflow_client.rb', line 25

def domain
  @domain
end

#run_idObject

Returns the value of attribute run_id.



25
26
27
# File 'lib/aws/decider/workflow_client.rb', line 25

def run_id
  @run_id
end

#workflow_idObject

Returns the value of attribute workflow_id.



25
26
27
# File 'lib/aws/decider/workflow_client.rb', line 25

def workflow_id
  @workflow_id
end