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

CreatePlayerSessionsInput

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

Represents the input for a request operation.

interface CreatePlayerSessionsInput {
GameSessionId: string;
PlayerDataMap?: {
[key: string]: string | null | undefined;
}
| null;
PlayerIds: string[];
}

§Properties

§
GameSessionId: string
[src]

A unique identifier for the game session to add players to.

§
PlayerDataMap?: {
[key: string]: string | null | undefined;
}
| null
[src]

Map of string pairs, each specifying a player ID and a set of developer-defined information related to the player. Amazon GameLift does not use this data, so it can be formatted as needed for use in the game. Any player data strings for player IDs that are not included in the PlayerIds parameter are ignored.

§
PlayerIds: string[]
[src]

List of unique identifiers for the players to be added.