Class: Aws::GameLift::Types::DesiredPlayerSession
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::DesiredPlayerSession
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-gamelift/types.rb
 
Overview
Player information for use when creating player sessions using a game session placement request.
Constant Summary collapse
- SENSITIVE =
 [:player_id]
Instance Attribute Summary collapse
- 
  
    
      #player_data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Developer-defined information related to a player.
 - 
  
    
      #player_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for a player to associate with the player session.
 
Instance Attribute Details
#player_data ⇒ String
Developer-defined information related to a player. Amazon GameLift does not use this data, so it can be formatted as needed for use in the game.
      4819 4820 4821 4822 4823 4824  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 4819 class DesiredPlayerSession < Struct.new( :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end  | 
  
#player_id ⇒ String
A unique identifier for a player to associate with the player session.
      4819 4820 4821 4822 4823 4824  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 4819 class DesiredPlayerSession < Struct.new( :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end  |