Values.AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetailsSourceThe container health check command and associated configuration parameters for the container.
type nonrec t = {command : NonEmptyStringList.t option;The command that the container runs to determine whether it is healthy.
*)interval : Integer.t option;The time period in seconds between each health check execution. The default value is 30 seconds.
*)retries : Integer.t option;The number of times to retry a failed health check before the container is considered unhealthy. The default value is 3.
*)startPeriod : Integer.t option;The optional grace period in seconds that allows containers time to bootstrap before failed health checks count towards the maximum number of retries.
*)timeout : Integer.t option;The time period in seconds to wait for a health check to succeed before it is considered a failure. The default value is 5.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Integer.t
| `List of [> `String of NonEmptyString.t ] list ])
list ]