Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 9

server-less Function example: Storage

★ Azure

★ AWS
server-less Function example: EVENT GRID
TRIGGER
Azure Function Example: Database
Azure Function Example: Database
Azure Function Example: Machine Learning
Azure Logic Apps
★ Logic Apps are a cloud service that helps you automate and orchestrate tasks, business
processes, and workflows by integrating with apps, data, systems, and resources.

★ Azure Logic Apps is designed in a web-based designer and can execute logic that's triggered
by Azure services without writing any code.
Function Triggers & Bindings
★ Triggers are what cause a function to run. A trigger defines how a function is invoked and a
function must have exactly one trigger. Triggers have associated data, which is often provided as
the payload of the function.

★ Binding to a function is a way of declaratively connecting another resource to the function;


bindings may be connected as input bindings, output bindings, or both. Data from
bindings is provided to the function as parameters.

All triggers and bindings have a direction property in the function.json file:
★ For triggers, the direction is always in
★ Input and output bindings use in and out
★ Some bindings support a special direction in/out. If you use inout, only the Advanced editor is
available via the Integrate tab in the portal.
Function Triggers & Bindings

You might also like