# AzureDataLakeSettings Properties

- Package: [Aspire.Azure.Storage.Files.DataLake](/reference/api/csharp/aspire.azure.storage.files.datalake.md)
- Type: [AzureDataLakeSettings](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings.md)
- Kind: `Properties`
- Members: `5`

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

## ConnectionString

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

Gets or sets the connection string used to connect to the Azure Data Lake Storage service.

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

## Remarks

If [AzureDataLakeSettings.ConnectionString](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/properties.md#connectionstring) is set, it overrides [AzureDataLakeSettings.ServiceUri](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/properties.md#serviceuri) and [AzureDataLakeSettings.Credential](/reference/api/csharp/aspire.azure.storage.files.datalake/azuredatalakesettings/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.Files.DataLake/AzureDataLakeSettings.cs)

Gets or sets the credential used to authenticate to the Azure Data Lake 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.Files.DataLake/AzureDataLakeSettings.cs)

Gets or sets a boolean value that indicates whether the Azure Data Lake 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.Files.DataLake/AzureDataLakeSettings.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.Files.DataLake/AzureDataLakeSettings.cs)

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

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

## Remarks

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