Hi, how can I define aws cron expression to run every 6 months? Thanks
Cron jon on aws backup service
I think is the same as eventbridge
IIRC aws cron has 6th extra field for year, but something like
0 0 1 */6 * *
for the first day of every 6 months should do it, unless you want to specify the months:
0 0 1 1,6 * *
for january and june for example