无服务器 AWS 计划:ScheduleExpression 无效
Serverless AWS schedule : ScheduleExpression is not valid
在无服务器 yml 配置中,这是有效的
events:
- schedule: rate(24 hours)
但是,这不是
`events:
- schedule: cron(0 0 * * * *)`
也不是这个
`events:
- schedule:
rate : cron(0 0 * * * *)`
day-of-month
或 day-of-week
必须是问号。
在你的情况下哪个并不重要。使用以下表达式应该适用于您的情况:0 0 * * ? *
.
有关 cronschedules 的更多信息和示例,请参阅 CloudWatch Events documentation。你的具体情况实际上在那里提到了。
在无服务器 yml 配置中,这是有效的
events:
- schedule: rate(24 hours)
但是,这不是
`events:
- schedule: cron(0 0 * * * *)`
也不是这个
`events:
- schedule:
rate : cron(0 0 * * * *)`
day-of-month
或 day-of-week
必须是问号。
在你的情况下哪个并不重要。使用以下表达式应该适用于您的情况:0 0 * * ? *
.
有关 cronschedules 的更多信息和示例,请参阅 CloudWatch Events documentation。你的具体情况实际上在那里提到了。