Class: AWS::Flow::SingleDecisionData

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(decision_events, replay_current_time_milliseconds, workflow_context_data) ⇒ SingleDecisionData

Returns a new instance of SingleDecisionData.



60
61
62
63
64
# File 'lib/aws/decider/history_helper.rb', line 60

def initialize(decision_events, replay_current_time_milliseconds, workflow_context_data)
  @decision_events = decision_events
  @replay_current_time_milliseconds = replay_current_time_milliseconds
  @workflow_context_data = workflow_context_data
end

Instance Attribute Details

#decision_eventsObject (readonly)

Returns the value of attribute decision_events.



59
60
61
# File 'lib/aws/decider/history_helper.rb', line 59

def decision_events
  @decision_events
end

#replay_current_time_millisecondsObject (readonly)

Returns the value of attribute replay_current_time_milliseconds.



59
60
61
# File 'lib/aws/decider/history_helper.rb', line 59

def replay_current_time_milliseconds
  @replay_current_time_milliseconds
end

#workflow_context_dataObject (readonly)

Returns the value of attribute workflow_context_data.



59
60
61
# File 'lib/aws/decider/history_helper.rb', line 59

def workflow_context_data
  @workflow_context_data
end