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/glue.ts?docs=full";

A node represents an Glue component (trigger, crawler, or job) on a workflow graph.

interface Node {
CrawlerDetails?: CrawlerNodeDetails | null;
JobDetails?: JobNodeDetails | null;
Name?: string | null;
TriggerDetails?: TriggerNodeDetails | null;
Type?: NodeType | null;
UniqueId?: string | null;
}

§Properties

§
CrawlerDetails?: CrawlerNodeDetails | null
[src]

Details of the crawler when the node represents a crawler.

§
JobDetails?: JobNodeDetails | null
[src]

Details of the Job when the node represents a Job.

§
Name?: string | null
[src]

The name of the Glue component represented by the node.

§
TriggerDetails?: TriggerNodeDetails | null
[src]

Details of the Trigger when the node represents a Trigger.

§
Type?: NodeType | null
[src]

The type of Glue component represented by the node.

§
UniqueId?: string | null
[src]

The unique Id assigned to the node within the workflow.