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

InstanceHealthSummary

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

Represents summary information about the health of an instance. For more information, see Health Colors and Statuses.

interface InstanceHealthSummary {
Degraded?: number | null;
Info?: number | null;
NoData?: number | null;
Ok?: number | null;
Pending?: number | null;
Severe?: number | null;
Unknown?: number | null;
Warning?: number | null;
}

§Properties

§
Degraded?: number | null
[src]

Red. The health agent is reporting a high number of request failures or other issues for an instance or environment.

§
Info?: number | null
[src]

Green. An operation is in progress on an instance.

§
NoData?: number | null
[src]

Grey. AWS Elastic Beanstalk and the health agent are reporting no data on an instance.

§
Ok?: number | null
[src]

Green. An instance is passing health checks and the health agent is not reporting any problems.

§
Pending?: number | null
[src]

Grey. An operation is in progress on an instance within the command timeout.

§
Severe?: number | null
[src]

Red. The health agent is reporting a very high number of request failures or other issues for an instance or environment.

§
Unknown?: number | null
[src]

Grey. AWS Elastic Beanstalk and the health agent are reporting an insufficient amount of data on an instance.

§
Warning?: number | null
[src]

Yellow. The health agent is reporting a moderate number of request failures or other issues for an instance or environment.