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

NeighborConnectionDetail

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

Details about neighboring servers.

interface NeighborConnectionDetail {
connectionsCount: number;
destinationPort?: number | null;
destinationServerId: string;
sourceServerId: string;
transportProtocol?: string | null;
}

§Properties

§
connectionsCount: number
[src]

The number of open network connections with the neighboring server.

§
destinationPort?: number | null
[src]

The destination network port for the connection.

§
destinationServerId: string
[src]

The ID of the server that accepted the network connection.

§
sourceServerId: string
[src]

The ID of the server that opened the network connection.

§
transportProtocol?: string | null
[src]

The network protocol used for the connection.