I created an azure function that I need to run at 11 AM EST time. I understand the timer triggers use UTC however is there a way to pass in 11 AM to the run function for readability purposes?
For example here is my run method, is it possible to pass 11 AM where the X sits and specify a timezone?:
public static void Run([TimerTrigger("0 0 X * * *")]TimerInfo myTimer, TraceWriter log)

