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

    Interface HetznerLoadBalancer

    Props for HtzLoadBalancer.

    Manages a Hetzner Cloud Load Balancer.

    interface HetznerLoadBalancer {
        algorithm?: LoadBalancerAlgorithm;
        labels?: Record<string, string>;
        loadBalancerType: LoadBalancerType;
        location?: Location;
        name: string;
        networkId?: number | IResolvable;
        networkZone?: NetworkZone;
        publicInterface?: boolean;
    }
    Index

    Properties

    Algorithm of the Load Balancer.

    labels?: Record<string, string>

    User-defined labels (key/value pairs) for the Resource.

    loadBalancerType: LoadBalancerType

    Type of this Load Balancer.

    location?: Location

    Location to create Load Balancer in.

    name: string

    Name of the Load Balancer.

    networkId?: number | IResolvable

    ID of the network the Load Balancer should be attached to on creation.

    networkZone?: NetworkZone

    Name of network zone.

    publicInterface?: boolean

    Enable or disable the public interface of the Load Balancer.