用於部署函式期間的函式設定選項。
簽名:
export interface DeploymentOptions extends RuntimeOptions
擴充: RuntimeOptions
屬性
屬性 | 類型 | 說明 |
---|---|---|
省略 | 布林值 |運算式<boolean> | 若為 true,請勿部署或模擬此函式。 |
個區域 | 陣列<(類型 SUPPORTED_REGIONS)[數字] |字串 |運算式<字串>|重設值> | 應部署函式的區域。 |
時間表 | 時間表 | 排定函式的執行時間。 |
DeploymentOptions.omit
若為 true,請勿部署或模擬此函式。
簽名:
omit?: boolean | Expression<boolean>;
DeploymentOptions.regions
應部署函式的區域。
簽名:
regions?: Array<(typeof SUPPORTED_REGIONS)[number] | string | Expression<string> | ResetValue>;
DeploymentOptions.schedule
排定函式的執行時間。
簽名:
schedule?: Schedule;