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.
4924 4925 4926 4927 4928 4929 |
# File 'lib/aws-sdk-gamelift/types.rb', line 4924 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.
4924 4925 4926 4927 4928 4929 |
# File 'lib/aws-sdk-gamelift/types.rb', line 4924 class DesiredPlayerSession < Struct.new( :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end |