# File lib/aws/simple_db/attribute_collection.rb, line 173
      def put options = {}
        add = options[:add] || {}
        replace = options[:replace] || {}
        attributes = attribute_hashes(add, false)
        attributes += attribute_hashes(replace, true)
        do_put(attributes, options)
      end