# File lib/aws/core/xml/sax_handlers/nokogiri.rb, line 34
          def start_element_namespace element_name, attributes = [], *ignore

            attributes = attributes.map.inject({}) do |hash,attr|
              hash.merge(attr.localname => attr.value)
            end

            start_element(element_name, attributes)

          end