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

SensitiveDataResult

import type { SensitiveDataResult } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Contains a detected instance of sensitive data that are based on built-in identifiers.

interface SensitiveDataResult {
Category?: string | null;
Detections?: SensitiveDataDetections[] | null;
TotalCount?: number | null;
}

§Properties

§
Category?: string | null
[src]

The category of sensitive data that was detected. For example, the category can indicate that the sensitive data involved credentials, financial information, or personal information.

§
Detections?: SensitiveDataDetections[] | null
[src]

The list of detected instances of sensitive data.

§
TotalCount?: number | null
[src]

The total number of occurrences of sensitive data.