# GoFeatureFlagClientSettings Properties

- Package: [CommunityToolkit.Aspire.GoFeatureFlag](/reference/api/csharp/communitytoolkit.aspire.gofeatureflag.md)
- Type: [GoFeatureFlagClientSettings](/reference/api/csharp/communitytoolkit.aspire.gofeatureflag/gofeatureflagclientsettings.md)
- Kind: `Properties`
- Members: `4`

Provides the client configuration settings for connecting to a GO Feature Flag server.

## DisableHealthChecks

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

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

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

## Endpoint

- Name: `Endpoint`
- Modifiers: `nullable` `get; set`
- Returns: `Uri?`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.GoFeatureFlag/GoFeatureFlagClientSettings.cs)

The endpoint URI string of the GO Feature Flag server to connect to.

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

## HealthCheckTimeout

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

Gets or sets a integer value that indicates the GO Feature Flag health check timeout in milliseconds.

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

## ProviderOptions

- Name: `ProviderOptions`
- Modifiers: `get; set`
- Returns: `GOFeatureFlagProviderOptions`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.GoFeatureFlag/GoFeatureFlagClientSettings.cs)

Gets or sets the provider options that will be used to configure the GO Feature Flag client.

```csharp
public GOFeatureFlagProviderOptions ProviderOptions { get; set; }
```
