Module Values.AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetailsSource

The container health check command and associated configuration parameters for the container.

Sourcetype nonrec t = {
  1. command : NonEmptyStringList.t option;
    (*

    The command that the container runs to determine whether it is healthy.

    *)
  2. interval : Integer.t option;
    (*

    The time period in seconds between each health check execution. The default value is 30 seconds.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. 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.

    *)
}
Sourceval make : ?command:??? -> ?interval:??? -> ?retries:??? -> ?startPeriod:??? -> ?timeout:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t