@aws-sdk/client-comprehend 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +250 -283
- package/dist-es/models/models_0.js +250 -283
- package/dist-types/models/models_0.d.ts +416 -251
- package/dist-types/ts3.4/models/models_0.d.ts +303 -250
- package/package.json +34 -34
|
@@ -2,18 +2,28 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { ComprehendServiceException as __BaseException } from "./ComprehendServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
PLAIN_TEXT_DOCUMENT
|
|
8
|
-
SEMI_STRUCTURED_DOCUMENT
|
|
9
|
-
}
|
|
7
|
+
export declare const AugmentedManifestsDocumentTypeFormat: {
|
|
8
|
+
readonly PLAIN_TEXT_DOCUMENT: "PLAIN_TEXT_DOCUMENT";
|
|
9
|
+
readonly SEMI_STRUCTURED_DOCUMENT: "SEMI_STRUCTURED_DOCUMENT";
|
|
10
|
+
};
|
|
10
11
|
/**
|
|
11
12
|
* @public
|
|
12
13
|
*/
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
export type AugmentedManifestsDocumentTypeFormat = (typeof AugmentedManifestsDocumentTypeFormat)[keyof typeof AugmentedManifestsDocumentTypeFormat];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const Split: {
|
|
20
|
+
readonly TEST: "TEST";
|
|
21
|
+
readonly TRAIN: "TRAIN";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type Split = (typeof Split)[keyof typeof Split];
|
|
17
27
|
/**
|
|
18
28
|
* @public
|
|
19
29
|
* <p>An augmented manifest file that provides training data for your custom model. An augmented
|
|
@@ -186,13 +196,18 @@ export declare class InternalServerException extends __BaseException {
|
|
|
186
196
|
}
|
|
187
197
|
/**
|
|
188
198
|
* @public
|
|
199
|
+
* @enum
|
|
189
200
|
*/
|
|
190
|
-
export declare
|
|
191
|
-
DOCUMENT_SIZE_EXCEEDED
|
|
192
|
-
PAGE_LIMIT_EXCEEDED
|
|
193
|
-
TEXTRACT_ACCESS_DENIED
|
|
194
|
-
UNSUPPORTED_DOC_TYPE
|
|
195
|
-
}
|
|
201
|
+
export declare const InvalidRequestDetailReason: {
|
|
202
|
+
readonly DOCUMENT_SIZE_EXCEEDED: "DOCUMENT_SIZE_EXCEEDED";
|
|
203
|
+
readonly PAGE_LIMIT_EXCEEDED: "PAGE_LIMIT_EXCEEDED";
|
|
204
|
+
readonly TEXTRACT_ACCESS_DENIED: "TEXTRACT_ACCESS_DENIED";
|
|
205
|
+
readonly UNSUPPORTED_DOC_TYPE: "UNSUPPORTED_DOC_TYPE";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export type InvalidRequestDetailReason = (typeof InvalidRequestDetailReason)[keyof typeof InvalidRequestDetailReason];
|
|
196
211
|
/**
|
|
197
212
|
* @public
|
|
198
213
|
* <p>Provides additional detail about why the request failed:</p>
|
|
@@ -219,10 +234,15 @@ export interface InvalidRequestDetail {
|
|
|
219
234
|
}
|
|
220
235
|
/**
|
|
221
236
|
* @public
|
|
237
|
+
* @enum
|
|
222
238
|
*/
|
|
223
|
-
export declare
|
|
224
|
-
INVALID_DOCUMENT
|
|
225
|
-
}
|
|
239
|
+
export declare const InvalidRequestReason: {
|
|
240
|
+
readonly INVALID_DOCUMENT: "INVALID_DOCUMENT";
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export type InvalidRequestReason = (typeof InvalidRequestReason)[keyof typeof InvalidRequestReason];
|
|
226
246
|
/**
|
|
227
247
|
* @public
|
|
228
248
|
* <p>The request is invalid.</p>
|
|
@@ -270,21 +290,26 @@ export declare class TextSizeLimitExceededException extends __BaseException {
|
|
|
270
290
|
}
|
|
271
291
|
/**
|
|
272
292
|
* @public
|
|
293
|
+
* @enum
|
|
273
294
|
*/
|
|
274
|
-
export declare
|
|
275
|
-
AR
|
|
276
|
-
DE
|
|
277
|
-
EN
|
|
278
|
-
ES
|
|
279
|
-
FR
|
|
280
|
-
HI
|
|
281
|
-
IT
|
|
282
|
-
JA
|
|
283
|
-
KO
|
|
284
|
-
PT
|
|
285
|
-
ZH
|
|
286
|
-
ZH_TW
|
|
287
|
-
}
|
|
295
|
+
export declare const LanguageCode: {
|
|
296
|
+
readonly AR: "ar";
|
|
297
|
+
readonly DE: "de";
|
|
298
|
+
readonly EN: "en";
|
|
299
|
+
readonly ES: "es";
|
|
300
|
+
readonly FR: "fr";
|
|
301
|
+
readonly HI: "hi";
|
|
302
|
+
readonly IT: "it";
|
|
303
|
+
readonly JA: "ja";
|
|
304
|
+
readonly KO: "ko";
|
|
305
|
+
readonly PT: "pt";
|
|
306
|
+
readonly ZH: "zh";
|
|
307
|
+
readonly ZH_TW: "zh-TW";
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
288
313
|
/**
|
|
289
314
|
* @public
|
|
290
315
|
*/
|
|
@@ -342,18 +367,23 @@ export interface BlockReference {
|
|
|
342
367
|
}
|
|
343
368
|
/**
|
|
344
369
|
* @public
|
|
370
|
+
* @enum
|
|
345
371
|
*/
|
|
346
|
-
export declare
|
|
347
|
-
COMMERCIAL_ITEM
|
|
348
|
-
DATE
|
|
349
|
-
EVENT
|
|
350
|
-
LOCATION
|
|
351
|
-
ORGANIZATION
|
|
352
|
-
OTHER
|
|
353
|
-
PERSON
|
|
354
|
-
QUANTITY
|
|
355
|
-
TITLE
|
|
356
|
-
}
|
|
372
|
+
export declare const EntityType: {
|
|
373
|
+
readonly COMMERCIAL_ITEM: "COMMERCIAL_ITEM";
|
|
374
|
+
readonly DATE: "DATE";
|
|
375
|
+
readonly EVENT: "EVENT";
|
|
376
|
+
readonly LOCATION: "LOCATION";
|
|
377
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
378
|
+
readonly OTHER: "OTHER";
|
|
379
|
+
readonly PERSON: "PERSON";
|
|
380
|
+
readonly QUANTITY: "QUANTITY";
|
|
381
|
+
readonly TITLE: "TITLE";
|
|
382
|
+
};
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
357
387
|
/**
|
|
358
388
|
* @public
|
|
359
389
|
* <p>Provides information about an entity. </p>
|
|
@@ -539,13 +569,18 @@ export interface BatchDetectSentimentRequest {
|
|
|
539
569
|
}
|
|
540
570
|
/**
|
|
541
571
|
* @public
|
|
572
|
+
* @enum
|
|
542
573
|
*/
|
|
543
|
-
export declare
|
|
544
|
-
MIXED
|
|
545
|
-
NEGATIVE
|
|
546
|
-
NEUTRAL
|
|
547
|
-
POSITIVE
|
|
548
|
-
}
|
|
574
|
+
export declare const SentimentType: {
|
|
575
|
+
readonly MIXED: "MIXED";
|
|
576
|
+
readonly NEGATIVE: "NEGATIVE";
|
|
577
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
578
|
+
readonly POSITIVE: "POSITIVE";
|
|
579
|
+
};
|
|
580
|
+
/**
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType];
|
|
549
584
|
/**
|
|
550
585
|
* @public
|
|
551
586
|
* <p>Describes the level of confidence that Amazon Comprehend has in the accuracy of its
|
|
@@ -615,15 +650,20 @@ export interface BatchDetectSentimentResponse {
|
|
|
615
650
|
}
|
|
616
651
|
/**
|
|
617
652
|
* @public
|
|
653
|
+
* @enum
|
|
618
654
|
*/
|
|
619
|
-
export declare
|
|
620
|
-
DE
|
|
621
|
-
EN
|
|
622
|
-
ES
|
|
623
|
-
FR
|
|
624
|
-
IT
|
|
625
|
-
PT
|
|
626
|
-
}
|
|
655
|
+
export declare const SyntaxLanguageCode: {
|
|
656
|
+
readonly DE: "de";
|
|
657
|
+
readonly EN: "en";
|
|
658
|
+
readonly ES: "es";
|
|
659
|
+
readonly FR: "fr";
|
|
660
|
+
readonly IT: "it";
|
|
661
|
+
readonly PT: "pt";
|
|
662
|
+
};
|
|
663
|
+
/**
|
|
664
|
+
* @public
|
|
665
|
+
*/
|
|
666
|
+
export type SyntaxLanguageCode = (typeof SyntaxLanguageCode)[keyof typeof SyntaxLanguageCode];
|
|
627
667
|
/**
|
|
628
668
|
* @public
|
|
629
669
|
*/
|
|
@@ -642,27 +682,32 @@ export interface BatchDetectSyntaxRequest {
|
|
|
642
682
|
}
|
|
643
683
|
/**
|
|
644
684
|
* @public
|
|
685
|
+
* @enum
|
|
645
686
|
*/
|
|
646
|
-
export declare
|
|
647
|
-
ADJ
|
|
648
|
-
ADP
|
|
649
|
-
ADV
|
|
650
|
-
AUX
|
|
651
|
-
CCONJ
|
|
652
|
-
CONJ
|
|
653
|
-
DET
|
|
654
|
-
INTJ
|
|
655
|
-
NOUN
|
|
656
|
-
NUM
|
|
657
|
-
O
|
|
658
|
-
PART
|
|
659
|
-
PRON
|
|
660
|
-
PROPN
|
|
661
|
-
PUNCT
|
|
662
|
-
SCONJ
|
|
663
|
-
SYM
|
|
664
|
-
VERB
|
|
665
|
-
}
|
|
687
|
+
export declare const PartOfSpeechTagType: {
|
|
688
|
+
readonly ADJ: "ADJ";
|
|
689
|
+
readonly ADP: "ADP";
|
|
690
|
+
readonly ADV: "ADV";
|
|
691
|
+
readonly AUX: "AUX";
|
|
692
|
+
readonly CCONJ: "CCONJ";
|
|
693
|
+
readonly CONJ: "CONJ";
|
|
694
|
+
readonly DET: "DET";
|
|
695
|
+
readonly INTJ: "INTJ";
|
|
696
|
+
readonly NOUN: "NOUN";
|
|
697
|
+
readonly NUM: "NUM";
|
|
698
|
+
readonly O: "O";
|
|
699
|
+
readonly PART: "PART";
|
|
700
|
+
readonly PRON: "PRON";
|
|
701
|
+
readonly PROPN: "PROPN";
|
|
702
|
+
readonly PUNCT: "PUNCT";
|
|
703
|
+
readonly SCONJ: "SCONJ";
|
|
704
|
+
readonly SYM: "SYM";
|
|
705
|
+
readonly VERB: "VERB";
|
|
706
|
+
};
|
|
707
|
+
/**
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
export type PartOfSpeechTagType = (typeof PartOfSpeechTagType)[keyof typeof PartOfSpeechTagType];
|
|
666
711
|
/**
|
|
667
712
|
* @public
|
|
668
713
|
* <p>Identifies the part of speech represented by the token and gives the confidence that
|
|
@@ -780,26 +825,31 @@ export interface MentionSentiment {
|
|
|
780
825
|
}
|
|
781
826
|
/**
|
|
782
827
|
* @public
|
|
828
|
+
* @enum
|
|
783
829
|
*/
|
|
784
|
-
export declare
|
|
785
|
-
ATTRIBUTE
|
|
786
|
-
BOOK
|
|
787
|
-
BRAND
|
|
788
|
-
COMMERCIAL_ITEM
|
|
789
|
-
DATE
|
|
790
|
-
EVENT
|
|
791
|
-
FACILITY
|
|
792
|
-
GAME
|
|
793
|
-
LOCATION
|
|
794
|
-
MOVIE
|
|
795
|
-
MUSIC
|
|
796
|
-
ORGANIZATION
|
|
797
|
-
OTHER
|
|
798
|
-
PERSON
|
|
799
|
-
PERSONAL_TITLE
|
|
800
|
-
QUANTITY
|
|
801
|
-
SOFTWARE
|
|
802
|
-
}
|
|
830
|
+
export declare const TargetedSentimentEntityType: {
|
|
831
|
+
readonly ATTRIBUTE: "ATTRIBUTE";
|
|
832
|
+
readonly BOOK: "BOOK";
|
|
833
|
+
readonly BRAND: "BRAND";
|
|
834
|
+
readonly COMMERCIAL_ITEM: "COMMERCIAL_ITEM";
|
|
835
|
+
readonly DATE: "DATE";
|
|
836
|
+
readonly EVENT: "EVENT";
|
|
837
|
+
readonly FACILITY: "FACILITY";
|
|
838
|
+
readonly GAME: "GAME";
|
|
839
|
+
readonly LOCATION: "LOCATION";
|
|
840
|
+
readonly MOVIE: "MOVIE";
|
|
841
|
+
readonly MUSIC: "MUSIC";
|
|
842
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
843
|
+
readonly OTHER: "OTHER";
|
|
844
|
+
readonly PERSON: "PERSON";
|
|
845
|
+
readonly PERSONAL_TITLE: "PERSONAL_TITLE";
|
|
846
|
+
readonly QUANTITY: "QUANTITY";
|
|
847
|
+
readonly SOFTWARE: "SOFTWARE";
|
|
848
|
+
};
|
|
849
|
+
/**
|
|
850
|
+
* @public
|
|
851
|
+
*/
|
|
852
|
+
export type TargetedSentimentEntityType = (typeof TargetedSentimentEntityType)[keyof typeof TargetedSentimentEntityType];
|
|
803
853
|
/**
|
|
804
854
|
* @public
|
|
805
855
|
* <p>Information about one mention of an entity. The mention information includes the location of the mention
|
|
@@ -884,11 +934,16 @@ export interface BatchDetectTargetedSentimentResponse {
|
|
|
884
934
|
}
|
|
885
935
|
/**
|
|
886
936
|
* @public
|
|
937
|
+
* @enum
|
|
887
938
|
*/
|
|
888
|
-
export declare
|
|
889
|
-
LINE
|
|
890
|
-
WORD
|
|
891
|
-
}
|
|
939
|
+
export declare const BlockType: {
|
|
940
|
+
readonly LINE: "LINE";
|
|
941
|
+
readonly WORD: "WORD";
|
|
942
|
+
};
|
|
943
|
+
/**
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
946
|
+
export type BlockType = (typeof BlockType)[keyof typeof BlockType];
|
|
892
947
|
/**
|
|
893
948
|
* @public
|
|
894
949
|
* <p>The bounding box around the detected page
|
|
@@ -949,10 +1004,15 @@ export interface Geometry {
|
|
|
949
1004
|
}
|
|
950
1005
|
/**
|
|
951
1006
|
* @public
|
|
1007
|
+
* @enum
|
|
952
1008
|
*/
|
|
953
|
-
export declare
|
|
954
|
-
CHILD
|
|
955
|
-
}
|
|
1009
|
+
export declare const RelationshipType: {
|
|
1010
|
+
readonly CHILD: "CHILD";
|
|
1011
|
+
};
|
|
1012
|
+
/**
|
|
1013
|
+
* @public
|
|
1014
|
+
*/
|
|
1015
|
+
export type RelationshipType = (typeof RelationshipType)[keyof typeof RelationshipType];
|
|
956
1016
|
/**
|
|
957
1017
|
* @public
|
|
958
1018
|
* <p>List of child blocks for the current block.</p>
|
|
@@ -1095,25 +1155,40 @@ export interface ClassifierMetadata {
|
|
|
1095
1155
|
}
|
|
1096
1156
|
/**
|
|
1097
1157
|
* @public
|
|
1158
|
+
* @enum
|
|
1098
1159
|
*/
|
|
1099
|
-
export declare
|
|
1100
|
-
TEXTRACT_ANALYZE_DOCUMENT
|
|
1101
|
-
TEXTRACT_DETECT_DOCUMENT_TEXT
|
|
1102
|
-
}
|
|
1160
|
+
export declare const DocumentReadAction: {
|
|
1161
|
+
readonly TEXTRACT_ANALYZE_DOCUMENT: "TEXTRACT_ANALYZE_DOCUMENT";
|
|
1162
|
+
readonly TEXTRACT_DETECT_DOCUMENT_TEXT: "TEXTRACT_DETECT_DOCUMENT_TEXT";
|
|
1163
|
+
};
|
|
1103
1164
|
/**
|
|
1104
1165
|
* @public
|
|
1105
1166
|
*/
|
|
1106
|
-
export
|
|
1107
|
-
FORCE_DOCUMENT_READ_ACTION = "FORCE_DOCUMENT_READ_ACTION",
|
|
1108
|
-
SERVICE_DEFAULT = "SERVICE_DEFAULT"
|
|
1109
|
-
}
|
|
1167
|
+
export type DocumentReadAction = (typeof DocumentReadAction)[keyof typeof DocumentReadAction];
|
|
1110
1168
|
/**
|
|
1111
1169
|
* @public
|
|
1170
|
+
* @enum
|
|
1112
1171
|
*/
|
|
1113
|
-
export declare
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
}
|
|
1172
|
+
export declare const DocumentReadMode: {
|
|
1173
|
+
readonly FORCE_DOCUMENT_READ_ACTION: "FORCE_DOCUMENT_READ_ACTION";
|
|
1174
|
+
readonly SERVICE_DEFAULT: "SERVICE_DEFAULT";
|
|
1175
|
+
};
|
|
1176
|
+
/**
|
|
1177
|
+
* @public
|
|
1178
|
+
*/
|
|
1179
|
+
export type DocumentReadMode = (typeof DocumentReadMode)[keyof typeof DocumentReadMode];
|
|
1180
|
+
/**
|
|
1181
|
+
* @public
|
|
1182
|
+
* @enum
|
|
1183
|
+
*/
|
|
1184
|
+
export declare const DocumentReadFeatureTypes: {
|
|
1185
|
+
readonly FORMS: "FORMS";
|
|
1186
|
+
readonly TABLES: "TABLES";
|
|
1187
|
+
};
|
|
1188
|
+
/**
|
|
1189
|
+
* @public
|
|
1190
|
+
*/
|
|
1191
|
+
export type DocumentReadFeatureTypes = (typeof DocumentReadFeatureTypes)[keyof typeof DocumentReadFeatureTypes];
|
|
1117
1192
|
/**
|
|
1118
1193
|
* @public
|
|
1119
1194
|
* <p>Provides configuration parameters to override the default actions for extracting text from PDF documents and image files. </p>
|
|
@@ -1271,16 +1346,21 @@ export interface DocumentMetadata {
|
|
|
1271
1346
|
}
|
|
1272
1347
|
/**
|
|
1273
1348
|
* @public
|
|
1349
|
+
* @enum
|
|
1274
1350
|
*/
|
|
1275
|
-
export declare
|
|
1276
|
-
IMAGE
|
|
1277
|
-
MS_WORD
|
|
1278
|
-
NATIVE_PDF
|
|
1279
|
-
PLAIN_TEXT
|
|
1280
|
-
SCANNED_PDF
|
|
1281
|
-
TEXTRACT_ANALYZE_DOCUMENT_JSON
|
|
1282
|
-
TEXTRACT_DETECT_DOCUMENT_TEXT_JSON
|
|
1283
|
-
}
|
|
1351
|
+
export declare const DocumentType: {
|
|
1352
|
+
readonly IMAGE: "IMAGE";
|
|
1353
|
+
readonly MS_WORD: "MS_WORD";
|
|
1354
|
+
readonly NATIVE_PDF: "NATIVE_PDF";
|
|
1355
|
+
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
1356
|
+
readonly SCANNED_PDF: "SCANNED_PDF";
|
|
1357
|
+
readonly TEXTRACT_ANALYZE_DOCUMENT_JSON: "TEXTRACT_ANALYZE_DOCUMENT_JSON";
|
|
1358
|
+
readonly TEXTRACT_DETECT_DOCUMENT_TEXT_JSON: "TEXTRACT_DETECT_DOCUMENT_TEXT_JSON";
|
|
1359
|
+
};
|
|
1360
|
+
/**
|
|
1361
|
+
* @public
|
|
1362
|
+
*/
|
|
1363
|
+
export type DocumentType = (typeof DocumentType)[keyof typeof DocumentType];
|
|
1284
1364
|
/**
|
|
1285
1365
|
* @public
|
|
1286
1366
|
* <p>Document type for each page in the document.</p>
|
|
@@ -1297,14 +1377,19 @@ export interface DocumentTypeListItem {
|
|
|
1297
1377
|
}
|
|
1298
1378
|
/**
|
|
1299
1379
|
* @public
|
|
1380
|
+
* @enum
|
|
1300
1381
|
*/
|
|
1301
|
-
export declare
|
|
1302
|
-
INTERNAL_SERVER_ERROR
|
|
1303
|
-
PAGE_CHARACTERS_EXCEEDED
|
|
1304
|
-
PAGE_SIZE_EXCEEDED
|
|
1305
|
-
TEXTRACT_BAD_PAGE
|
|
1306
|
-
TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED
|
|
1307
|
-
}
|
|
1382
|
+
export declare const PageBasedErrorCode: {
|
|
1383
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1384
|
+
readonly PAGE_CHARACTERS_EXCEEDED: "PAGE_CHARACTERS_EXCEEDED";
|
|
1385
|
+
readonly PAGE_SIZE_EXCEEDED: "PAGE_SIZE_EXCEEDED";
|
|
1386
|
+
readonly TEXTRACT_BAD_PAGE: "TEXTRACT_BAD_PAGE";
|
|
1387
|
+
readonly TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED: "TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED";
|
|
1388
|
+
};
|
|
1389
|
+
/**
|
|
1390
|
+
* @public
|
|
1391
|
+
*/
|
|
1392
|
+
export type PageBasedErrorCode = (typeof PageBasedErrorCode)[keyof typeof PageBasedErrorCode];
|
|
1308
1393
|
/**
|
|
1309
1394
|
* @public
|
|
1310
1395
|
* <p>Text extraction encountered one or more page-level errors in the input document.</p>
|
|
@@ -1427,46 +1512,51 @@ export interface ContainsPiiEntitiesRequest {
|
|
|
1427
1512
|
}
|
|
1428
1513
|
/**
|
|
1429
1514
|
* @public
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1515
|
+
* @enum
|
|
1516
|
+
*/
|
|
1517
|
+
export declare const PiiEntityType: {
|
|
1518
|
+
readonly ADDRESS: "ADDRESS";
|
|
1519
|
+
readonly AGE: "AGE";
|
|
1520
|
+
readonly ALL: "ALL";
|
|
1521
|
+
readonly AWS_ACCESS_KEY: "AWS_ACCESS_KEY";
|
|
1522
|
+
readonly AWS_SECRET_KEY: "AWS_SECRET_KEY";
|
|
1523
|
+
readonly BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER";
|
|
1524
|
+
readonly BANK_ROUTING: "BANK_ROUTING";
|
|
1525
|
+
readonly CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER";
|
|
1526
|
+
readonly CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER";
|
|
1527
|
+
readonly CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV";
|
|
1528
|
+
readonly CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY";
|
|
1529
|
+
readonly CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER";
|
|
1530
|
+
readonly DATE_TIME: "DATE_TIME";
|
|
1531
|
+
readonly DRIVER_ID: "DRIVER_ID";
|
|
1532
|
+
readonly EMAIL: "EMAIL";
|
|
1533
|
+
readonly INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER";
|
|
1534
|
+
readonly IN_AADHAAR: "IN_AADHAAR";
|
|
1535
|
+
readonly IN_NREGA: "IN_NREGA";
|
|
1536
|
+
readonly IN_PERMANENT_ACCOUNT_NUMBER: "IN_PERMANENT_ACCOUNT_NUMBER";
|
|
1537
|
+
readonly IN_VOTER_NUMBER: "IN_VOTER_NUMBER";
|
|
1538
|
+
readonly IP_ADDRESS: "IP_ADDRESS";
|
|
1539
|
+
readonly LICENSE_PLATE: "LICENSE_PLATE";
|
|
1540
|
+
readonly MAC_ADDRESS: "MAC_ADDRESS";
|
|
1541
|
+
readonly NAME: "NAME";
|
|
1542
|
+
readonly PASSPORT_NUMBER: "PASSPORT_NUMBER";
|
|
1543
|
+
readonly PASSWORD: "PASSWORD";
|
|
1544
|
+
readonly PHONE: "PHONE";
|
|
1545
|
+
readonly PIN: "PIN";
|
|
1546
|
+
readonly SSN: "SSN";
|
|
1547
|
+
readonly SWIFT_CODE: "SWIFT_CODE";
|
|
1548
|
+
readonly UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER";
|
|
1549
|
+
readonly UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER";
|
|
1550
|
+
readonly UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
|
|
1551
|
+
readonly URL: "URL";
|
|
1552
|
+
readonly USERNAME: "USERNAME";
|
|
1553
|
+
readonly US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER";
|
|
1554
|
+
readonly VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER";
|
|
1555
|
+
};
|
|
1556
|
+
/**
|
|
1557
|
+
* @public
|
|
1558
|
+
*/
|
|
1559
|
+
export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
|
|
1470
1560
|
/**
|
|
1471
1561
|
* @public
|
|
1472
1562
|
* <p>Specifies one of the label or labels that categorize the personally identifiable
|
|
@@ -1495,11 +1585,16 @@ export interface ContainsPiiEntitiesResponse {
|
|
|
1495
1585
|
}
|
|
1496
1586
|
/**
|
|
1497
1587
|
* @public
|
|
1588
|
+
* @enum
|
|
1498
1589
|
*/
|
|
1499
|
-
export declare
|
|
1500
|
-
TEST
|
|
1501
|
-
TRAIN
|
|
1502
|
-
}
|
|
1590
|
+
export declare const DatasetType: {
|
|
1591
|
+
readonly TEST: "TEST";
|
|
1592
|
+
readonly TRAIN: "TRAIN";
|
|
1593
|
+
};
|
|
1594
|
+
/**
|
|
1595
|
+
* @public
|
|
1596
|
+
*/
|
|
1597
|
+
export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
|
|
1503
1598
|
/**
|
|
1504
1599
|
* @public
|
|
1505
1600
|
* <p>An augmented manifest file that provides training data for your custom model.
|
|
@@ -1541,11 +1636,16 @@ export interface DatasetAugmentedManifestsListItem {
|
|
|
1541
1636
|
}
|
|
1542
1637
|
/**
|
|
1543
1638
|
* @public
|
|
1639
|
+
* @enum
|
|
1544
1640
|
*/
|
|
1545
|
-
export declare
|
|
1546
|
-
AUGMENTED_MANIFEST
|
|
1547
|
-
COMPREHEND_CSV
|
|
1548
|
-
}
|
|
1641
|
+
export declare const DatasetDataFormat: {
|
|
1642
|
+
readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
|
|
1643
|
+
readonly COMPREHEND_CSV: "COMPREHEND_CSV";
|
|
1644
|
+
};
|
|
1645
|
+
/**
|
|
1646
|
+
* @public
|
|
1647
|
+
*/
|
|
1648
|
+
export type DatasetDataFormat = (typeof DatasetDataFormat)[keyof typeof DatasetDataFormat];
|
|
1549
1649
|
/**
|
|
1550
1650
|
* @public
|
|
1551
1651
|
* <p>Describes the dataset input data configuration for a document classifier model.</p>
|
|
@@ -1588,11 +1688,16 @@ export interface DatasetEntityRecognizerAnnotations {
|
|
|
1588
1688
|
}
|
|
1589
1689
|
/**
|
|
1590
1690
|
* @public
|
|
1691
|
+
* @enum
|
|
1591
1692
|
*/
|
|
1592
|
-
export declare
|
|
1593
|
-
ONE_DOC_PER_FILE
|
|
1594
|
-
ONE_DOC_PER_LINE
|
|
1595
|
-
}
|
|
1693
|
+
export declare const InputFormat: {
|
|
1694
|
+
readonly ONE_DOC_PER_FILE: "ONE_DOC_PER_FILE";
|
|
1695
|
+
readonly ONE_DOC_PER_LINE: "ONE_DOC_PER_LINE";
|
|
1696
|
+
};
|
|
1697
|
+
/**
|
|
1698
|
+
* @public
|
|
1699
|
+
*/
|
|
1700
|
+
export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
|
|
1596
1701
|
/**
|
|
1597
1702
|
* @public
|
|
1598
1703
|
* <p>Describes the documents submitted with a dataset for an entity recognizer model.</p>
|
|
@@ -1812,11 +1917,16 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
1812
1917
|
}
|
|
1813
1918
|
/**
|
|
1814
1919
|
* @public
|
|
1920
|
+
* @enum
|
|
1815
1921
|
*/
|
|
1816
|
-
export declare
|
|
1817
|
-
AUGMENTED_MANIFEST
|
|
1818
|
-
COMPREHEND_CSV
|
|
1819
|
-
}
|
|
1922
|
+
export declare const DocumentClassifierDataFormat: {
|
|
1923
|
+
readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
|
|
1924
|
+
readonly COMPREHEND_CSV: "COMPREHEND_CSV";
|
|
1925
|
+
};
|
|
1926
|
+
/**
|
|
1927
|
+
* @public
|
|
1928
|
+
*/
|
|
1929
|
+
export type DocumentClassifierDataFormat = (typeof DocumentClassifierDataFormat)[keyof typeof DocumentClassifierDataFormat];
|
|
1820
1930
|
/**
|
|
1821
1931
|
* @public
|
|
1822
1932
|
* <p>The input properties for training a document classifier. </p>
|
|
@@ -1884,11 +1994,16 @@ export interface DocumentClassifierInputDataConfig {
|
|
|
1884
1994
|
}
|
|
1885
1995
|
/**
|
|
1886
1996
|
* @public
|
|
1997
|
+
* @enum
|
|
1887
1998
|
*/
|
|
1888
|
-
export declare
|
|
1889
|
-
MULTI_CLASS
|
|
1890
|
-
MULTI_LABEL
|
|
1891
|
-
}
|
|
1999
|
+
export declare const DocumentClassifierMode: {
|
|
2000
|
+
readonly MULTI_CLASS: "MULTI_CLASS";
|
|
2001
|
+
readonly MULTI_LABEL: "MULTI_LABEL";
|
|
2002
|
+
};
|
|
2003
|
+
/**
|
|
2004
|
+
* @public
|
|
2005
|
+
*/
|
|
2006
|
+
export type DocumentClassifierMode = (typeof DocumentClassifierMode)[keyof typeof DocumentClassifierMode];
|
|
1892
2007
|
/**
|
|
1893
2008
|
* @public
|
|
1894
2009
|
* <p>Provides output results configuration parameters for custom classifier jobs. </p>
|
|
@@ -2168,11 +2283,16 @@ export interface EntityRecognizerAnnotations {
|
|
|
2168
2283
|
}
|
|
2169
2284
|
/**
|
|
2170
2285
|
* @public
|
|
2286
|
+
* @enum
|
|
2171
2287
|
*/
|
|
2172
|
-
export declare
|
|
2173
|
-
AUGMENTED_MANIFEST
|
|
2174
|
-
COMPREHEND_CSV
|
|
2175
|
-
}
|
|
2288
|
+
export declare const EntityRecognizerDataFormat: {
|
|
2289
|
+
readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
|
|
2290
|
+
readonly COMPREHEND_CSV: "COMPREHEND_CSV";
|
|
2291
|
+
};
|
|
2292
|
+
/**
|
|
2293
|
+
* @public
|
|
2294
|
+
*/
|
|
2295
|
+
export type EntityRecognizerDataFormat = (typeof EntityRecognizerDataFormat)[keyof typeof EntityRecognizerDataFormat];
|
|
2176
2296
|
/**
|
|
2177
2297
|
* @public
|
|
2178
2298
|
* <p>Describes the training documents submitted with an entity recognizer.</p>
|
|
@@ -2442,11 +2562,16 @@ export interface DataSecurityConfig {
|
|
|
2442
2562
|
}
|
|
2443
2563
|
/**
|
|
2444
2564
|
* @public
|
|
2565
|
+
* @enum
|
|
2445
2566
|
*/
|
|
2446
|
-
export declare
|
|
2447
|
-
DOCUMENT_CLASSIFIER
|
|
2448
|
-
ENTITY_RECOGNIZER
|
|
2449
|
-
}
|
|
2567
|
+
export declare const ModelType: {
|
|
2568
|
+
readonly DOCUMENT_CLASSIFIER: "DOCUMENT_CLASSIFIER";
|
|
2569
|
+
readonly ENTITY_RECOGNIZER: "ENTITY_RECOGNIZER";
|
|
2570
|
+
};
|
|
2571
|
+
/**
|
|
2572
|
+
* @public
|
|
2573
|
+
*/
|
|
2574
|
+
export type ModelType = (typeof ModelType)[keyof typeof ModelType];
|
|
2450
2575
|
/**
|
|
2451
2576
|
* @public
|
|
2452
2577
|
* <p>Configuration required for a custom classification model.</p>
|
|
@@ -2631,12 +2756,17 @@ export interface DescribeDatasetRequest {
|
|
|
2631
2756
|
}
|
|
2632
2757
|
/**
|
|
2633
2758
|
* @public
|
|
2759
|
+
* @enum
|
|
2634
2760
|
*/
|
|
2635
|
-
export declare
|
|
2636
|
-
COMPLETED
|
|
2637
|
-
CREATING
|
|
2638
|
-
FAILED
|
|
2639
|
-
}
|
|
2761
|
+
export declare const DatasetStatus: {
|
|
2762
|
+
readonly COMPLETED: "COMPLETED";
|
|
2763
|
+
readonly CREATING: "CREATING";
|
|
2764
|
+
readonly FAILED: "FAILED";
|
|
2765
|
+
};
|
|
2766
|
+
/**
|
|
2767
|
+
* @public
|
|
2768
|
+
*/
|
|
2769
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
2640
2770
|
/**
|
|
2641
2771
|
* @public
|
|
2642
2772
|
* <p>Properties associated with the dataset.</p>
|
|
@@ -2744,15 +2874,20 @@ export interface InputDataConfig {
|
|
|
2744
2874
|
}
|
|
2745
2875
|
/**
|
|
2746
2876
|
* @public
|
|
2877
|
+
* @enum
|
|
2747
2878
|
*/
|
|
2748
|
-
export declare
|
|
2749
|
-
COMPLETED
|
|
2750
|
-
FAILED
|
|
2751
|
-
IN_PROGRESS
|
|
2752
|
-
STOPPED
|
|
2753
|
-
STOP_REQUESTED
|
|
2754
|
-
SUBMITTED
|
|
2755
|
-
}
|
|
2879
|
+
export declare const JobStatus: {
|
|
2880
|
+
readonly COMPLETED: "COMPLETED";
|
|
2881
|
+
readonly FAILED: "FAILED";
|
|
2882
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2883
|
+
readonly STOPPED: "STOPPED";
|
|
2884
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
2885
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
2886
|
+
};
|
|
2887
|
+
/**
|
|
2888
|
+
* @public
|
|
2889
|
+
*/
|
|
2890
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
2756
2891
|
/**
|
|
2757
2892
|
* @public
|
|
2758
2893
|
* <p>Provides configuration parameters for the output of inference jobs.</p>
|
|
@@ -2925,17 +3060,22 @@ export interface DescribeDocumentClassifierRequest {
|
|
|
2925
3060
|
}
|
|
2926
3061
|
/**
|
|
2927
3062
|
* @public
|
|
3063
|
+
* @enum
|
|
2928
3064
|
*/
|
|
2929
|
-
export declare
|
|
2930
|
-
DELETING
|
|
2931
|
-
IN_ERROR
|
|
2932
|
-
STOPPED
|
|
2933
|
-
STOP_REQUESTED
|
|
2934
|
-
SUBMITTED
|
|
2935
|
-
TRAINED
|
|
2936
|
-
TRAINED_WITH_WARNING
|
|
2937
|
-
TRAINING
|
|
2938
|
-
}
|
|
3065
|
+
export declare const ModelStatus: {
|
|
3066
|
+
readonly DELETING: "DELETING";
|
|
3067
|
+
readonly IN_ERROR: "IN_ERROR";
|
|
3068
|
+
readonly STOPPED: "STOPPED";
|
|
3069
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
3070
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
3071
|
+
readonly TRAINED: "TRAINED";
|
|
3072
|
+
readonly TRAINED_WITH_WARNING: "TRAINED_WITH_WARNING";
|
|
3073
|
+
readonly TRAINING: "TRAINING";
|
|
3074
|
+
};
|
|
3075
|
+
/**
|
|
3076
|
+
* @public
|
|
3077
|
+
*/
|
|
3078
|
+
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
2939
3079
|
/**
|
|
2940
3080
|
* @public
|
|
2941
3081
|
* <p>Provides information about a document classifier.</p>
|
|
@@ -3181,14 +3321,19 @@ export interface DescribeEndpointRequest {
|
|
|
3181
3321
|
}
|
|
3182
3322
|
/**
|
|
3183
3323
|
* @public
|
|
3324
|
+
* @enum
|
|
3184
3325
|
*/
|
|
3185
|
-
export declare
|
|
3186
|
-
CREATING
|
|
3187
|
-
DELETING
|
|
3188
|
-
FAILED
|
|
3189
|
-
IN_SERVICE
|
|
3190
|
-
UPDATING
|
|
3191
|
-
}
|
|
3326
|
+
export declare const EndpointStatus: {
|
|
3327
|
+
readonly CREATING: "CREATING";
|
|
3328
|
+
readonly DELETING: "DELETING";
|
|
3329
|
+
readonly FAILED: "FAILED";
|
|
3330
|
+
readonly IN_SERVICE: "IN_SERVICE";
|
|
3331
|
+
readonly UPDATING: "UPDATING";
|
|
3332
|
+
};
|
|
3333
|
+
/**
|
|
3334
|
+
* @public
|
|
3335
|
+
*/
|
|
3336
|
+
export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
3192
3337
|
/**
|
|
3193
3338
|
* @public
|
|
3194
3339
|
* <p>Specifies information about the specified endpoint.
|
|
@@ -3701,14 +3846,19 @@ export interface DescribeFlywheelRequest {
|
|
|
3701
3846
|
}
|
|
3702
3847
|
/**
|
|
3703
3848
|
* @public
|
|
3849
|
+
* @enum
|
|
3704
3850
|
*/
|
|
3705
|
-
export declare
|
|
3706
|
-
ACTIVE
|
|
3707
|
-
CREATING
|
|
3708
|
-
DELETING
|
|
3709
|
-
FAILED
|
|
3710
|
-
UPDATING
|
|
3711
|
-
}
|
|
3851
|
+
export declare const FlywheelStatus: {
|
|
3852
|
+
readonly ACTIVE: "ACTIVE";
|
|
3853
|
+
readonly CREATING: "CREATING";
|
|
3854
|
+
readonly DELETING: "DELETING";
|
|
3855
|
+
readonly FAILED: "FAILED";
|
|
3856
|
+
readonly UPDATING: "UPDATING";
|
|
3857
|
+
};
|
|
3858
|
+
/**
|
|
3859
|
+
* @public
|
|
3860
|
+
*/
|
|
3861
|
+
export type FlywheelStatus = (typeof FlywheelStatus)[keyof typeof FlywheelStatus];
|
|
3712
3862
|
/**
|
|
3713
3863
|
* @public
|
|
3714
3864
|
* <p>The flywheel properties.</p>
|
|
@@ -3810,15 +3960,20 @@ export interface FlywheelModelEvaluationMetrics {
|
|
|
3810
3960
|
}
|
|
3811
3961
|
/**
|
|
3812
3962
|
* @public
|
|
3963
|
+
* @enum
|
|
3813
3964
|
*/
|
|
3814
|
-
export declare
|
|
3815
|
-
COMPLETED
|
|
3816
|
-
EVALUATING
|
|
3817
|
-
FAILED
|
|
3818
|
-
STOPPED
|
|
3819
|
-
STOP_REQUESTED
|
|
3820
|
-
TRAINING
|
|
3821
|
-
}
|
|
3965
|
+
export declare const FlywheelIterationStatus: {
|
|
3966
|
+
readonly COMPLETED: "COMPLETED";
|
|
3967
|
+
readonly EVALUATING: "EVALUATING";
|
|
3968
|
+
readonly FAILED: "FAILED";
|
|
3969
|
+
readonly STOPPED: "STOPPED";
|
|
3970
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
3971
|
+
readonly TRAINING: "TRAINING";
|
|
3972
|
+
};
|
|
3973
|
+
/**
|
|
3974
|
+
* @public
|
|
3975
|
+
*/
|
|
3976
|
+
export type FlywheelIterationStatus = (typeof FlywheelIterationStatus)[keyof typeof FlywheelIterationStatus];
|
|
3822
3977
|
/**
|
|
3823
3978
|
* @public
|
|
3824
3979
|
* <p>The configuration properties of a flywheel iteration.</p>
|
|
@@ -3997,11 +4152,16 @@ export interface DescribePiiEntitiesDetectionJobRequest {
|
|
|
3997
4152
|
}
|
|
3998
4153
|
/**
|
|
3999
4154
|
* @public
|
|
4155
|
+
* @enum
|
|
4000
4156
|
*/
|
|
4001
|
-
export declare
|
|
4002
|
-
ONLY_OFFSETS
|
|
4003
|
-
ONLY_REDACTION
|
|
4004
|
-
}
|
|
4157
|
+
export declare const PiiEntitiesDetectionMode: {
|
|
4158
|
+
readonly ONLY_OFFSETS: "ONLY_OFFSETS";
|
|
4159
|
+
readonly ONLY_REDACTION: "ONLY_REDACTION";
|
|
4160
|
+
};
|
|
4161
|
+
/**
|
|
4162
|
+
* @public
|
|
4163
|
+
*/
|
|
4164
|
+
export type PiiEntitiesDetectionMode = (typeof PiiEntitiesDetectionMode)[keyof typeof PiiEntitiesDetectionMode];
|
|
4005
4165
|
/**
|
|
4006
4166
|
* @public
|
|
4007
4167
|
* <p>Provides configuration parameters for the output of PII entity detection jobs.</p>
|
|
@@ -4024,11 +4184,16 @@ export interface PiiOutputDataConfig {
|
|
|
4024
4184
|
}
|
|
4025
4185
|
/**
|
|
4026
4186
|
* @public
|
|
4187
|
+
* @enum
|
|
4027
4188
|
*/
|
|
4028
|
-
export declare
|
|
4029
|
-
MASK
|
|
4030
|
-
REPLACE_WITH_PII_ENTITY_TYPE
|
|
4031
|
-
}
|
|
4189
|
+
export declare const PiiEntitiesDetectionMaskMode: {
|
|
4190
|
+
readonly MASK: "MASK";
|
|
4191
|
+
readonly REPLACE_WITH_PII_ENTITY_TYPE: "REPLACE_WITH_PII_ENTITY_TYPE";
|
|
4192
|
+
};
|
|
4193
|
+
/**
|
|
4194
|
+
* @public
|
|
4195
|
+
*/
|
|
4196
|
+
export type PiiEntitiesDetectionMaskMode = (typeof PiiEntitiesDetectionMaskMode)[keyof typeof PiiEntitiesDetectionMaskMode];
|
|
4032
4197
|
/**
|
|
4033
4198
|
* @public
|
|
4034
4199
|
* <p>Provides configuration parameters for PII entity redaction.</p>
|