Class SensitiveDataScannerSuppressions

Object describing the suppressions for a rule. There are three types of suppressions, starts_with, ends_with, and exact_match. Suppressed matches are not obfuscated, counted in metrics, or displayed in the Findings page.

Hierarchy

  • SensitiveDataScannerSuppressions

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any
endsWith?: string[]

List of strings to use for suppression of matches ending with these strings.

exactMatch?: string[]

List of strings to use for suppression of matches exactly matching these strings.

startsWith?: string[]

List of strings to use for suppression of matches starting with these strings.

Generated using TypeDoc