/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Macie CustomDataIdentifier resource schema */ export interface AwsMacieCustomdataidentifier { /** * Name of custom data identifier. */ Name: string; /** * Description of custom data identifier. */ Description?: string; /** * Regular expression for custom data identifier. */ Regex: string; /** * Maximum match distance. */ MaximumMatchDistance?: number; /** * Keywords to be matched against. */ Keywords?: string[]; /** * Words to be ignored. */ IgnoreWords?: string[]; /** * Custom data identifier ID. */ Id?: string; /** * Custom data identifier ARN. */ Arn?: string; }