# File lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb, line 13
          def end_element(name)
            case name
            when 'EventId', 'LogicalResourceId', 'PhysicalResourceId', 'ResourceProperties', 'ResourceStatus', 'ResourceStatusReason', 'ResourceType', 'StackId', 'StackName'
              @event[name] = value
            when 'member'
              @response['StackEvents'] << @event
              @event = {}
            when 'RequestId'
              @response[name] = value
            when 'Timestamp'
              @event[name] = Time.parse(value)
            end
          end