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)


8923
8924
8925
8926
8927
8928
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8923

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)


8923
8924
8925
8926
8927
8928
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8923

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