# AzureDataLakeSettings

- Kind: `class`
- Package: [Aspire.Azure.Storage.Files.DataLake](/reference/api/csharp/aspire.azure.storage.files.datalake.md)
- Version: `13.3.0-preview.1.26254.5`
- Namespace: `Aspire.Azure.Storage.Files.DataLake`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Storage.Files.DataLake/AzureDataLakeSettings.cs)
- Implements: `IConnectionStringSettings`

Provides the client configuration settings for connecting to Azure Data Lake Storage.

## Definition

```csharp
namespace Aspire.Azure.Storage.Files.DataLake;

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

## Constructors

- [AzureDataLakeSettings](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/constructors.md#constructor)

## Properties

- [ConnectionString](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/properties.md#connectionstring) : `string?` `get; set` -- Gets or sets the connection string used to connect to the Azure Data Lake Storage service.
- [Credential](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/properties.md#credential) : `TokenCredential?` `get; set` -- Gets or sets the credential used to authenticate to the Azure Data Lake Storage.
- [DisableHealthChecks](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/properties.md#disablehealthchecks) : `bool` `get; set` -- Gets or sets a boolean value that indicates whether the Azure Data Lake Storage health check is disabled or not.
- [DisableTracing](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/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.files.datalake/azuredatalakesettings/properties.md#serviceuri) : `Uri?` `get; set` -- A `Uri` referencing the data lake service. This is likely to be similar to "https://{account_name}.dfs.core.windows.net".
