I need to make a job run 42 times in intervals of 10 minutes. I will be doing this using AWS Scheduled Task, which has the following cron syntax: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html
The basic arithmetic formula I came up with:
42 * 10 minutes = 420 minutes / 60 minutes = 7 hours.
That means I want the Scheduled Task to run in intervals of 10 minutes over 7 hours. Once it reaches that 7 hours, it just no longer runs for the rest of the day.
Given this, I came up with this expression?
cron(1/10,15-21,*,*,?,*)
Is this expression accurate and most efficient for my needs?