class Aws::Xml::Builder

def shape_attrs(ref)

def shape_attrs(ref)
  if xmlns = ref['xmlNamespace']
    if prefix = xmlns['prefix']
      { 'xmlns:' + prefix => xmlns['uri'] }
    else
      { 'xmlns' => xmlns['uri'] }
    end
  else
    {}
  end
end