# File lib/aws/auto_scaling/tag_collection.rb, line 97
      def _each_item next_token, limit, options = {}, &block

        options[:next_token] = next_token if next_token
        options[:max_records] = limit if limit
        options[:filters] = @filters unless @filters.empty?

        resp = client.describe_tags(options)
        resp.tags.each do |tag|
          yield(Tag.new(tag.to_hash.merge(:config => config)))
        end

        resp.data[:next_token]

      end