# AzureStorageBlobsSettings

- Kind: `class`
- Package: [Aspire.Azure.Storage.Blobs](/reference/api/csharp/aspire.azure.storage.blobs.md)
- Version: `13.3.0`
- Namespace: `Aspire.Azure.Storage.Blobs`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Blobs/AzureStorageBlobsSettings.cs)
- Implements: `IConnectionStringSettings`

Provides the client configuration settings for connecting to Azure Blob Storage.

## Definition

```csharp
namespace Aspire.Azure.Storage.Blobs;

public class AzureStorageBlobsSettings
    : Aspire.Azure.Common.IConnectionStringSettings
{
    // ...
}
```

## Constructors

- [AzureStorageBlobsSettings](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/constructors.md#constructor)

## Properties

- [ConnectionString](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#connectionstring) : `string?` `get; set` -- Gets or sets the connection string used to connect to the blob service.
- [Credential](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#credential) : `TokenCredential?` `get; set` -- Gets or sets the credential used to authenticate to the Blob Storage.
- [DisableHealthChecks](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#disablehealthchecks) : `bool` `get; set` -- Gets or sets a boolean value that indicates whether the Blob Storage health check is disabled or not.
- [DisableTracing](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#disabletracing) : `bool` `get; set` -- Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.
- [ServiceUri](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#serviceuri) : `Uri?` `get; set` -- A `Uri` referencing the blob service. This is likely to be similar to "https://{account_name}.blob.core.windows.net".
