Class: Aws::EC2::Types::GetConsoleOutputResult

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Contains the output of GetConsoleOutput.

Instance Attribute Summary collapse

Instance Attribute Details

#instance_idString

The ID of the instance.

Returns:

  • (String)


12978
12979
12980
12981
12982
12983
# File 'lib/aws-sdk-ec2/types.rb', line 12978

class GetConsoleOutputResult < Struct.new(
  :instance_id,
  :output,
  :timestamp)
  include Aws::Structure
end

#outputString

The console output, Base64-encoded. If using a command line tool, the tool decodes the output for you.

Returns:

  • (String)


12978
12979
12980
12981
12982
12983
# File 'lib/aws-sdk-ec2/types.rb', line 12978

class GetConsoleOutputResult < Struct.new(
  :instance_id,
  :output,
  :timestamp)
  include Aws::Structure
end

#timestampTime

The time the output was last updated.

Returns:

  • (Time)


12978
12979
12980
12981
12982
12983
# File 'lib/aws-sdk-ec2/types.rb', line 12978

class GetConsoleOutputResult < Struct.new(
  :instance_id,
  :output,
  :timestamp)
  include Aws::Structure
end