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

A directed edge connecting two lineage entities.

interface Edge {
AssociationType?: AssociationEdgeType | null;
DestinationArn?: string | null;
SourceArn?: string | null;
}

§Properties

§
AssociationType?: AssociationEdgeType | null
[src]

The type of the Association(Edge) between the source and destination. For example ContributedTo, Produced, or DerivedFrom.

§
DestinationArn?: string | null
[src]

The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.

§
SourceArn?: string | null
[src]

The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.