# File lib/aws/cloud_formation/stack_resource_summary_collection.rb, line 52 def _each_item options = {} next_token = nil begin options = {} options[:next_token] = next_token if next_token options[:stack_name] = stack.name resp = client.list_stack_resources(options) resp.stack_resource_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