# AzureStorageBlobsSettings Properties

- Package: [Aspire.Azure.Storage.Blobs](/reference/api/csharp/aspire.azure.storage.blobs.md)
- Type: [AzureStorageBlobsSettings](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings.md)
- Kind: `Properties`
- Members: `5`

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

## ConnectionString

- Name: `ConnectionString`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Blobs/AzureStorageBlobsSettings.cs)

Gets or sets the connection string used to connect to the blob service.

```csharp
public string? ConnectionString { get; set; }
```

## Remarks

If [AzureStorageBlobsSettings.ConnectionString](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#connectionstring) is set, it overrides [AzureStorageBlobsSettings.ServiceUri](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#serviceuri) and [AzureStorageBlobsSettings.Credential](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#credential).

## Credential

- Name: `Credential`
- Modifiers: `nullable` `get; set`
- Returns: `TokenCredential?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Blobs/AzureStorageBlobsSettings.cs)

Gets or sets the credential used to authenticate to the Blob Storage.

```csharp
public TokenCredential? Credential { get; set; }
```

## DisableHealthChecks

- Name: `DisableHealthChecks`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Blobs/AzureStorageBlobsSettings.cs)

Gets or sets a boolean value that indicates whether the Blob Storage health check is disabled or not.

```csharp
public bool DisableHealthChecks { get; set; }
```

## DisableTracing

- Name: `DisableTracing`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Blobs/AzureStorageBlobsSettings.cs)

Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.

```csharp
public bool DisableTracing { get; set; }
```

## ServiceUri

- Name: `ServiceUri`
- Modifiers: `nullable` `get; set`
- Returns: `Uri?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Blobs/AzureStorageBlobsSettings.cs)

A `Uri` referencing the blob service. This is likely to be similar to "https://{account_name}.blob.core.windows.net".

```csharp
public Uri? ServiceUri { get; set; }
```

## Remarks

Must not contain shared access signature. Used along with [AzureStorageBlobsSettings.Credential](/reference/api/csharp/aspire.azure.storage.blobs/azurestorageblobssettings/properties.md#credential) to establish the connection.
