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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#player_idString

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

Returns:

  • (String)


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_idString

A unique identifier for a player session.

Returns:

  • (String)


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