Databricks SDK for JavaScript
    Preparing search index...

    Interface CronTriggerConfiguration

    Cron schedule trigger. Stripped-down counterpart to CronSchedule: pause_status and sql_condition are owned by the enclosing TriggerConfiguration and intentionally omitted here.

    interface CronTriggerConfiguration {
        quartzCronExpression?: string;
        timezoneId?: string;
    }
    Index

    Properties

    quartzCronExpression?: string

    A Cron expression using Quartz syntax that describes the schedule for this trigger. See Cron Trigger for details.

    timezoneId?: string

    A Java timezone ID. The schedule is resolved with respect to this timezone. See Java TimeZone for details.