# YarpActiveHealthCheckConfig

- Module: [Aspire.Hosting.Yarp](/reference/api/typescript/aspire.hosting.yarp.md)
- Version: `13.4.0`
- Kind: `type`
- Source: [GitHub](https://github.com/microsoft/aspire)

Represents active health check configuration for a YARP cluster.

## Definition

```typescript
type YarpActiveHealthCheckConfig = {
  Enabled?: boolean;
  Interval?: timespan;
  Path: string;
  Policy: string;
  Query: string;
  Timeout?: timespan;
}
```

## Fields

- `Enabled`: `boolean` `optional`
- `Interval`: `timespan` `optional`
- `Path`: `string`
- `Policy`: `string`
- `Query`: `string`
- `Timeout`: `timespan` `optional`
