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

GetEntityResponse

import type { GetEntityResponse } from "https://aws-api.deno.dev/v0.4/services/iottwinmaker.ts?docs=full";
interface GetEntityResponse {
arn: string;
components?: {
[key: string]: ComponentResponse | null | undefined;
}
| null;
creationDateTime: Date | number;
description?: string | null;
entityId: string;
entityName: string;
hasChildEntities: boolean;
parentEntityId: string;
status: Status;
syncSource?: string | null;
updateDateTime: Date | number;
workspaceId: string;
}

§Properties

§
arn: string
[src]

The ARN of the entity.

§
components?: {
[key: string]: ComponentResponse | 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.

§
creationDateTime: Date | number
[src]

The date and time when the entity was created.

§
description?: string | null
[src]

The description of the entity.

§
entityId: string
[src]

The ID of the entity.

§
entityName: string
[src]

The name of the entity.

§
hasChildEntities: boolean
[src]

A Boolean value that specifies whether the entity has associated child entities.

§
parentEntityId: string
[src]

The ID of the parent entity for this entity.

§
status: Status
[src]

The current status of the entity.

§
syncSource?: string | null
[src]

The syncSource of the sync job, if this entity was created by a sync job.

§
updateDateTime: Date | number
[src]

The date and time when the entity was last updated.

§
workspaceId: string
[src]

The ID of the workspace.