# QdrantClientSettings

- Kind: `class`
- Package: [Aspire.Qdrant.Client](/reference/api/csharp/aspire.qdrant.client.md)
- Version: `13.4.0`
- Namespace: `Aspire.Qdrant.Client`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Qdrant.Client/QdrantClientSettings.cs)

Provides the client configuration settings for connecting to a Qdrant server using QdrantClient.

## Definition

```csharp
namespace Aspire.Qdrant.Client;

public sealed class QdrantClientSettings
{
    // ...
}
```

## Constructors

- [QdrantClientSettings](/reference/api/csharp/aspire.qdrant.client/qdrantclientsettings/constructors.md#constructor)

## Properties

- [DisableHealthChecks](/reference/api/csharp/aspire.qdrant.client/qdrantclientsettings/properties.md#disablehealthchecks) : `bool` `get; set` -- Gets or sets a boolean value that indicates whether the Qdrant client health check is disabled or not.
- [Endpoint](/reference/api/csharp/aspire.qdrant.client/qdrantclientsettings/properties.md#endpoint) : `Uri?` `get; set` -- The endpoint URI string of the Qdrant server to connect to.
- [HealthCheckTimeout](/reference/api/csharp/aspire.qdrant.client/qdrantclientsettings/properties.md#healthchecktimeout) : `TimeSpan?` `get; set` -- Gets or sets the timeout duration for the health check.
- [Key](/reference/api/csharp/aspire.qdrant.client/qdrantclientsettings/properties.md#key) : `string?` `get; set` -- The API Key of the Qdrant server to connect to.
