AWS Cron 表达式错误:"Parameter ScheduleExpression is not valid."



我试图在UTC每周五下午18点运行lambda:

new Rule (this, 'lambda', {
schedule: Schedule.expression('cron(0 18 ? * FRI *'),
targets: [lambdaTarget],
})

但收到错误";参数ScheduleExpression无效">

这个表达有什么问题?

假设问题中没有拼写错误。

schedule: Schedule.expression('cron(0 18 ? * FRI *'),

应该是

schedule: Schedule.expression('cron(0 18 ? * FRI *)'),

注意额外的"("。

相关内容

  • 没有找到相关文章

最新更新