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

ClassificationResult

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

Provides the details of a sensitive data finding, including the types, number of occurrences, and locations of the sensitive data that was detected.

interface ClassificationResult {
additionalOccurrences?: boolean | null;
customDataIdentifiers?: CustomDataIdentifiers | null;
mimeType?: string | null;
sensitiveData?: SensitiveDataItem[] | null;
sizeClassified?: number | null;
}

§Properties

§
additionalOccurrences?: boolean | null
[src]

Specifies whether Amazon Macie detected additional occurrences of sensitive data in the S3 object. A finding includes location data for a maximum of 15 occurrences of sensitive data.

This value can help you determine whether to investigate additional occurrences of sensitive data in an object. You can do this by referring to the corresponding sensitive data discovery result for the finding (ClassificationDetails.detailedResultsLocation).

§
customDataIdentifiers?: CustomDataIdentifiers | null
[src]

The custom data identifiers that detected the sensitive data and the number of occurrences of the data that they detected.

§
mimeType?: string | null
[src]

The type of content, as a MIME type, that the finding applies to. For example, application/gzip, for a GNU Gzip compressed archive file, or application/pdf, for an Adobe Portable Document Format file.

§
sensitiveData?: SensitiveDataItem[] | null
[src]

The category, types, and number of occurrences of the sensitive data that produced the finding.

§
sizeClassified?: number | null
[src]

The total size, in bytes, of the data that the finding applies to.

§

The status of the finding.