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

SocketAddress

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

An IP address/port combination.

interface SocketAddress {
IpAddress?: string | null;
Port?: number | null;
}

§Properties

§
IpAddress?: string | null
[src]

The IP address for the socket address.

§
Port?: number | null
[src]

The port for the socket address.