class AWS::Core::XML::SaxHandlers::REXML

def sax_parse xml

def sax_parse xml
  source = ::REXML::Source.new(xml)
  ::REXML::Parsers::StreamParser.new(source, self).parse
end

def tag_end name

def tag_end name
  end_element
end

def tag_start name, attrs

def tag_start name, attrs
  start_element(name, attrs)
end