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

SeverityLevel

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

Specifies a severity level for findings that a custom data identifier produces. A severity level determines which severity is assigned to the findings, based on the number of occurrences of text that matches the custom data identifier's detection criteria.

interface SeverityLevel {
occurrencesThreshold: number;
}

§Properties

§
occurrencesThreshold: number
[src]

The minimum number of occurrences of text that must match the custom data identifier's detection criteria in order to produce a finding with the specified severity (severity).

§

The severity to assign to a finding: if the number of occurrences is greater than or equal to the specified threshold (occurrencesThreshold); and, if applicable, the number of occurrences is less than the threshold for the next consecutive severity level for the custom data identifier, moving from LOW to HIGH.