Interface LoadBalancerConfig

interface LoadBalancerConfig {
    enableGeoRouting: boolean;
    enableStickySessions: boolean;
    healthCheckInterval: number;
    strategy:
        | "round-robin"
        | "weighted"
        | "least-latency"
        | "health-based"
        | "adaptive";
}

Properties

enableGeoRouting: boolean
enableStickySessions: boolean
healthCheckInterval: number
strategy:
    | "round-robin"
    | "weighted"
    | "least-latency"
    | "health-based"
    | "adaptive"