interface Route {
    backendId: string;
    createdAt?: Date;
    frontendId: string;
    id: string;
    match?: RouteMatch;
    updatedAt?: Date;
}

Properties

backendId: string

ID of the target backend.

createdAt?: Date

Date on which the route was created.

frontendId: string

ID of the source frontend.

id: string

Route ID.

match?: RouteMatch

Object defining the match condition for a route to be applied. If an incoming client session matches the specified condition (i.e. it has a matching SNI value or HTTP Host header value), it will be passed to the target backend.

updatedAt?: Date

Date on which the route was last updated.