创建一个Cron调度表达式AWS,触发时间为5月14日和6月18日。

huangapple go评论62阅读模式
英文:

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的观点:

英文:

You can use AWS console UI to validate the expression. It's in EventBrdige -> Rules -> Create rule. To prove Mark B's point:

创建一个Cron调度表达式AWS,触发时间为5月14日和6月18日。

huangapple
  • 本文由 发表于 2023年3月7日 04:50:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/75655713.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定