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

SummarizedCounter

import type { SummarizedCounter } from "https://aws-api.deno.dev/v0.3/services/shield.ts?docs=full";

The counter that describes a DDoS attack.

interface SummarizedCounter {
Average?: number | null;
Max?: number | null;
N?: number | null;
Name?: string | null;
Sum?: number | null;
Unit?: string | null;
}

§Properties

§
Average?: number | null
[src]

The average value of the counter for a specified time period.

§
Max?: number | null
[src]

The maximum value of the counter for a specified time period.

§
N?: number | null
[src]

The number of counters for a specified time period.

§
Name?: string | null
[src]

The counter name.

§
Sum?: number | null
[src]

The total of counter values for a specified time period.

§
Unit?: string | null
[src]

The unit of the counters.