I'm trying to setup a Cloudwatch Scheduled Event and my cron expression seems to be invalid and I can't figure out why.
Example expression in the documentation:
cron(15 12 * * ? *) - Run at 12:15 pm (UTC) every day
Another example:
cron(0 18 ? * MON-FRI *) - Run at 6:00 pm (UTC) every Monday through Friday
Now, I want it to run everyday at 18 PM UTC so it seems like this would be what I want.
cron(0 18 * * ? *)
but I am getting
Parameter ScheduleExpression is not valid
Why is it not valid?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…