AWS Cron expression error: "Parameter ScheduleExpression is not valid."
AWS Cron expression error: "Parameter ScheduleExpression is not valid."
我正在尝试 运行 每周五世界标准时间下午 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 *)'),
注意额外的')'。
我正在尝试 运行 每周五世界标准时间下午 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 *)'),
注意额外的')'。