# KurrentDBSettings Properties

- Package: [CommunityToolkit.Aspire.KurrentDB](/reference/api/csharp/communitytoolkit.aspire.kurrentdb.md)
- Type: [KurrentDBSettings](/reference/api/csharp/communitytoolkit.aspire.kurrentdb/kurrentdbsettings.md)
- Kind: `Properties`
- Members: `4`

Provides the client configuration settings for connecting to a KurrentDB server using `Client.KurrentDBClient`.

## ConnectionString

- Name: `ConnectionString`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.KurrentDB/KurrentDBSettings.cs)

Gets or sets the connection string.

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

## DisableHealthChecks

- Name: `DisableHealthChecks`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.KurrentDB/KurrentDBSettings.cs)

Gets or sets a boolean value that indicates whether the KurrentDB 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/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.KurrentDB/KurrentDBSettings.cs)

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

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

## HealthCheckTimeout

- Name: `HealthCheckTimeout`
- Modifiers: `nullable` `get; set`
- Returns: `TimeSpan?`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.KurrentDB/KurrentDBSettings.cs)

Gets or sets the timeout duration for the health check.

```csharp
public TimeSpan? HealthCheckTimeout { get; set; }
```
