class AWS::Flow::ChildWorkflowTimedOutException

Public Class Methods

new(event_id, workflow_execution, workflow_type) click to toggle source
# File lib/aws/decider/exceptions.rb, line 73
def initialize(event_id, workflow_execution, workflow_type)
  @reason = "WF exception timed out"
  @detail = detail_termination("Timed out", event_id, workflow_execution, workflow_type)

end