Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails

import type { AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

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

interface AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails {
Command?: string[] | null;
Interval?: number | null;
Retries?: number | null;
StartPeriod?: number | null;
Timeout?: number | null;
}

§Properties

§
Command?: string[] | null
[src]

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

§
Interval?: number | null
[src]

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

§
Retries?: number | null
[src]

The number of times to retry a failed health check before the container is considered unhealthy. The default value is 3.

§
StartPeriod?: number | null
[src]

The optional grace period in seconds that allows containers time to bootstrap before failed health checks count towards the maximum number of retries.

§
Timeout?: number | null
[src]

The time period in seconds to wait for a health check to succeed before it is considered a failure. The default value is 5.