interface RouteStage {
    createdAt?: Date;
    id: string;
    pipelineId: string;
    updatedAt?: Date;
    wafStageId?: string;
}

Properties

createdAt?: Date

Date the route stage was created.

id: string

ID of the route stage.

pipelineId: string

Pipeline ID the route stage belongs to.

updatedAt?: Date

Date the route stage was last updated.

wafStageId?: string

ID of the WAF stage HTTP requests should be forwarded to when no rules are matched.

One-of ('next'): at most one of 'wafStageId' could be set.