@zarpay/zar-cdk-lib - v0.32.0
    Preparing search index...

    Interface TargetGroupHealthCheckProps

    Target group health check configuration.

    interface TargetGroupHealthCheckProps {
        healthyThresholdCount?: number;
        interval?: Duration;
        path?: string;
        timeout?: Duration;
        unhealthyThresholdCount?: number;
    }
    Index

    Properties

    healthyThresholdCount?: number

    Healthy threshold count.

    2
    
    interval?: Duration

    Health check interval.

    Duration.seconds(60)
    
    path?: string

    Health check path.

    '/up'
    
    timeout?: Duration

    Health check timeout.

    Duration.seconds(10)
    
    unhealthyThresholdCount?: number

    Unhealthy threshold count.

    5