Run Amazon CloudWatch Event every Sunday at 10:00 am UTC - amazon-web-services

I have already read Amazon CloudWatch Events - Schedule Expressions for Rules.
Now I want to trigger an event every Sunday at 10:00 am and I am confused if this is correct?
Currently I have cron(0 10 * * SUN *) & cron(0 10 ? * SUN *)
I don't know the difference between ? & * in Cronjob. So which one is correct is confusing?
Side Note
What is the difference between rate and schedule because rate is simpler to use so I can do like rate(7 days) but I don't know when it will run?
Will it run every 7 days from the moment of deployment?

That page says:
You can't specify the Day-of-month and Day-of-week fields in the same cron expression. If you specify a value (or a *) in one of the fields, you must use a ? (question mark) in the other.
It also says:
A rate expression starts when you create the scheduled event rule, and then runs on its defined schedule.

To run every Sunday at 10:00 AM UTC,
cron(0 10 ? * SUN *) or cron(0 10 ? * 1 *)
Use ? for Day-of-month part when Day-of-week has a value(here, SUN or 1) because when you want to run only on a specific day of the week, you can't use *, you can't say run everyday. Instead, we should say run one or another day of the month, using ?, which will be every Sunday of the month because we have set Day-of-week.
Refer Schedule Expressions for all details

Related

AWS cron jobs to run every minute across a span of time across two hours?

I have a Lambda function on AWS scheduled using the following cron expression:
* 19-20 ? * SAT *
So it runs every minute from 19:00 - 20:59 on Saturdays. In reality, though, it really just needs to run from 19:50 - 20:30 on Saturdays, and my current setup is costing me money for no good reason. Is there any way to specify that with a cron expression (or is there another AWS scheduling mechanism I could use to accomplish this)?
I think you have to split it to two expressions:
From 19:50-19:59:
50/1 19 ? * SAT *
From 20:00-20:30:
0-30/1 20 ? * SAT *

Cloud scheduler trigger on the first monday of each month

I'm trying to schedule a job to trigger on the first Monday of each month:
This is the cron expression I got: 0 5 1-7 * 1
(which ,as far as I can read unix cron expressions, triggers at 5:00 am on Monday if it happens to be in the first 7 days of the month)
However the job is triggered on what seems to be random days at 5:00 am. the job was triggered today on the 16 of Aug!
Am I reading the expression awfully wrong? BTW, I'm setting the timezone to be on AEST, if that makes difference.
You can use the legacy cron syntax to describe the schedule.
For your case, specify something like below:
"first monday of month 05:00"
Do explore the "Custom interval" tab in the provided link, to get better understanding on this.

AWS SAM Parameter ScheduleExpression is not valid when adding day of week

I am making a CloudWatch event and I need it to run every Friday at 11pm UTC. I attempted to turn this on by doing cron(0 23 * * FRI *) which according to all documentation I could find, is perfectly correct syntax. However it was failing every time I tried to deploy it.
I found the issue was that if you set a day of the week specifically, then you can not set the third parameter to * it needs to be set to ?. This makes logic sense because the third parameter is Day of Month and so you can't have it run every day of the month AND every Friday. Updating to
cron(0 23 ? * FRI *) solved the problem for me.
An important and I suppose obvious note when setting cron values: Think about how each value affects the other values you've set. Does each one make logical sense in conjunction with the others?

Configure a cron schedule for different intervals (hour and days)

Hello I am configuring jobs in GCP following the google cloud guide: https://cloud.google.com/scheduler/docs/configuring/cron-job-schedules?&_ga=2.226390674.-907001748.1582817924#defining_the_job_schedule
I have to configure a job which will be executed once on weekdays at 6am and once on weekends at 5am. I am not pretty sure if it is possible to configure this for several intervals of time with something like an and statment:
0 5 * * 1-5 # monday to friday 5 am.
0 6 * * 6,0 # saturday and sunday 5 am.
In what way I can combine this intervals, besides that I need to add others ones but I am not pretty sure how can I do this.
Thanks.
You can't combine them in one record. The times do not match on any way. Of course if you have more jobs this eventually can be possible (depend on intervals)

AWS cloudwatch cron event

I want to setup a cloudwatch event which will get triggered in every X minutes, but should not be triggered at 0th minute. ie it should be triggered at current time+X minutes, 2X minutes, 3X minutes etc. How can i do that.
Update: i had done setting up cloudwatch event, my only problem is crone expression. I want to get a cron expression which can schedule the event which start from 23rd minutes from the current time and at every 23rd minutes thereafter.
0/23 * * * ? * doesnt work because it gets triggered at 0th minute
23/23 * * * ? * doesnt work because 1st event may not be 23rd minutes apart from current time
Jay,
You'll need to setup cloudwatch event for this. Here's the link to it. You can further look at the cron expression using this link. And, you can build the cron expression online using this link.
The above mention links should fulfill your requirements.
Let me know if you need any further help. Thanks!
UPDATE:
As per your comments, following cron expression should fulfill your requirements. You can check by pasting this expression here.
0 23/23 * * * ? *
I think that you just want the events to be triggered at every :23 and :46 minutes.
Here should be the correct cron expression:
23,46 * * * ? *