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

AttackStatisticsDataItem

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

A single attack statistics data record. This is returned by "DescribeAttackStatistics" along with a time range indicating the time period that the attack statistics apply to.

interface AttackStatisticsDataItem {
AttackCount: number;
AttackVolume?: AttackVolume | null;
}

§Properties

§
AttackCount: number
[src]

The number of attacks detected during the time period. This is always present, but might be zero.

§
AttackVolume?: AttackVolume | null
[src]

Information about the volume of attacks during the time period. If the accompanying AttackCount is zero, this setting might be empty.