RenderQueueHealthCheckConfiguration

class aws_rfdk.deadline.RenderQueueHealthCheckConfiguration(*, check_interval=None, grace_period=None)

Bases: object

Configuration for the health checks performed by the RenderQueue upon the Deadline RCS.

These health checks periodically query the Deadline RCS to ensure that it is still operating nominally. If a Deadline RCS is found to not be operating nominally, then it will be terminated and automatically replaced.

Please see {@link https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html} for additional information on this style of health check.

Parameters:
  • check_interval (Optional[Duration]) – The approximate amount of time between health checks for an individual RCS instance. The value provided must be between 5 and 300 seconds. Default: 1 Minute

  • grace_period (Optional[Duration]) – The startup duration where we will not perform health checks on newly created RCS instances. This should be at least a little longer than the time it takes for the Deadline RCS to start up. Default: 5 Minutes

Attributes

check_interval

The approximate amount of time between health checks for an individual RCS instance.

The value provided must be between 5 and 300 seconds.

Default:

1 Minute

grace_period

The startup duration where we will not perform health checks on newly created RCS instances.

This should be at least a little longer than the time it takes for the Deadline RCS to start up.

Default:

5 Minutes