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

WorkflowGraph

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

A workflow graph represents the complete workflow containing all the Glue components present in the workflow and all the directed connections between them.

interface WorkflowGraph {
Edges?: Edge[] | null;
Nodes?: Node[] | null;
}

§Properties

§
Edges?: Edge[] | null
[src]

A list of all the directed connections between the nodes belonging to the workflow.

§
Nodes?: Node[] | null
[src]

A list of the the Glue components belong to the workflow represented as nodes.