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)


6862
6863
6864
6865
6866
6867
# File 'gems/aws-sdk-gamelift/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 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6862

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