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

Listener

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

Information about a listener.

interface Listener {
AlpnPolicy: string[];
Certificates: Certificate[];
DefaultActions: Action[];
ListenerArn?: string | null;
LoadBalancerArn?: string | null;
Port?: number | null;
Protocol?: ProtocolEnum | null;
SslPolicy?: string | null;
}

§Properties

§
AlpnPolicy: string[]
[src]

[TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN) policy.

§
Certificates: Certificate[]
[src]

[HTTPS or TLS listener] The default certificate for the listener.

§
DefaultActions: Action[]
[src]

The default actions for the listener.

§
ListenerArn?: string | null
[src]

The Amazon Resource Name (ARN) of the listener.

§
LoadBalancerArn?: string | null
[src]

The Amazon Resource Name (ARN) of the load balancer.

§
Port?: number | null
[src]

The port on which the load balancer is listening.

§
Protocol?: ProtocolEnum | null
[src]

The protocol for connections from clients to the load balancer.

§
SslPolicy?: string | null
[src]

[HTTPS or TLS listener] The security policy that defines which protocols and ciphers are supported.