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

StatusCodes

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

Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response. For more information, see Status Code Definitions.

interface StatusCodes {
Status2xx?: number | null;
Status3xx?: number | null;
Status4xx?: number | null;
Status5xx?: number | null;
}

§Properties

§
Status2xx?: number | null
[src]

The percentage of requests over the last 10 seconds that resulted in a 2xx (200, 201, etc.) status code.

§
Status3xx?: number | null
[src]

The percentage of requests over the last 10 seconds that resulted in a 3xx (300, 301, etc.) status code.

§
Status4xx?: number | null
[src]

The percentage of requests over the last 10 seconds that resulted in a 4xx (400, 401, etc.) status code.

§
Status5xx?: number | null
[src]

The percentage of requests over the last 10 seconds that resulted in a 5xx (500, 501, etc.) status code.