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 that was created as part of a StartGameSessionPlacement request. 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.

Player-session-related operations include:

  • CreatePlayerSession

  • CreatePlayerSessions

  • DescribePlayerSessions

  • Game session placements

    • StartGameSessionPlacement

    • DescribeGameSessionPlacement

    • StopGameSessionPlacement

Instance Attribute Summary collapse

Instance Attribute Details

#player_idString

Unique identifier for a player that is associated with this player session.

Returns:

  • (String)


4534
4535
4536
4537
4538
# File 'lib/aws-sdk-gamelift/types.rb', line 4534

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

#player_session_idString

Unique identifier for a player session.

Returns:

  • (String)


4534
4535
4536
4537
4538
# File 'lib/aws-sdk-gamelift/types.rb', line 4534

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