It is possible to change "functions -> events -> schedule -> enabled" parameter" without de-reploy

Hi everyone,

I would like to know if it is possible to change this parameter without re-deploy (sls deploy…):
change “functions -> events -> schedule -> enabled” parameter" without re-reploy
I meant, is it possible to change it on the fly ?

e.g.:

functions:
user-sync-fingerprints:
handler: src/my-script-folder/my_script.lambda_handler
role: myrole
events:
- schedule:
rate: rate(12 hours)
enabled: true --> This is the value I would like to change (e.g.: false). Do I need to execute a deploy (sls deploy…) after change it ?

thanks a lot !