> For the complete documentation index, see [llms.txt](https://docs.ionos.com/ruby-sdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/ruby-sdk/models/networkloadbalancerforwardingruletargethealthcheck.md).

# NetworkLoadBalancerForwardingRuleTargetHealthCheck

## Properties

\| **check** | **Boolean** | Makes the target available only if it accepts periodic health check TCP connection attempts; when turned off, the target is considered always available. The health check only consists of a connection attempt to the address and port of the target. | \[optional] |

\| **check\_interval** | **Integer** | The interval in milliseconds between consecutive health checks; default is 2000. | \[optional] |

\| **maintenance** | **Boolean** | Maintenance mode prevents the target from receiving balanced traffic. | \[optional] |

## Example

```ruby
require 'ionoscloud'


instance = Ionoscloud::NetworkLoadBalancerForwardingRuleTargetHealthCheck.new(
  check: null,

  check_interval: 2000,

  maintenance: null
)
```
