已排程函式的設定選項。
簽名:
export interface Schedule
屬性
屬性 | 類型 | 說明 |
---|---|---|
retryConfig | Schedule 重試 Config | 決定重試行為的設定。 |
時間表 | 字串 | 說明執行工作的時間表。排程可以是下列其中一種類型:1.Crontab2.類似英文的 schedule |
時區 | 字串 |重設值 | 指定要用於解讀 Schedule.schedule 的時區。這個欄位的值必須是 tz 資料庫的時區名稱。 |
Schedule.retryConfig
決定重試行為的設定。
簽名:
retryConfig?: ScheduleRetryConfig;
排定時間
說明執行工作的時間表。
排程可以是下列其中一種類型:
簽名:
schedule: string;
範例
// Crontab schedule
schedule: "0 9 * * 1"` // Every Monday at 09:00 AM
// English-like schedule
schedule: "every 5 minutes"
時間表
指定要用於解讀 Schedule.schedule 的時區。
這個欄位的值必須是 tz 資料庫的時區名稱。
簽名:
timeZone?: string | ResetValue;