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

CreatePlayerSessionInput

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

Represents the input for a request operation.

interface CreatePlayerSessionInput {
GameSessionId: string;
PlayerData?: string | null;
PlayerId: string;
}

§Properties

§
GameSessionId: string
[src]

A unique identifier for the game session to add a player to.

§
PlayerData?: string | null
[src]

Developer-defined information related to a player. GameLift does not use this data, so it can be formatted as needed for use in the game.

§
PlayerId: string
[src]

A unique identifier for a player. Player IDs are developer-defined.