zap-cdk
    Preparing search index...

    Interface IRequestorParameters

    Interface representing the parameters for making requests. IRequestorParameters

    interface IRequestorParameters {
        alwaysRun?: boolean;
        enabled?: boolean;
        requests: IRequest[];
        user?: string;
    }
    Index

    Properties

    alwaysRun?: boolean

    If set and the job is enabled, it will run even if the plan exits early, default: false.

    enabled?: boolean

    If set to false, the job will not be run, default: true.

    requests: IRequest[]

    A list of requests to make.

    user?: string

    Optional user for authenticated requests.