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.
      38297 38298 38299 38300 38301 38302 38303  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 38297 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.
      38297 38298 38299 38300 38301 38302 38303  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 38297 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.
      38297 38298 38299 38300 38301 38302 38303  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 38297 class GetPasswordDataResult < Struct.new( :instance_id, :timestamp, :password_data) SENSITIVE = [:password_data] include Aws::Structure end  |