Class: Aws::GameLift::Types::PlacedPlayerSession

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_DescribePlayerSessions.html

Constant Summary collapse

SENSITIVE =
[:player_id]

Instance Attribute Summary collapse

Instance Attribute Details

#player_idString

A unique identifier for a player that is associated with this player session.

Returns:

  • (String)


6862
6863
6864
6865
6866
6867
# File 'lib/aws-sdk-gamelift/types.rb', line 6862

class PlacedPlayerSession < Struct.new(
  :player_id,
  :player_session_id)
  SENSITIVE = [:player_id]
  include Aws::Structure
end

#player_session_idString

A unique identifier for a player session.

Returns:

  • (String)


6862
6863
6864
6865
6866
6867
# File 'lib/aws-sdk-gamelift/types.rb', line 6862

class PlacedPlayerSession < Struct.new(
  :player_id,
  :player_session_id)
  SENSITIVE = [:player_id]
  include Aws::Structure
end