0

Hi If I open CloudWatch I have the option of Creating Schedule Snapshot. My challenge is scheduling a Snapshot once every last day of the month.

Event Source

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Jon drew
  • 41
  • 6
  • In this SO question [here](https://stackoverflow.com/questions/6139189/cron-job-to-run-on-the-last-day-of-the-month) there are many possibilities explained. – Marcin May 10 '20 at 04:40

1 Answers1

2

AWS Scheduler supports "L" to be used as the last day of the month. You can find it documented here - https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html

The L wildcard in the Day-of-month or Day-of-week fields specifies the last day of the month or week.

Phreak
  • 36
  • 4