# File lib/fog/compute/parsers/aws/get_console_output.rb, line 12
          def end_element(name)
            case name
            when 'instanceId', 'requestId'
              @response[name] = value
            when 'output'
              @response[name] = value && Base64.decode64(value)
            when 'timestamp'
              @response[name] = Time.parse(value)
            end
          end