获取参数 ScheduleExpression 在 aws lambda 上无效?
Getting Parameter ScheduleExpression is not valid on aws lambda?
我想在每周四的 运行 安排工作,但是当我使用它时出现错误。
我正在使用的 Cron 表达式:
"Events": {
"UsedForCorn": {
"Type": "Schedule",
"Properties": {
"Schedule": "corn(0 20 ? * 5 *)"
}
}
}
我收到以下错误:
CREATE_FAILED Parameter ScheduleExpression is not valid. (Service: AmazonCloudWatchEvents; Status Code: 400; Error Code: ValidationException; Request ID: f9186d09-3e27-43db-a58a-5f5288deaa56; Proxy: null)
您的 Schedule
值有错字。您使用 corn
而不是 cron
。
"Events": {
"UsedForCorn": {
"Type": "Schedule",
"Properties": {
"Schedule": "cron(0 20 ? * 5 *)"
}
}
}
我想在每周四的 运行 安排工作,但是当我使用它时出现错误。
我正在使用的 Cron 表达式:
"Events": {
"UsedForCorn": {
"Type": "Schedule",
"Properties": {
"Schedule": "corn(0 20 ? * 5 *)"
}
}
}
我收到以下错误:
CREATE_FAILED Parameter ScheduleExpression is not valid. (Service: AmazonCloudWatchEvents; Status Code: 400; Error Code: ValidationException; Request ID: f9186d09-3e27-43db-a58a-5f5288deaa56; Proxy: null)
您的 Schedule
值有错字。您使用 corn
而不是 cron
。
"Events": {
"UsedForCorn": {
"Type": "Schedule",
"Properties": {
"Schedule": "cron(0 20 ? * 5 *)"
}
}
}