Class: AWS::CloudFormation::StackEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/aws/cloud_formation/stack_event.rb

Overview

Stack Event

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

Instance Attribute Summary collapse

Instance Attribute Details

#event_idString (readonly)



39
40
41
# File 'lib/aws/cloud_formation/stack_event.rb', line 39

def event_id
  @event_id
end

#logical_resource_idString (readonly)



43
44
45
# File 'lib/aws/cloud_formation/stack_event.rb', line 43

def logical_resource_id
  @logical_resource_id
end

#physical_resource_idString (readonly)



47
48
49
# File 'lib/aws/cloud_formation/stack_event.rb', line 47

def physical_resource_id
  @physical_resource_id
end

#resource_propertiesString (readonly)



50
51
52
# File 'lib/aws/cloud_formation/stack_event.rb', line 50

def resource_properties
  @resource_properties
end

#resource_statusSymbol (readonly)



53
54
55
# File 'lib/aws/cloud_formation/stack_event.rb', line 53

def resource_status
  @resource_status
end

#resource_status_reasonString? (readonly)



57
58
59
# File 'lib/aws/cloud_formation/stack_event.rb', line 57

def resource_status_reason
  @resource_status_reason
end

#resource_typeString (readonly)



60
61
62
# File 'lib/aws/cloud_formation/stack_event.rb', line 60

def resource_type
  @resource_type
end

#stackStack (readonly)



36
37
38
# File 'lib/aws/cloud_formation/stack_event.rb', line 36

def stack
  @stack
end

#stack_idString (readonly)



63
64
65
# File 'lib/aws/cloud_formation/stack_event.rb', line 63

def stack_id
  @stack_id
end

#stack_nameString (readonly)



66
67
68
# File 'lib/aws/cloud_formation/stack_event.rb', line 66

def stack_name
  @stack_name
end

#timestampTime (readonly)



69
70
71
# File 'lib/aws/cloud_formation/stack_event.rb', line 69

def timestamp
  @timestamp
end