Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PlacedPlayerSession

import type { PlacedPlayerSession } from "https://aws-api.deno.dev/v0.3/services/gamelift.ts?docs=full";

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.

Related actions

"CreatePlayerSession" | "CreatePlayerSessions" | "DescribePlayerSessions" | "StartGameSessionPlacement" | "DescribeGameSessionPlacement" | "StopGameSessionPlacement" | All APIs by task

interface PlacedPlayerSession {
PlayerId?: string | null;
PlayerSessionId?: string | null;
}

§Properties

§
PlayerId?: string | null
[src]

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

§
PlayerSessionId?: string | null
[src]

A unique identifier for a player session.