# File lib/aws/dynamo_db/batch_write.rb, line 215
      def convert_put_item item

        attributes = {}
        item.each_pair do |name,value|
          attributes[name] = str2sym(value)
        end

        { :put_request => { :item => attributes }}

      end