Categories
AWS vs Azure

Triggers in Azure Functions vs AWS Lambda

As I am expanding my Azure knowledge, I tend to compare it with AWS alternatives and I am going to share what surprises me the most. So this time it was the following:

Azure Functions cannot have more than one trigger. In my current project we want a function to respond to an HTTP endpoint and also run on a timer, seems to be not possible with Azure Functions.

An AWS Lambda can have multiple triggers without any complications.