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

Attack

import type { Attack } from "https://googleapis.deno.dev/v1/securitycenter:v1.ts";

Information about DDoS attack volume and classification.

interface Attack {
classification?: string;
volumeBps?: number;
volumePps?: number;
}

§Properties

§
classification?: string
[src]

Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.

§
volumeBps?: number
[src]

Total BPS (bytes per second) volume of attack.

§
volumePps?: number
[src]

Total PPS (packets per second) volume of attack.