sparse-intern-71089
10/07/2022, 1:40 PMmysterious-apartment-62241
10/07/2022, 2:35 PMconst schedule = aws.cloudwatch.onSchedule(
"lambda-schedule",
// This expression schedules the event to trigger at:
// At 00:00,
// for one or more days of the month,
// for all months,
// when it is a Monday,
// for all years
"cron(0 0 ? * MON *)",
lambda
);
You can also trigger the lambda to run when a bucket gets a new filebreezy-yak-93992
10/07/2022, 2:52 PM