Skip to content

Commit 3b44b26

Browse files
Chain Azure Functions together using input and output bindings
1 parent 6ea53da commit 3b44b26

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Chain Azure Functions together using input and output bindings
2+
3+
## Types of bindings
4+
5+
There are two kinds of bindings you can use with functions:
6+
7+
- Input binding - Connects to a data source. Our function can read data from these input sources.
8+
9+
- Output binding - Connects to a data destination. Our function can write data to these output destinations.
10+
11+
There are also triggers, which are special types of input bindings that cause a function to run. For example, an Azure Event Grid notification can be configured as a trigger. When an event occurs, the function runs.
12+
13+
### Common binding types include:
14+
15+
- Blob Storage
16+
- Azure Service Bus Queues
17+
- Azure Cosmos DB
18+
- Azure Event Hubs
19+
- External files
20+
- External tables
21+
- HTTP endpoints
22+
23+
### Binding properties
24+
25+
![alt text](image.png)
Loading
411 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)