class AWS::SimpleWorkflow::WorkflowExecution

def parent

Returns:
  • (WorkflowExecution, nil) - Returns the parent workflow execution
def parent
  if parent = self.parent_details
    domain.workflow_executions[parent['workflowId'],parent['runId']]
  else
    nil
  end
end