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

CreateCustomEntityTypeRequest

import type { CreateCustomEntityTypeRequest } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";
interface CreateCustomEntityTypeRequest {
ContextWords?: string[] | null;
Name: string;
RegexString: string;
}

§Properties

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

A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.

If no context words are passed only a regular expression is checked.

§
Name: string
[src]

A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per Amazon Web Services account.

§
RegexString: string
[src]

A regular expression string that is used for detecting sensitive data in a custom pattern.