DeploymentOptions interface

在功能部署期间应用的功能的配置选项。

签名:

export interface DeploymentOptions extends RuntimeOptions 

扩展:运行时选项

特性

财产类型描述
忽略布尔 |表达<布尔值>如果为 true,则不要部署或模拟此功能。
地区数组 <( SUPPORTED_REGIONS类型)[数量] |字符串|表达<字符串> |重置值>应部署功能的区域。
日程日程预定功能的时间表。

部署选项.省略

如果为 true,则不要部署或模拟此功能。

签名:

omit?: boolean | Expression<boolean>;

部署选项.regions

应部署功能的区域。

签名:

regions?: Array<(typeof SUPPORTED_REGIONS)[number] | string | Expression<string> | ResetValue>;

部署选项.schedule

预定功能的时间表。

签名:

schedule?: Schedule;