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

ClaimGameServerInput

import type { ClaimGameServerInput } from "https://aws-api.deno.dev/v0.3/services/gamelift.ts?docs=full";
interface ClaimGameServerInput {
GameServerData?: string | null;
GameServerGroupName: string;
GameServerId?: string | null;
}

§Properties

§
GameServerData?: string | null
[src]

A set of custom game server properties, formatted as a single string value. This data is passed to a game client or service when it requests information on game servers using "ListGameServers" or "ClaimGameServer".

§
GameServerGroupName: string
[src]

A unique identifier for the game server group where the game server is running. Use either the "GameServerGroup" name or ARN value. If you are not specifying a game server to claim, this value identifies where you want GameLift FleetIQ to look for an available game server to claim.

§
GameServerId?: string | null
[src]

A custom string that uniquely identifies the game server to claim. If this parameter is left empty, GameLift FleetIQ searches for an available game server in the specified game server group.