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

NetworkPathComponent

import type { NetworkPathComponent } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Information about a network path component.

interface NetworkPathComponent {
ComponentId?: string | null;
ComponentType?: string | null;
Egress?: NetworkHeader | null;
Ingress?: NetworkHeader | null;
}

§Properties

§
ComponentId?: string | null
[src]

The identifier of a component in the network path.

§
ComponentType?: string | null
[src]

The type of component.

§
Egress?: NetworkHeader | null
[src]

Information about the component that comes after the current component in the network path.

§
Ingress?: NetworkHeader | null
[src]

Information about the component that comes before the current node in the network path.