Class: Aws::GameLift::Types::DesiredPlayerSession
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::DesiredPlayerSession
- Defined in:
- gems/aws-sdk-gamelift/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 =
[]
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. GameLift does not use this data, so it can be formatted as needed for use in the game.
3498 3499 3500 3501 3502 3503 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 3498 class DesiredPlayerSession < Struct.new( :player_id, :player_data) SENSITIVE = [] include Aws::Structure end |
#player_id ⇒ String
A unique identifier for a player to associate with the player session.
3498 3499 3500 3501 3502 3503 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 3498 class DesiredPlayerSession < Struct.new( :player_id, :player_data) SENSITIVE = [] include Aws::Structure end |