|
2 | 2 | title: Triggers and bindings in Azure Functions
|
3 | 3 | description: Learn to use triggers and bindings to connect your Azure Function to online events and cloud-based services.
|
4 | 4 | ms.topic: conceptual
|
5 |
| -ms.date: 09/06/2024 |
| 5 | +ms.date: 10/28/2024 |
6 | 6 | ms.custom: devdivchpfy22, devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
|
7 | 7 | zone_pivot_groups: programming-languages-set-functions
|
| 8 | +ai-usage: ai-assisted |
8 | 9 | ---
|
9 | 10 |
|
10 | 11 | # Azure Functions triggers and bindings concepts
|
@@ -36,9 +37,9 @@ These examples aren't meant to be exhaustive, but are provided to illustrate how
|
36 | 37 |
|
37 | 38 | ## Trigger and binding definitions
|
38 | 39 |
|
39 |
| -Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article. |
| 40 | +A function has a single trigger and one or more bindings. The type of binding is either input or output. Not all services support both input and output bindings. See your specific binding extension for [specific bindings code examples](#bindings-code-examples). |
40 | 41 |
|
41 |
| -Bindings can be either input or output bindings. Not all services support both input and output bindings. See your specific binding extension for [specific bindings code examples](#bindings-code-examples). |
| 42 | +Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article. |
42 | 43 |
|
43 | 44 | This example shows an HTTP triggered function with an output binding that writes a message to an Azure Storage queue.
|
44 | 45 |
|
@@ -194,10 +195,13 @@ In Python for Functions version 1, this example `function.json` file defines an
|
194 | 195 | ---
|
195 | 196 |
|
196 | 197 | ::: zone-end
|
| 198 | + |
197 | 199 | ## Add bindings to a function
|
198 | 200 |
|
199 | 201 | You can connect your function to other services by using input or output bindings. Add a binding by adding its specific definitions to your function. To learn how, see [Add bindings to an existing function in Azure Functions](add-bindings-existing-function.md).
|
200 | 202 |
|
| 203 | +Azure Functions supports multiple bindings, which must be configured correctly. For example, a function can read data from a queue (input binding) and write data to a database (output binding) simultaneously. |
| 204 | + |
201 | 205 | ## Supported bindings
|
202 | 206 |
|
203 | 207 | [!INCLUDE [Full bindings table](../../includes/functions-bindings.md)]
|
|
0 commit comments