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

AttackVolume

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

Information about the volume of attacks during the time period, included in an "AttackStatisticsDataItem". If the accompanying AttackCount in the statistics object is zero, this setting might be empty.

interface AttackVolume {
BitsPerSecond?: AttackVolumeStatistics | null;
PacketsPerSecond?: AttackVolumeStatistics | null;
RequestsPerSecond?: AttackVolumeStatistics | null;
}

§Properties

§
BitsPerSecond?: AttackVolumeStatistics | null
[src]

A statistics object that uses bits per second as the unit. This is included for network level attacks.

§
PacketsPerSecond?: AttackVolumeStatistics | null
[src]

A statistics object that uses packets per second as the unit. This is included for network level attacks.

§
RequestsPerSecond?: AttackVolumeStatistics | null
[src]

A statistics object that uses requests per second as the unit. This is included for application level attacks, and is only available for accounts that are subscribed to Shield Advanced.