Class: Aws::GameLift::Types::MatchedPlayerSession
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::MatchedPlayerSession
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Represents a new player session that is created as a result of a successful FlexMatch match. A successful match automatically creates new player sessions for every player ID in the original matchmaking request.
When players connect to the match's game session, they must include both player ID and player session ID in order to claim their assigned player slot.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#player_id ⇒ String
A unique identifier for a player.
-
#player_session_id ⇒ String
A unique identifier for a player session.
Instance Attribute Details
#player_id ⇒ String
A unique identifier for a player
6296 6297 6298 6299 6300 6301 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6296 class MatchedPlayerSession < Struct.new( :player_id, :player_session_id) SENSITIVE = [] include Aws::Structure end |
#player_session_id ⇒ String
A unique identifier for a player session
6296 6297 6298 6299 6300 6301 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6296 class MatchedPlayerSession < Struct.new( :player_id, :player_session_id) SENSITIVE = [] include Aws::Structure end |