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

GetCustomDataIdentifierResponse

import type { GetCustomDataIdentifierResponse } from "https://aws-api.deno.dev/v0.4/services/macie2.ts?docs=full";
interface GetCustomDataIdentifierResponse {
arn?: string | null;
createdAt?: Date | number | null;
deleted?: boolean | null;
description?: string | null;
id?: string | null;
ignoreWords?: string[] | null;
keywords?: string[] | null;
maximumMatchDistance?: number | null;
name?: string | null;
regex?: string | null;
severityLevels?: SeverityLevel[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the custom data identifier.

§
createdAt?: Date | number | null
[src]

The date and time, in UTC and extended ISO 8601 format, when the custom data identifier was created.

§
deleted?: boolean | null
[src]

Specifies whether the custom data identifier was deleted. If you delete a custom data identifier, Amazon Macie doesn't delete it permanently. Instead, it soft deletes the identifier.

§
description?: string | null
[src]

The custom description of the custom data identifier.

§
id?: string | null
[src]

The unique identifier for the custom data identifier.

§
ignoreWords?: string[] | null
[src]

An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression contains any string in this array, Amazon Macie ignores it. Ignore words are case sensitive.

§
keywords?: string[] | null
[src]

An array that lists specific character sequences (keywords), one of which must precede and be within proximity (maximumMatchDistance) of the regular expression to match. Keywords aren't case sensitive.

§
maximumMatchDistance?: number | null
[src]

The maximum number of characters that can exist between the end of at least one complete character sequence specified by the keywords array and the end of the text that matches the regex pattern. If a complete keyword precedes all the text that matches the pattern and the keyword is within the specified distance, Amazon Macie includes the result. Otherwise, Macie excludes the result.

§
name?: string | null
[src]

The custom name of the custom data identifier.

§
regex?: string | null
[src]

The regular expression (regex) that defines the pattern to match.

§
severityLevels?: SeverityLevel[] | null
[src]

Specifies the severity that's assigned to findings that the custom data identifier produces, based on the number of occurrences of text that matches the custom data identifier's detection criteria. By default, Amazon Macie creates findings for S3 objects that contain at least one occurrence of text that matches the detection criteria, and Macie assigns the MEDIUM severity to those findings.

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

A map of key-value pairs that identifies the tags (keys and values) that are associated with the custom data identifier.