# File lib/aws/simple_db/attribute_collection.rb, line 200
      def to_h options = {}
        hash = {}
        each_value(options) do |attribute_name,attribute_value|
          hash[attribute_name] ||= []
          hash[attribute_name] << attribute_value
        end
        hash
      end