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

InstanceHealthCheckResult

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

An object representing the result of a container instance health status check.

interface InstanceHealthCheckResult {
lastStatusChange?: Date | number | null;
lastUpdated?: Date | number | null;
status?: InstanceHealthCheckState | null;
}

§Properties

§
lastStatusChange?: Date | number | null
[src]

The Unix timestamp for when the container instance health status last changed.

§
lastUpdated?: Date | number | null
[src]

The Unix timestamp for when the container instance health status was last updated.

§

The container instance health status.

§

The type of container instance health status that was verified.