Class: Aws::GameLift::Types::CreatePlayerSessionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::CreatePlayerSessionInput
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:player_id]
Instance Attribute Summary collapse
-
#game_session_id ⇒ String
An identifier for the game session that is unique across all regions 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
An identifier for the game session that is unique across all regions
to add a player to. The value is always a full ARN in the following
format: For Home Region game session -
arn:aws:gamelift:<home_region>::gamesession/<fleet ID>/<ID
string>. For Remote Location game session -
arn:aws:gamelift:<home_region>::gamesession/<fleet
ID>/<location>/<ID string>.
3206 3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 3206 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 Servers does not use this data, so it can be formatted as needed for use in the game.
3206 3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 3206 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.
3206 3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 3206 class CreatePlayerSessionInput < Struct.new( :game_session_id, :player_id, :player_data) SENSITIVE = [:player_id] include Aws::Structure end |