英文:
create a cron schedule expression aws that triggers on 14 may and june 18
问题
cron(0 0 10 14,18 5,6 ? *)
英文:
I want to create a schedule expression that triggers on may 14 and june 18 at 10:00 am.
Is this valid?
cron(0 0 10 14,18 5,6 ? *)
答案1
得分: 4
那将运行4次:
- 5月14日
- 5月18日
- 6月14日
- 6月18日
我认为你不能使用单个cron表达式安排两个不同月份的特定日期。你需要为这两个日期创建两个cron触发器。
英文:
That's going to run 4 times:
- May 14
- May 18
- June 14
- June 18
I don't think you can schedule two specific days of different months with a single cron expression. You'll have to create two cron triggers for the two dates.
答案2
得分: 2
你可以使用AWS控制台UI来验证这个表达式。它在EventBridge -> 规则 -> 创建规则中。为了证明Mark B的观点:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论