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

PortOverride

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

Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.

For more information, see Overriding listener ports in the Global Accelerator Developer Guide.

interface PortOverride {
EndpointPort?: number | null;
ListenerPort?: number | null;
}

§Properties

§
EndpointPort?: number | null
[src]

The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.

§
ListenerPort?: number | null
[src]

The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.