# AzureDataTablesSettings Properties

- Package: [Aspire.Azure.Data.Tables](/reference/api/csharp/aspire.azure.data.tables.md)
- Type: [AzureDataTablesSettings](/reference/api/csharp/aspire.azure.data.tables/azuredatatablessettings.md)
- Kind: `Properties`
- Members: `5`

Provides the client configuration settings for connecting to Azure Tables.

## ConnectionString

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

Gets or sets the connection string used to connect to the table service account.

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

## Remarks

If [AzureDataTablesSettings.ConnectionString](/reference/api/csharp/aspire.azure.data.tables/azuredatatablessettings/properties.md#connectionstring) is set, it overrides [AzureDataTablesSettings.ServiceUri](/reference/api/csharp/aspire.azure.data.tables/azuredatatablessettings/properties.md#serviceuri) and [AzureDataTablesSettings.Credential](/reference/api/csharp/aspire.azure.data.tables/azuredatatablessettings/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.Data.Tables/AzureDataTablesSettings.cs)

Gets or sets the credential used to authenticate to the Azure Tables.

```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.Data.Tables/AzureDataTablesSettings.cs)

Gets or sets a boolean value that indicates whether the 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.Data.Tables/AzureDataTablesSettings.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.Data.Tables/AzureDataTablesSettings.cs)

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/".

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

## Remarks

Used along with [AzureDataTablesSettings.Credential](/reference/api/csharp/aspire.azure.data.tables/azuredatatablessettings/properties.md#credential) to establish the connection.
