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

CreateEntityRequest

import type { CreateEntityRequest } from "https://aws-api.deno.dev/v0.4/services/iottwinmaker.ts?docs=full";
interface CreateEntityRequest {
components?: {
[key: string]: ComponentRequest | null | undefined;
}
| null;
description?: string | null;
entityId?: string | null;
entityName: string;
parentEntityId?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
workspaceId: string;
}

§Properties

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

An object that maps strings to the components in the entity. Each string in the mapping must be unique to this object.

§
description?: string | null
[src]

The description of the entity.

§
entityId?: string | null
[src]

The ID of the entity.

§
entityName: string
[src]

The name of the entity.

§
parentEntityId?: string | null
[src]

The ID of the entity's parent entity.

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

Metadata that you can use to manage the entity.

§
workspaceId: string
[src]

The ID of the workspace that contains the entity.