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

CodeGenEdge

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

Represents a directional edge in a directed acyclic graph (DAG).

interface CodeGenEdge {
Source: string;
Target: string;
TargetParameter?: string | null;
}

§Properties

§
Source: string
[src]

The ID of the node at which the edge starts.

§
Target: string
[src]

The ID of the node at which the edge ends.

§
TargetParameter?: string | null
[src]

The target of the edge.