Class: Aws::GameLift::Types::PlacedPlayerSession
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::PlacedPlayerSession
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Information about a player session. This object contains only the player ID and player session ID. To retrieve full details on a player session, call DescribePlayerSessions with the player session ID.
Constant Summary collapse
- SENSITIVE =
[:player_id]
Instance Attribute Summary collapse
-
#player_id ⇒ String
A unique identifier for a player that is associated with this player session.
-
#player_session_id ⇒ String
A unique identifier for a player session.
Instance Attribute Details
#player_id ⇒ String
A unique identifier for a player that is associated with this player session.
8283 8284 8285 8286 8287 8288 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8283 class PlacedPlayerSession < Struct.new( :player_id, :player_session_id) SENSITIVE = [:player_id] include Aws::Structure end |
#player_session_id ⇒ String
A unique identifier for a player session.
8283 8284 8285 8286 8287 8288 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8283 class PlacedPlayerSession < Struct.new( :player_id, :player_session_id) SENSITIVE = [:player_id] include Aws::Structure end |