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

Node

import type { Node } from "https://aws-api.deno.dev/v0.3/services/panorama.ts?docs=full";

An application node that represents a camera stream, a model, code, or output.

interface Node {
Category: NodeCategory;
CreatedTime: Date | number;
Description?: string | null;
Name: string;
NodeId: string;
OwnerAccount?: string | null;
PackageArn?: string | null;
PackageId: string;
PackageName: string;
PackageVersion: string;
PatchVersion: string;
}

§Properties

§

The node's category.

§
CreatedTime: Date | number
[src]

When the node was created.

§
Description?: string | null
[src]

The node's description.

§
Name: string
[src]

The node's name.

§
NodeId: string
[src]

The node's ID.

§
OwnerAccount?: string | null
[src]

The account ID of the node's owner.

§
PackageArn?: string | null
[src]

The node's ARN.

§
PackageId: string
[src]

The node's package ID.

§
PackageName: string
[src]

The node's package name.

§
PackageVersion: string
[src]

The node's package version.

§
PatchVersion: string
[src]

The node's patch version.