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

CreateSceneRequest

import type { CreateSceneRequest } from "https://aws-api.deno.dev/v0.4/services/iottwinmaker.ts?docs=full";
interface CreateSceneRequest {
capabilities?: string[] | null;
contentLocation: string;
description?: string | null;
sceneId: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
workspaceId: string;
}

§Properties

§
capabilities?: string[] | null
[src]

A list of capabilities that the scene uses to render itself.

§
contentLocation: string
[src]

The relative path that specifies the location of the content definition file.

§
description?: string | null
[src]

The description for this scene.

§
sceneId: string
[src]

The ID of the scene.

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

Metadata that you can use to manage the scene.

§
workspaceId: string
[src]

The ID of the workspace that contains the scene.