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

OutlierDetection

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

An object that represents the outlier detection for a virtual node's listener.

interface OutlierDetection {
baseEjectionDuration: Duration;
interval: Duration;
maxEjectionPercent: number;
maxServerErrors: number;
}

§Properties

§
baseEjectionDuration: Duration
[src]

The base amount of time for which a host is ejected.

§
interval: Duration
[src]

The time interval between ejection sweep analysis.

§
maxEjectionPercent: number
[src]

Maximum percentage of hosts in load balancing pool for upstream service that can be ejected. Will eject at least one host regardless of the value.

§
maxServerErrors: number
[src]

Number of consecutive 5xx errors required for ejection.