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

GameProperty

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

Set of key-value pairs that contain information about a game session. When included in a game session request, these properties communicate details to be used when setting up the new game session. For example, a game property might specify a game mode, level, or map. Game properties are passed to the game server process when initiating a new game session. For more information, see the GameLift Developer Guide.

interface GameProperty {
Key: string;
Value: string;
}

§Properties

§
Key: string
[src]

The game property identifier.

§
Value: string
[src]

The game property value.