So, at first, I deploy my function with config like this for debugging purposes
...
functions:
myFunc:
handler: myFunc.handler
timeout: 300
events:
- schedule:
name: event-name
description: "event-name description"
rate: rate(10 minute)
...
Then, I decided to change schedule rate to 1 day
I got 2 questions:
From docs:
A rate expression starts when you create the scheduled event rule, and then runs on its defined schedule.
After update, the rule stays the same, unless your update changes the rule. CloudFormation does not re-deploy resource which do not change when a resource is not affected by the update process.