# SqliteConnectionSettings Properties

- Package: [CommunityToolkit.Aspire.Microsoft.Data.Sqlite](/reference/api/csharp/communitytoolkit.aspire.microsoft.data.sqlite.md)
- Type: [SqliteConnectionSettings](/reference/api/csharp/communitytoolkit.aspire.microsoft.data.sqlite/sqliteconnectionsettings.md)
- Kind: `Properties`
- Members: `2`

Represents the settings for the Sqlite client.

## ConnectionString

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

The connection string of the PostgreSQL database to connect to.

```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.Microsoft.Data.Sqlite/SqliteConnectionSettings.cs)

Gets or sets a boolean value that indicates whether the database health check is disabled or not.

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