# File lib/aws/simple_db/domain_collection.rb, line 70
      def _each_item next_token, limit, options = {}

        options[:next_token] = next_token if next_token
        options[:max_number_of_domains] = limit if limit

        resp = client.list_domains(options)
        resp.data[:domain_names].each do |name|
          yield(self[name])
        end

        resp.data[:next_token]

      end