Search code examples
cron

Creating an AWS CRON String Which Would Run Daily for Selected Days


What AWS CRON string can be for daily runs with certain days selected days and be schedule for different times?

For example: Daily at 12:40 and 14:30 for Sun and Wed.

AWS cron is different than cron in crontab files.


Solution

  • You should set records like:

    40 12 * * 1,2,4,5,6 *
    30 14 * * 3,7 *