Documentation
    Preparing search index...

    Interface RouteEvaluationResult

    Outcome of evaluating a route request against RBAC policies.

    interface RouteEvaluationResult {
        allowed: boolean;
        decision: AccessDecision;
        isThrottled: boolean;
        matchedRule?: RouteRule;
        reason?: string;
        tarpitDelayMs: number;
    }
    Index

    Properties

    allowed: boolean

    Whether access is granted

    decision: AccessDecision

    Final decision ('allow' or 'deny')

    isThrottled: boolean

    Whether the subject is currently throttled / rate-limited

    matchedRule?: RouteRule

    Matching route rule that determined the outcome, if any

    reason?: string

    Human-readable explanation

    tarpitDelayMs: number

    Delay (in ms) to be injected via tarpitting