Skip to content

Commit 47887c6

Browse files
Add link back to overview
1 parent 1c9b6a4 commit 47887c6

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

articles/azure-functions/functions-bindings-storage-blob-input.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ ms.author: cshoe
1111

1212
The input binding allows you to read blob storage data as input to an Azure Function.
1313

14+
For information on setup and configuration details, see the [overview](./functions-bindings-storage-blob.md).
15+
1416
## Example
1517

1618
# [C#](#tab/csharp)
@@ -299,7 +301,7 @@ The following table explains the binding configuration properties that you set i
299301
|**direction** | n/a | Must be set to `in`. Exceptions are noted in the [usage](#usage) section. |
300302
|**name** | n/a | The name of the variable that represents the blob in function code.|
301303
|**path** |**BlobPath** | The path to the blob. |
302-
|**connection** |**Connection**| The name of an app setting that contains the [Storage connection string](../storage/common/storage-configure-connection-string.md) to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [blob-only storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
304+
|**connection** |**Connection**| The name of an app setting that contains the [Storage connection string](../storage/common/storage-configure-connection-string.md) to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage". If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [blob-only storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
303305
|n/a | **Access** | Indicates whether you will be reading or writing. |
304306

305307
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]

articles/azure-functions/functions-bindings-storage-blob-output.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ ms.author: cshoe
1111

1212
The output binding allows you to modify and delete blob storage data in an Azure Function.
1313

14+
For information on setup and configuration details, see the [overview](./functions-bindings-storage-blob.md).
15+
1416
## Example
1517

1618
# [C#](#tab/csharp)

articles/azure-functions/functions-bindings-storage-blob-trigger.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ The Blob storage trigger starts a function when a new or updated blob is detecte
1313

1414
The Azure Blob storage trigger require a general-purpose storage account. To use a blob-only account, or if your application has specialized needs, review the alternatives to using this trigger.
1515

16+
For information on setup and configuration details, see the [overview](./functions-bindings-storage-blob.md).
17+
1618
## Alternatives
1719

1820
### Event Grid trigger

0 commit comments

Comments
 (0)