# AzureDataTablesSettings

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

Provides the client configuration settings for connecting to Azure Tables.

## Definition

```csharp
namespace Aspire.Azure.Data.Tables;

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

## Constructors

- [AzureDataTablesSettings](/reference/api/csharp/aspire.azure.data.tables/azuredatatablessettings/constructors.md#constructor)

## Properties

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