@cdk-x/hetzner
    Preparing search index...

    Interface LoadBalancerServiceHealthCheckHttp

    Additional configuration for protocol http.

    interface LoadBalancerServiceHealthCheckHttp {
        domain: string | null;
        path: string;
        response?: string;
        statusCodes?: (string | IResolvable)[];
        tls?: boolean;
    }
    Index

    Properties

    domain: string | null

    Host header to send in the HTTP request. May not contain spaces, percent or backslash symbols. Can be null, in that case no host header is sent.

    path: string

    HTTP path to use for health checks. May not contain literal spaces, use percent-encoding instead.

    response?: string

    String that must be contained in HTTP response in order to pass the health check.

    statusCodes?: (string | IResolvable)[]

    List of returned HTTP status codes in order to pass the health check. Supports the wildcards ? for exactly one character and * for multiple ones.

    tls?: boolean

    Use HTTPS for health check.