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

GetSensitiveDataOccurrencesResponse

import type { GetSensitiveDataOccurrencesResponse } from "https://aws-api.deno.dev/v0.4/services/macie2.ts?docs=full";
interface GetSensitiveDataOccurrencesResponse {
error?: string | null;
sensitiveDataOccurrences?: {
[key: string]: DetectedDataDetails[] | null | undefined;
}
| null;
status?: RevealRequestStatus | null;
}

§Properties

§
error?: string | null
[src]

If an error occurred when Amazon Macie attempted to retrieve occurrences of sensitive data reported by the finding, a description of the error that occurred. This value is null if the status (status) of the request is PROCESSING or SUCCESS.

§
sensitiveDataOccurrences?: {
[key: string]: DetectedDataDetails[] | null | undefined;
}
| null
[src]

A map that specifies 1-100 types of sensitive data reported by the finding and, for each type, 1-10 occurrences of sensitive data.

§
status?: RevealRequestStatus | null
[src]

The status of the request to retrieve occurrences of sensitive data reported by the finding. Possible values are:

  • ERROR - An error occurred when Amazon Macie attempted to locate, retrieve, or encrypt the sensitive data. The error value indicates the nature of the error that occurred.
  • PROCESSING - Macie is processing the request.
  • SUCCESS - Macie successfully located, retrieved, and encrypted the sensitive data.