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

UpdateEntityRequest

import type { UpdateEntityRequest } from "https://aws-api.deno.dev/v0.4/services/iottwinmaker.ts?docs=full";
interface UpdateEntityRequest {
componentUpdates?: {
[key: string]: ComponentUpdateRequest | null | undefined;
}
| null;
description?: string | null;
entityId: string;
entityName?: string | null;
parentEntityUpdate?: ParentEntityUpdateRequest | null;
workspaceId: string;
}

§Properties

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

An object that maps strings to the component updates in the request. Each string in the mapping must be unique to this object.

§
description?: string | null
[src]

The description of the entity.

§
entityId: string
[src]

The ID of the entity.

§
entityName?: string | null
[src]

The name of the entity.

§
parentEntityUpdate?: ParentEntityUpdateRequest | null
[src]

An object that describes the update request for a parent entity.

§
workspaceId: string
[src]

The ID of the workspace that contains the entity.