class AWS::CloudFormation::StackEventCollection

def _each_item options = {}

def _each_item options = {}
  options[:stack_name] = stack.name
  resp = client.describe_stack_events(options)
  resp.stack_events.each do |details|
    event = StackEvent.new(stack, details.to_hash)
    yield(event)
  end
end

def initialize stack, options = {}

Parameters:
  • options (Hash) --
  • stack (Stack) --
def initialize stack, options = {}
  @stack = stack
  super
end