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.3/services/appmesh.ts?docs=full";

An object that represents a listener for a virtual node.

interface Listener {
connectionPool?: VirtualNodeConnectionPool | null;
healthCheck?: HealthCheckPolicy | null;
outlierDetection?: OutlierDetection | null;
portMapping: PortMapping;
timeout?: ListenerTimeout | null;
tls?: ListenerTls | null;
}

§Properties

§
connectionPool?: VirtualNodeConnectionPool | null
[src]

The connection pool information for the listener.

§
healthCheck?: HealthCheckPolicy | null
[src]

The health check information for the listener.

§
outlierDetection?: OutlierDetection | null
[src]

The outlier detection information for the listener.

§
portMapping: PortMapping
[src]

The port mapping information for the listener.

§
timeout?: ListenerTimeout | null
[src]

An object that represents timeouts for different protocols.

§
tls?: ListenerTls | null
[src]

A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.