# File lib/aws/simple_db/attribute.rb, line 108
      def each options = {}, &block

        resp = client.get_attributes(
          :domain_name => item.domain.name,
          :item_name => item.name,
          :attribute_names => [name],
          :consistent_read => consistent_read(options))

        resp.attributes.each do |attribute|
          yield(attribute.value)
        end

        nil

      end