interface Frontend {
    backend?: Backend;
    certificate?: LB.v1.Certificate;
    certificateIds: string[];
    createdAt?: Date;
    enableHttp3: boolean;
    id: string;
    inboundPort: number;
    lb?: Lb;
    name: string;
    timeoutClient?: string;
    updatedAt?: Date;
}

Properties

backend?: Backend

Backend object the frontend is attached to.

certificate?: LB.v1.Certificate

Certificate, deprecated in favor of certificate_ids array.

certificateIds: string[]

List of SSL/TLS certificate IDs to bind to the frontend.

createdAt?: Date

Date on which the frontend was created.

enableHttp3: boolean

Defines whether to enable HTTP/3 protocol on the frontend.

id: string

Frontend ID.

inboundPort: number

Port the frontend listens on.

lb?: Lb

Load Balancer object the frontend is attached to.

name: string

Name of the frontend.

timeoutClient?: string

Maximum allowed inactivity time on the client side.

updatedAt?: Date

Date on which the frontend was last updated.