Class: Aws::GameLift::Types::InstanceCredentials
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::InstanceCredentials
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-gamelift/types.rb
 
Overview
A set of credentials that allow remote access to an instance in an EC2 managed fleet. These credentials are returned in response to a call to GetInstanceAccess, which requests access for instances that are running game servers with the Amazon GameLift server SDK version 4.x or earlier.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #secret  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Secret string.
 - 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A user name for logging in.
 
Instance Attribute Details
#secret ⇒ String
Secret string. For Windows instances, the secret is a password for use with Windows Remote Desktop. For Linux instances, it’s a private key for use with SSH.
      6982 6983 6984 6985 6986 6987  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 6982 class InstanceCredentials < Struct.new( :user_name, :secret) SENSITIVE = [] include Aws::Structure end  | 
  
#user_name ⇒ String
A user name for logging in.
      6982 6983 6984 6985 6986 6987  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 6982 class InstanceCredentials < Struct.new( :user_name, :secret) SENSITIVE = [] include Aws::Structure end  |