zap-cdk
    Preparing search index...

    Interface IDelay

    IDelay Represents a delay configuration in the execution plan.

    interface IDelay {
        alwaysRun?: boolean;
        enabled?: boolean;
        parameters: IDelayParameters;
        type: "delay";
    }
    Index

    Properties

    alwaysRun?: boolean

    If set and the job is enabled, then 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.

    parameters: IDelayParameters

    The parameters for the delay configuration.

    type: "delay"

    Indicates that this is a delay action.