如何在每月最后一天的 11:30pm 将 AWS Lambda cron 安排到 运行?
How do I schedule an AWS Lambda cron to run at 11:30pm on the last day of the month?
我希望我的 Lambda 函数在每个月的最后一天 11:30pm 运行 运行。
我正在使用无服务器框架,所以我只需要正确的调度表达式 (docs here & info here)
非常感谢任何帮助。
注意:不幸的是,我不能只在月初这样做,因为依赖于从仅计算 'this month'.
数据的第 3 方工具中提取数据
来自docs:
- The L wildcard in the Day-of-month or Day-of-week fields specifies the last day of the month or week.
因此,请在本月最后一天的 11:30 下午尝试此 cron 表达式:
cron(30 23 L * ? *)
我希望我的 Lambda 函数在每个月的最后一天 11:30pm 运行 运行。
我正在使用无服务器框架,所以我只需要正确的调度表达式 (docs here & info here)
非常感谢任何帮助。
注意:不幸的是,我不能只在月初这样做,因为依赖于从仅计算 'this month'.
数据的第 3 方工具中提取数据来自docs:
- The L wildcard in the Day-of-month or Day-of-week fields specifies the last day of the month or week.
因此,请在本月最后一天的 11:30 下午尝试此 cron 表达式:
cron(30 23 L * ? *)