Class: Aws::GameLift::Types::CreatePlayerSessionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::CreatePlayerSessionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:player_id]
Instance Attribute Summary collapse
-
#game_session_id ⇒ String
A unique identifier for the game session to add a player to.
-
#player_data ⇒ String
Developer-defined information related to a player.
-
#player_id ⇒ String
A unique identifier for a player.
Instance Attribute Details
#game_session_id ⇒ String
A unique identifier for the game session to add a player to.
2843 2844 2845 2846 2847 2848 2849 |
# File 'lib/aws-sdk-gamelift/types.rb', line 2843 class CreatePlayerSessionInput < Struct.new( :game_session_id, :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end |
#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.
2843 2844 2845 2846 2847 2848 2849 |
# File 'lib/aws-sdk-gamelift/types.rb', line 2843 class CreatePlayerSessionInput < Struct.new( :game_session_id, :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end |
#player_id ⇒ String
A unique identifier for a player. Player IDs are developer-defined.
2843 2844 2845 2846 2847 2848 2849 |
# File 'lib/aws-sdk-gamelift/types.rb', line 2843 class CreatePlayerSessionInput < Struct.new( :game_session_id, :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end |