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

Endpoint

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

Represents the information required for client programs to connect to the endpoint for a DAX cluster.

interface Endpoint {
Address?: string | null;
Port?: number | null;
URL?: string | null;
}

§Properties

§
Address?: string | null
[src]

The DNS hostname of the endpoint.

§
Port?: number | null
[src]

The port number that applications should use to connect to the endpoint.

§
URL?: string | null
[src]

The URL that applications should use to connect to the endpoint. The default ports are 8111 for the "dax" protocol and 9111 for the "daxs" protocol.