# File lib/aws/cloud_formation/stack_event_collection.rb, line 33
      def _each_item options = {}
        options[:stack_name] = stack.name
        resp = client.describe_stack_events(options)
        resp.data[:stack_events].each do |details|

          event = StackEvent.new(stack, details)

          yield(event)

        end
      end