# File lib/aws/cloud_formation/stack_summary_collection.rb, line 107
      def _each_item options = {}
        next_token = nil
        begin
          
          client_opts = {}
          client_opts[:next_token] = next_token if next_token
          client_opts[:stack_status_filter] = @filters if @filters
          resp = client.list_stacks(client_opts)

          resp.stack_summaries.each do |summary|
            yield(summary.to_hash)
          end

          next_token = resp.next_token if resp.respond_to?(:next_token)

        end while next_token
      end