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

Edge

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

An edge represents a directed connection between two components on a workflow graph.

interface Edge {
DestinationId?: string | null;
SourceId?: string | null;
}

§Properties

§
DestinationId?: string | null
[src]

The unique of the node within the workflow where the edge ends.

§
SourceId?: string | null
[src]

The unique of the node within the workflow where the edge starts.