Class: Aws::EC2::Types::GetPasswordDataResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::GetPasswordDataResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:password_data]
Instance Attribute Summary collapse
-
#instance_id ⇒ String
The ID of the Windows instance.
-
#password_data ⇒ String
The password of the instance.
-
#timestamp ⇒ Time
The time the data was last updated.
Instance Attribute Details
#instance_id ⇒ String
The ID of the Windows instance.
38247 38248 38249 38250 38251 38252 38253 |
# File 'lib/aws-sdk-ec2/types.rb', line 38247 class GetPasswordDataResult < Struct.new( :instance_id, :timestamp, :password_data) SENSITIVE = [:password_data] include Aws::Structure end |
#password_data ⇒ String
The password of the instance. Returns an empty string if the password is not available.
38247 38248 38249 38250 38251 38252 38253 |
# File 'lib/aws-sdk-ec2/types.rb', line 38247 class GetPasswordDataResult < Struct.new( :instance_id, :timestamp, :password_data) SENSITIVE = [:password_data] include Aws::Structure end |
#timestamp ⇒ Time
The time the data was last updated.
38247 38248 38249 38250 38251 38252 38253 |
# File 'lib/aws-sdk-ec2/types.rb', line 38247 class GetPasswordDataResult < Struct.new( :instance_id, :timestamp, :password_data) SENSITIVE = [:password_data] include Aws::Structure end |