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

StartMatchmakingInput

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

Represents the input for a request operation.

interface StartMatchmakingInput {
ConfigurationName: string;
Players: Player[];
TicketId?: string | null;
}

§Properties

§
ConfigurationName: string
[src]

Name of the matchmaking configuration to use for this request. Matchmaking configurations must exist in the same Region as this request. You can use either the configuration name or ARN value.

§
Players: Player[]
[src]

Information on each player to be matched. This information must include a player ID, and may contain player attributes and latency data to be used in the matchmaking process. After a successful match, Player objects contain the name of the team the player is assigned to.

§
TicketId?: string | null
[src]

A unique identifier for a matchmaking ticket. If no ticket ID is specified here, Amazon GameLift will generate one in the form of a UUID. Use this identifier to track the matchmaking ticket status and retrieve match results.