You can get stack events from a {Stack} object.
stack = cfm.stacks['stack-name'] stack.events.each do |event| puts "#{event.timestamp}: #{event.resource_status}" end
@return [String] #event_id The unique ID of this event.
@return [String] The logical name of the resource specified
in the template.
@return [String] The name or unique identifier associated with the
physical instance of the resource.
@return [String] BLOB of the properties used to create the resource.
@return [Symbol] Current status of the resource.
@return [String,nil] Success/failure message associated with the
resource.
@return [String] Type of the resource (e.g. 'AWS::EC2::Instance').
@return [Stack] stack The stack this event belongs to.
@return [String] The unique ID name of the instance of the stack.
@return [String] The name associated with a stack.
@return [Time] When the status was last updated.
@private
# File lib/aws/cloud_formation/stack_event.rb, line 30 def initialize stack, details @stack = stack details.each_pair do |attr_name,attr_value| instance_variable_set("@#{attr_name}", attr_value) end end