interface CronSchedule {
    schedule: string;
    timezone: string;
}

Properties

Properties

schedule: string

UNIX cron schedule to run job (e.g., '* * * * *').

timezone: string

Timezone for the cron schedule, in tz database format (e.g., 'Europe/Paris').