Class: Aws::EC2::Types::GetConsoleOutputResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::GetConsoleOutputResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_id ⇒ String
The ID of the instance.
-
#output ⇒ String
The console output, base64-encoded.
-
#timestamp ⇒ Time
The time at which the output was last updated.
Instance Attribute Details
#instance_id ⇒ String
The ID of the instance.
33924 33925 33926 33927 33928 33929 33930 |
# File 'lib/aws-sdk-ec2/types.rb', line 33924 class GetConsoleOutputResult < Struct.new( :instance_id, :output, :timestamp) SENSITIVE = [] include Aws::Structure end |
#output ⇒ String
The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.
33924 33925 33926 33927 33928 33929 33930 |
# File 'lib/aws-sdk-ec2/types.rb', line 33924 class GetConsoleOutputResult < Struct.new( :instance_id, :output, :timestamp) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
The time at which the output was last updated.
33924 33925 33926 33927 33928 33929 33930 |
# File 'lib/aws-sdk-ec2/types.rb', line 33924 class GetConsoleOutputResult < Struct.new( :instance_id, :output, :timestamp) SENSITIVE = [] include Aws::Structure end |