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

CreateStageRequest

import type { CreateStageRequest } from "https://aws-api.deno.dev/v0.4/services/gamesparks.ts?docs=full";
interface CreateStageRequest {
ClientToken?: string | null;
Description?: string | null;
GameName: string;
Role: string;
StageName: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ClientToken?: string | null
[src]

A client-defined token. With an active client token in the request, this action is idempotent.

§
Description?: string | null
[src]

The description of the stage.

§
GameName: string
[src]

The name of the game.

§
Role: string
[src]

The Amazon Resource Name (ARN) of the role to run the game with. This role can be a game-defined role or the default role that GameSparks created.

§
StageName: string
[src]

The name of the stage.

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

The list of tags to apply to the stage.