Databricks SDK for JavaScript
    Preparing search index...
    interface CronSchedule {
        pauseStatus?: SchedulePauseStatus;
        quartzCronExpression?: string;
        sqlCondition?: SqlConditionConfiguration;
        timezoneId?: string;
    }
    Index

    Properties

    pauseStatus?: SchedulePauseStatus

    Indicate whether this schedule is paused or not.

    quartzCronExpression?: string

    A Cron expression using Quartz syntax that describes the schedule for a job. See Cron Trigger for details. This field is required.

    SQL condition that must be satisfied before a scheduled run is triggered. The condition is evaluated after the cron expression fires and must return a truthy result for the run to proceed.

    timezoneId?: string

    A Java timezone ID. The schedule for a job is resolved with respect to this timezone. See Java TimeZone for details. This field is required.