Introduction

Bindings in Azure Functions allow you to connect your function code to external resources, such as databases, storage accounts, message queues, and more. They provide a flexible way to interact with other services and data sources. This reference document describes the available bindings and their configuration options.

Supported Bindings
Binding Name Description Example
http Allows your function to receive HTTP requests. @http
servicebus Connects your function to a Service Bus namespace. @servicebus
storage Enables your function to read and write data to Azure Blob Storage. @storage
cosmosdb Allows your function to interact with Azure Cosmos DB. @cosmosdb
queue Lets your function consume messages from an Azure Queue Storage queue. @queue
filesystem Enables your function to read and write data to Azure Files. @filesystem
logicapps Connects your function to Azure Logic Apps. @logicapps