@aws-sdk/client-textract 3.130.0 → 3.141.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AnalyzeDocumentCommand.js +2 -2
  4. package/dist-cjs/commands/AnalyzeExpenseCommand.js +2 -2
  5. package/dist-cjs/commands/AnalyzeIDCommand.js +2 -2
  6. package/dist-cjs/commands/DetectDocumentTextCommand.js +2 -2
  7. package/dist-cjs/commands/GetDocumentAnalysisCommand.js +2 -2
  8. package/dist-cjs/commands/GetDocumentTextDetectionCommand.js +2 -2
  9. package/dist-cjs/commands/GetExpenseAnalysisCommand.js +2 -2
  10. package/dist-cjs/commands/StartDocumentAnalysisCommand.js +2 -2
  11. package/dist-cjs/commands/StartDocumentTextDetectionCommand.js +2 -2
  12. package/dist-cjs/commands/StartExpenseAnalysisCommand.js +2 -2
  13. package/dist-cjs/models/models_0.js +190 -284
  14. package/dist-es/commands/AnalyzeDocumentCommand.js +3 -3
  15. package/dist-es/commands/AnalyzeExpenseCommand.js +3 -3
  16. package/dist-es/commands/AnalyzeIDCommand.js +3 -3
  17. package/dist-es/commands/DetectDocumentTextCommand.js +3 -3
  18. package/dist-es/commands/GetDocumentAnalysisCommand.js +3 -3
  19. package/dist-es/commands/GetDocumentTextDetectionCommand.js +3 -3
  20. package/dist-es/commands/GetExpenseAnalysisCommand.js +3 -3
  21. package/dist-es/commands/StartDocumentAnalysisCommand.js +3 -3
  22. package/dist-es/commands/StartDocumentTextDetectionCommand.js +3 -3
  23. package/dist-es/commands/StartExpenseAnalysisCommand.js +3 -3
  24. package/dist-es/models/models_0.js +47 -188
  25. package/dist-types/models/models_0.d.ts +188 -282
  26. package/dist-types/ts3.4/models/models_0.d.ts +94 -188
  27. package/package.json +7 -7
@@ -40,12 +40,6 @@ export interface S3Object {
40
40
  */
41
41
  Version?: string;
42
42
  }
43
- export declare namespace S3Object {
44
- /**
45
- * @internal
46
- */
47
- const filterSensitiveLog: (obj: S3Object) => any;
48
- }
49
43
  /**
50
44
  * <p>The input document, either as bytes or as an S3 object.</p>
51
45
  * <p>You pass image bytes to an Amazon Textract API operation by using the <code>Bytes</code>
@@ -79,12 +73,6 @@ export interface Document {
79
73
  */
80
74
  S3Object?: S3Object;
81
75
  }
82
- export declare namespace Document {
83
- /**
84
- * @internal
85
- */
86
- const filterSensitiveLog: (obj: Document) => any;
87
- }
88
76
  export declare enum FeatureType {
89
77
  FORMS = "FORMS",
90
78
  QUERIES = "QUERIES",
@@ -105,12 +93,6 @@ export interface HumanLoopDataAttributes {
105
93
  */
106
94
  ContentClassifiers?: (ContentClassifier | string)[];
107
95
  }
108
- export declare namespace HumanLoopDataAttributes {
109
- /**
110
- * @internal
111
- */
112
- const filterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
113
- }
114
96
  /**
115
97
  * <p>Sets up the human review workflow the document will be sent to if one of the conditions
116
98
  * is met. You can also set certain attributes of the image before review. </p>
@@ -130,12 +112,6 @@ export interface HumanLoopConfig {
130
112
  */
131
113
  DataAttributes?: HumanLoopDataAttributes;
132
114
  }
133
- export declare namespace HumanLoopConfig {
134
- /**
135
- * @internal
136
- */
137
- const filterSensitiveLog: (obj: HumanLoopConfig) => any;
138
- }
139
115
  /**
140
116
  * <p>Each query contains the question you want to ask in the Text and the alias you want to associate.</p>
141
117
  */
@@ -173,12 +149,6 @@ export interface Query {
173
149
  */
174
150
  Pages?: string[];
175
151
  }
176
- export declare namespace Query {
177
- /**
178
- * @internal
179
- */
180
- const filterSensitiveLog: (obj: Query) => any;
181
- }
182
152
  /**
183
153
  * <p></p>
184
154
  */
@@ -188,12 +158,6 @@ export interface QueriesConfig {
188
158
  */
189
159
  Queries: Query[] | undefined;
190
160
  }
191
- export declare namespace QueriesConfig {
192
- /**
193
- * @internal
194
- */
195
- const filterSensitiveLog: (obj: QueriesConfig) => any;
196
- }
197
161
  export interface AnalyzeDocumentRequest {
198
162
  /**
199
163
  * <p>The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI
@@ -220,12 +184,6 @@ export interface AnalyzeDocumentRequest {
220
184
  */
221
185
  QueriesConfig?: QueriesConfig;
222
186
  }
223
- export declare namespace AnalyzeDocumentRequest {
224
- /**
225
- * @internal
226
- */
227
- const filterSensitiveLog: (obj: AnalyzeDocumentRequest) => any;
228
- }
229
187
  export declare enum BlockType {
230
188
  CELL = "CELL",
231
189
  KEY_VALUE_SET = "KEY_VALUE_SET",
@@ -280,12 +238,6 @@ export interface BoundingBox {
280
238
  */
281
239
  Top?: number;
282
240
  }
283
- export declare namespace BoundingBox {
284
- /**
285
- * @internal
286
- */
287
- const filterSensitiveLog: (obj: BoundingBox) => any;
288
- }
289
241
  /**
290
242
  * <p>The X and Y coordinates of a point on a document page. The X and Y
291
243
  * values that are returned are ratios of the overall document page size. For example, if the
@@ -307,12 +259,6 @@ export interface Point {
307
259
  */
308
260
  Y?: number;
309
261
  }
310
- export declare namespace Point {
311
- /**
312
- * @internal
313
- */
314
- const filterSensitiveLog: (obj: Point) => any;
315
- }
316
262
  /**
317
263
  * <p>Information about where the following items are located on a document page: detected
318
264
  * page, text, key-value pairs, tables, table cells, and selection elements.</p>
@@ -328,12 +274,6 @@ export interface Geometry {
328
274
  */
329
275
  Polygon?: Point[];
330
276
  }
331
- export declare namespace Geometry {
332
- /**
333
- * @internal
334
- */
335
- const filterSensitiveLog: (obj: Geometry) => any;
336
- }
337
277
  export declare enum RelationshipType {
338
278
  ANSWER = "ANSWER",
339
279
  CHILD = "CHILD",
@@ -366,12 +306,6 @@ export interface Relationship {
366
306
  */
367
307
  Ids?: string[];
368
308
  }
369
- export declare namespace Relationship {
370
- /**
371
- * @internal
372
- */
373
- const filterSensitiveLog: (obj: Relationship) => any;
374
- }
375
309
  export declare enum SelectionStatus {
376
310
  NOT_SELECTED = "NOT_SELECTED",
377
311
  SELECTED = "SELECTED"
@@ -571,12 +505,6 @@ export interface Block {
571
505
  */
572
506
  Query?: Query;
573
507
  }
574
- export declare namespace Block {
575
- /**
576
- * @internal
577
- */
578
- const filterSensitiveLog: (obj: Block) => any;
579
- }
580
508
  /**
581
509
  * <p>Information about the input document.</p>
582
510
  */
@@ -586,12 +514,6 @@ export interface DocumentMetadata {
586
514
  */
587
515
  Pages?: number;
588
516
  }
589
- export declare namespace DocumentMetadata {
590
- /**
591
- * @internal
592
- */
593
- const filterSensitiveLog: (obj: DocumentMetadata) => any;
594
- }
595
517
  /**
596
518
  * <p>Shows the results of the human in the loop evaluation. If there is no HumanLoopArn, the
597
519
  * input did not trigger human review.</p>
@@ -611,12 +533,6 @@ export interface HumanLoopActivationOutput {
611
533
  */
612
534
  HumanLoopActivationConditionsEvaluationResults?: __LazyJsonString | string;
613
535
  }
614
- export declare namespace HumanLoopActivationOutput {
615
- /**
616
- * @internal
617
- */
618
- const filterSensitiveLog: (obj: HumanLoopActivationOutput) => any;
619
- }
620
536
  export interface AnalyzeDocumentResponse {
621
537
  /**
622
538
  * <p>Metadata about the analyzed document. An example is the number of pages.</p>
@@ -635,12 +551,6 @@ export interface AnalyzeDocumentResponse {
635
551
  */
636
552
  AnalyzeDocumentModelVersion?: string;
637
553
  }
638
- export declare namespace AnalyzeDocumentResponse {
639
- /**
640
- * @internal
641
- */
642
- const filterSensitiveLog: (obj: AnalyzeDocumentResponse) => any;
643
- }
644
554
  /**
645
555
  * <p>Amazon Textract isn't able to read the document. For more information on the document
646
556
  * limits in Amazon Textract, see <a>limits</a>.</p>
@@ -804,12 +714,6 @@ export interface AnalyzeExpenseRequest {
804
714
  */
805
715
  Document: Document | undefined;
806
716
  }
807
- export declare namespace AnalyzeExpenseRequest {
808
- /**
809
- * @internal
810
- */
811
- const filterSensitiveLog: (obj: AnalyzeExpenseRequest) => any;
812
- }
813
717
  /**
814
718
  * <p>An object used to store information about the Value or Label detected by Amazon Textract.</p>
815
719
  */
@@ -828,12 +732,6 @@ export interface ExpenseDetection {
828
732
  */
829
733
  Confidence?: number;
830
734
  }
831
- export declare namespace ExpenseDetection {
832
- /**
833
- * @internal
834
- */
835
- const filterSensitiveLog: (obj: ExpenseDetection) => any;
836
- }
837
735
  /**
838
736
  * <p>An object used to store information about the Type detected by Amazon Textract.</p>
839
737
  */
@@ -847,12 +745,6 @@ export interface ExpenseType {
847
745
  */
848
746
  Confidence?: number;
849
747
  }
850
- export declare namespace ExpenseType {
851
- /**
852
- * @internal
853
- */
854
- const filterSensitiveLog: (obj: ExpenseType) => any;
855
- }
856
748
  /**
857
749
  * <p>Breakdown of detected information, seperated into
858
750
  * the catagories Type, LabelDetection, and ValueDetection</p>
@@ -875,12 +767,6 @@ export interface ExpenseField {
875
767
  */
876
768
  PageNumber?: number;
877
769
  }
878
- export declare namespace ExpenseField {
879
- /**
880
- * @internal
881
- */
882
- const filterSensitiveLog: (obj: ExpenseField) => any;
883
- }
884
770
  /**
885
771
  * <p>A structure that holds information about the different lines found in a document's tables.</p>
886
772
  */
@@ -890,12 +776,6 @@ export interface LineItemFields {
890
776
  */
891
777
  LineItemExpenseFields?: ExpenseField[];
892
778
  }
893
- export declare namespace LineItemFields {
894
- /**
895
- * @internal
896
- */
897
- const filterSensitiveLog: (obj: LineItemFields) => any;
898
- }
899
779
  /**
900
780
  * <p>A grouping of tables which contain LineItems, with each table identified by the table's <code>LineItemGroupIndex</code>.</p>
901
781
  */
@@ -909,12 +789,6 @@ export interface LineItemGroup {
909
789
  */
910
790
  LineItems?: LineItemFields[];
911
791
  }
912
- export declare namespace LineItemGroup {
913
- /**
914
- * @internal
915
- */
916
- const filterSensitiveLog: (obj: LineItemGroup) => any;
917
- }
918
792
  /**
919
793
  * <p>The structure holding all the information returned by AnalyzeExpense</p>
920
794
  */
@@ -933,12 +807,6 @@ export interface ExpenseDocument {
933
807
  */
934
808
  LineItemGroups?: LineItemGroup[];
935
809
  }
936
- export declare namespace ExpenseDocument {
937
- /**
938
- * @internal
939
- */
940
- const filterSensitiveLog: (obj: ExpenseDocument) => any;
941
- }
942
810
  export interface AnalyzeExpenseResponse {
943
811
  /**
944
812
  * <p>Information about the input document.</p>
@@ -949,24 +817,12 @@ export interface AnalyzeExpenseResponse {
949
817
  */
950
818
  ExpenseDocuments?: ExpenseDocument[];
951
819
  }
952
- export declare namespace AnalyzeExpenseResponse {
953
- /**
954
- * @internal
955
- */
956
- const filterSensitiveLog: (obj: AnalyzeExpenseResponse) => any;
957
- }
958
820
  export interface AnalyzeIDRequest {
959
821
  /**
960
822
  * <p>The document being passed to AnalyzeID.</p>
961
823
  */
962
824
  DocumentPages: Document[] | undefined;
963
825
  }
964
- export declare namespace AnalyzeIDRequest {
965
- /**
966
- * @internal
967
- */
968
- const filterSensitiveLog: (obj: AnalyzeIDRequest) => any;
969
- }
970
826
  export declare enum ValueType {
971
827
  DATE = "DATE"
972
828
  }
@@ -984,12 +840,6 @@ export interface NormalizedValue {
984
840
  */
985
841
  ValueType?: ValueType | string;
986
842
  }
987
- export declare namespace NormalizedValue {
988
- /**
989
- * @internal
990
- */
991
- const filterSensitiveLog: (obj: NormalizedValue) => any;
992
- }
993
843
  /**
994
844
  * <p>Used to contain the information detected by an AnalyzeID operation.</p>
995
845
  */
@@ -1008,12 +858,6 @@ export interface AnalyzeIDDetections {
1008
858
  */
1009
859
  Confidence?: number;
1010
860
  }
1011
- export declare namespace AnalyzeIDDetections {
1012
- /**
1013
- * @internal
1014
- */
1015
- const filterSensitiveLog: (obj: AnalyzeIDDetections) => any;
1016
- }
1017
861
  /**
1018
862
  * <p>Structure containing both the normalized type of the extracted information
1019
863
  * and the text associated with it. These are extracted as Type and Value respectively.</p>
@@ -1028,12 +872,6 @@ export interface IdentityDocumentField {
1028
872
  */
1029
873
  ValueDetection?: AnalyzeIDDetections;
1030
874
  }
1031
- export declare namespace IdentityDocumentField {
1032
- /**
1033
- * @internal
1034
- */
1035
- const filterSensitiveLog: (obj: IdentityDocumentField) => any;
1036
- }
1037
875
  /**
1038
876
  * <p>The structure that lists each document processed in an AnalyzeID operation.</p>
1039
877
  */
@@ -1049,12 +887,6 @@ export interface IdentityDocument {
1049
887
  */
1050
888
  IdentityDocumentFields?: IdentityDocumentField[];
1051
889
  }
1052
- export declare namespace IdentityDocument {
1053
- /**
1054
- * @internal
1055
- */
1056
- const filterSensitiveLog: (obj: IdentityDocument) => any;
1057
- }
1058
890
  export interface AnalyzeIDResponse {
1059
891
  /**
1060
892
  * <p>The list of documents processed by AnalyzeID. Includes a number denoting their
@@ -1070,12 +902,6 @@ export interface AnalyzeIDResponse {
1070
902
  */
1071
903
  AnalyzeIDModelVersion?: string;
1072
904
  }
1073
- export declare namespace AnalyzeIDResponse {
1074
- /**
1075
- * @internal
1076
- */
1077
- const filterSensitiveLog: (obj: AnalyzeIDResponse) => any;
1078
- }
1079
905
  export interface DetectDocumentTextRequest {
1080
906
  /**
1081
907
  * <p>The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI
@@ -1086,12 +912,6 @@ export interface DetectDocumentTextRequest {
1086
912
  */
1087
913
  Document: Document | undefined;
1088
914
  }
1089
- export declare namespace DetectDocumentTextRequest {
1090
- /**
1091
- * @internal
1092
- */
1093
- const filterSensitiveLog: (obj: DetectDocumentTextRequest) => any;
1094
- }
1095
915
  export interface DetectDocumentTextResponse {
1096
916
  /**
1097
917
  * <p>Metadata about the document. It contains the number of pages that are detected in the
@@ -1108,12 +928,6 @@ export interface DetectDocumentTextResponse {
1108
928
  */
1109
929
  DetectDocumentTextModelVersion?: string;
1110
930
  }
1111
- export declare namespace DetectDocumentTextResponse {
1112
- /**
1113
- * @internal
1114
- */
1115
- const filterSensitiveLog: (obj: DetectDocumentTextResponse) => any;
1116
- }
1117
931
  /**
1118
932
  * <p>The Amazon S3 bucket that contains the document to be processed. It's used by asynchronous
1119
933
  * operations such as <a>StartDocumentTextDetection</a>.</p>
@@ -1126,12 +940,6 @@ export interface DocumentLocation {
1126
940
  */
1127
941
  S3Object?: S3Object;
1128
942
  }
1129
- export declare namespace DocumentLocation {
1130
- /**
1131
- * @internal
1132
- */
1133
- const filterSensitiveLog: (obj: DocumentLocation) => any;
1134
- }
1135
943
  export interface GetDocumentAnalysisRequest {
1136
944
  /**
1137
945
  * <p>A unique identifier for the text-detection job. The <code>JobId</code> is returned from
@@ -1150,12 +958,6 @@ export interface GetDocumentAnalysisRequest {
1150
958
  */
1151
959
  NextToken?: string;
1152
960
  }
1153
- export declare namespace GetDocumentAnalysisRequest {
1154
- /**
1155
- * @internal
1156
- */
1157
- const filterSensitiveLog: (obj: GetDocumentAnalysisRequest) => any;
1158
- }
1159
961
  export declare enum JobStatus {
1160
962
  FAILED = "FAILED",
1161
963
  IN_PROGRESS = "IN_PROGRESS",
@@ -1175,12 +977,6 @@ export interface Warning {
1175
977
  */
1176
978
  Pages?: number[];
1177
979
  }
1178
- export declare namespace Warning {
1179
- /**
1180
- * @internal
1181
- */
1182
- const filterSensitiveLog: (obj: Warning) => any;
1183
- }
1184
980
  export interface GetDocumentAnalysisResponse {
1185
981
  /**
1186
982
  * <p>Information about a document that Amazon Textract processed. <code>DocumentMetadata</code> is
@@ -1213,12 +1009,6 @@ export interface GetDocumentAnalysisResponse {
1213
1009
  */
1214
1010
  AnalyzeDocumentModelVersion?: string;
1215
1011
  }
1216
- export declare namespace GetDocumentAnalysisResponse {
1217
- /**
1218
- * @internal
1219
- */
1220
- const filterSensitiveLog: (obj: GetDocumentAnalysisResponse) => any;
1221
- }
1222
1012
  /**
1223
1013
  * <p>An invalid job identifier was passed to <a>GetDocumentAnalysis</a> or to
1224
1014
  * <a>GetDocumentAnalysis</a>.</p>
@@ -1265,12 +1055,6 @@ export interface GetDocumentTextDetectionRequest {
1265
1055
  */
1266
1056
  NextToken?: string;
1267
1057
  }
1268
- export declare namespace GetDocumentTextDetectionRequest {
1269
- /**
1270
- * @internal
1271
- */
1272
- const filterSensitiveLog: (obj: GetDocumentTextDetectionRequest) => any;
1273
- }
1274
1058
  export interface GetDocumentTextDetectionResponse {
1275
1059
  /**
1276
1060
  * <p>Information about a document that Amazon Textract processed. <code>DocumentMetadata</code> is
@@ -1304,12 +1088,6 @@ export interface GetDocumentTextDetectionResponse {
1304
1088
  */
1305
1089
  DetectDocumentTextModelVersion?: string;
1306
1090
  }
1307
- export declare namespace GetDocumentTextDetectionResponse {
1308
- /**
1309
- * @internal
1310
- */
1311
- const filterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
1312
- }
1313
1091
  export interface GetExpenseAnalysisRequest {
1314
1092
  /**
1315
1093
  * <p>A unique identifier for the text detection job. The <code>JobId</code> is returned from
@@ -1328,12 +1106,6 @@ export interface GetExpenseAnalysisRequest {
1328
1106
  */
1329
1107
  NextToken?: string;
1330
1108
  }
1331
- export declare namespace GetExpenseAnalysisRequest {
1332
- /**
1333
- * @internal
1334
- */
1335
- const filterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
1336
- }
1337
1109
  export interface GetExpenseAnalysisResponse {
1338
1110
  /**
1339
1111
  * <p>Information about a document that Amazon Textract processed. <code>DocumentMetadata</code> is
@@ -1367,12 +1139,6 @@ export interface GetExpenseAnalysisResponse {
1367
1139
  */
1368
1140
  AnalyzeExpenseModelVersion?: string;
1369
1141
  }
1370
- export declare namespace GetExpenseAnalysisResponse {
1371
- /**
1372
- * @internal
1373
- */
1374
- const filterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
1375
- }
1376
1142
  /**
1377
1143
  * <p>A <code>ClientRequestToken</code> input parameter was reused with an operation, but at
1378
1144
  * least one of the other input parameters is different from the previous call to the
@@ -1419,12 +1185,6 @@ export interface NotificationChannel {
1419
1185
  */
1420
1186
  RoleArn: string | undefined;
1421
1187
  }
1422
- export declare namespace NotificationChannel {
1423
- /**
1424
- * @internal
1425
- */
1426
- const filterSensitiveLog: (obj: NotificationChannel) => any;
1427
- }
1428
1188
  /**
1429
1189
  * <p>Sets whether or not your output will go to a user created bucket. Used to set the name
1430
1190
  * of the bucket, and the prefix on the output file.</p>
@@ -1454,12 +1214,6 @@ export interface OutputConfig {
1454
1214
  */
1455
1215
  S3Prefix?: string;
1456
1216
  }
1457
- export declare namespace OutputConfig {
1458
- /**
1459
- * @internal
1460
- */
1461
- const filterSensitiveLog: (obj: OutputConfig) => any;
1462
- }
1463
1217
  export interface StartDocumentAnalysisRequest {
1464
1218
  /**
1465
1219
  * <p>The location of the document to be processed.</p>
@@ -1512,12 +1266,6 @@ export interface StartDocumentAnalysisRequest {
1512
1266
  */
1513
1267
  QueriesConfig?: QueriesConfig;
1514
1268
  }
1515
- export declare namespace StartDocumentAnalysisRequest {
1516
- /**
1517
- * @internal
1518
- */
1519
- const filterSensitiveLog: (obj: StartDocumentAnalysisRequest) => any;
1520
- }
1521
1269
  export interface StartDocumentAnalysisResponse {
1522
1270
  /**
1523
1271
  * <p>The identifier for the document text detection job. Use <code>JobId</code> to identify
@@ -1526,12 +1274,6 @@ export interface StartDocumentAnalysisResponse {
1526
1274
  */
1527
1275
  JobId?: string;
1528
1276
  }
1529
- export declare namespace StartDocumentAnalysisResponse {
1530
- /**
1531
- * @internal
1532
- */
1533
- const filterSensitiveLog: (obj: StartDocumentAnalysisResponse) => any;
1534
- }
1535
1277
  export interface StartDocumentTextDetectionRequest {
1536
1278
  /**
1537
1279
  * <p>The location of the document to be processed.</p>
@@ -1571,12 +1313,6 @@ export interface StartDocumentTextDetectionRequest {
1571
1313
  */
1572
1314
  KMSKeyId?: string;
1573
1315
  }
1574
- export declare namespace StartDocumentTextDetectionRequest {
1575
- /**
1576
- * @internal
1577
- */
1578
- const filterSensitiveLog: (obj: StartDocumentTextDetectionRequest) => any;
1579
- }
1580
1316
  export interface StartDocumentTextDetectionResponse {
1581
1317
  /**
1582
1318
  * <p>The identifier of the text detection job for the document. Use <code>JobId</code> to
@@ -1585,12 +1321,6 @@ export interface StartDocumentTextDetectionResponse {
1585
1321
  */
1586
1322
  JobId?: string;
1587
1323
  }
1588
- export declare namespace StartDocumentTextDetectionResponse {
1589
- /**
1590
- * @internal
1591
- */
1592
- const filterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
1593
- }
1594
1324
  export interface StartExpenseAnalysisRequest {
1595
1325
  /**
1596
1326
  * <p>The location of the document to be processed.</p>
@@ -1630,12 +1360,6 @@ export interface StartExpenseAnalysisRequest {
1630
1360
  */
1631
1361
  KMSKeyId?: string;
1632
1362
  }
1633
- export declare namespace StartExpenseAnalysisRequest {
1634
- /**
1635
- * @internal
1636
- */
1637
- const filterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
1638
- }
1639
1363
  export interface StartExpenseAnalysisResponse {
1640
1364
  /**
1641
1365
  * <p>A unique identifier for the text detection job. The <code>JobId</code> is returned from
@@ -1643,9 +1367,191 @@ export interface StartExpenseAnalysisResponse {
1643
1367
  */
1644
1368
  JobId?: string;
1645
1369
  }
1646
- export declare namespace StartExpenseAnalysisResponse {
1647
- /**
1648
- * @internal
1649
- */
1650
- const filterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;
1651
- }
1370
+ /**
1371
+ * @internal
1372
+ */
1373
+ export declare const S3ObjectFilterSensitiveLog: (obj: S3Object) => any;
1374
+ /**
1375
+ * @internal
1376
+ */
1377
+ export declare const DocumentFilterSensitiveLog: (obj: Document) => any;
1378
+ /**
1379
+ * @internal
1380
+ */
1381
+ export declare const HumanLoopDataAttributesFilterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
1382
+ /**
1383
+ * @internal
1384
+ */
1385
+ export declare const HumanLoopConfigFilterSensitiveLog: (obj: HumanLoopConfig) => any;
1386
+ /**
1387
+ * @internal
1388
+ */
1389
+ export declare const QueryFilterSensitiveLog: (obj: Query) => any;
1390
+ /**
1391
+ * @internal
1392
+ */
1393
+ export declare const QueriesConfigFilterSensitiveLog: (obj: QueriesConfig) => any;
1394
+ /**
1395
+ * @internal
1396
+ */
1397
+ export declare const AnalyzeDocumentRequestFilterSensitiveLog: (obj: AnalyzeDocumentRequest) => any;
1398
+ /**
1399
+ * @internal
1400
+ */
1401
+ export declare const BoundingBoxFilterSensitiveLog: (obj: BoundingBox) => any;
1402
+ /**
1403
+ * @internal
1404
+ */
1405
+ export declare const PointFilterSensitiveLog: (obj: Point) => any;
1406
+ /**
1407
+ * @internal
1408
+ */
1409
+ export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
1410
+ /**
1411
+ * @internal
1412
+ */
1413
+ export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
1414
+ /**
1415
+ * @internal
1416
+ */
1417
+ export declare const BlockFilterSensitiveLog: (obj: Block) => any;
1418
+ /**
1419
+ * @internal
1420
+ */
1421
+ export declare const DocumentMetadataFilterSensitiveLog: (obj: DocumentMetadata) => any;
1422
+ /**
1423
+ * @internal
1424
+ */
1425
+ export declare const HumanLoopActivationOutputFilterSensitiveLog: (obj: HumanLoopActivationOutput) => any;
1426
+ /**
1427
+ * @internal
1428
+ */
1429
+ export declare const AnalyzeDocumentResponseFilterSensitiveLog: (obj: AnalyzeDocumentResponse) => any;
1430
+ /**
1431
+ * @internal
1432
+ */
1433
+ export declare const AnalyzeExpenseRequestFilterSensitiveLog: (obj: AnalyzeExpenseRequest) => any;
1434
+ /**
1435
+ * @internal
1436
+ */
1437
+ export declare const ExpenseDetectionFilterSensitiveLog: (obj: ExpenseDetection) => any;
1438
+ /**
1439
+ * @internal
1440
+ */
1441
+ export declare const ExpenseTypeFilterSensitiveLog: (obj: ExpenseType) => any;
1442
+ /**
1443
+ * @internal
1444
+ */
1445
+ export declare const ExpenseFieldFilterSensitiveLog: (obj: ExpenseField) => any;
1446
+ /**
1447
+ * @internal
1448
+ */
1449
+ export declare const LineItemFieldsFilterSensitiveLog: (obj: LineItemFields) => any;
1450
+ /**
1451
+ * @internal
1452
+ */
1453
+ export declare const LineItemGroupFilterSensitiveLog: (obj: LineItemGroup) => any;
1454
+ /**
1455
+ * @internal
1456
+ */
1457
+ export declare const ExpenseDocumentFilterSensitiveLog: (obj: ExpenseDocument) => any;
1458
+ /**
1459
+ * @internal
1460
+ */
1461
+ export declare const AnalyzeExpenseResponseFilterSensitiveLog: (obj: AnalyzeExpenseResponse) => any;
1462
+ /**
1463
+ * @internal
1464
+ */
1465
+ export declare const AnalyzeIDRequestFilterSensitiveLog: (obj: AnalyzeIDRequest) => any;
1466
+ /**
1467
+ * @internal
1468
+ */
1469
+ export declare const NormalizedValueFilterSensitiveLog: (obj: NormalizedValue) => any;
1470
+ /**
1471
+ * @internal
1472
+ */
1473
+ export declare const AnalyzeIDDetectionsFilterSensitiveLog: (obj: AnalyzeIDDetections) => any;
1474
+ /**
1475
+ * @internal
1476
+ */
1477
+ export declare const IdentityDocumentFieldFilterSensitiveLog: (obj: IdentityDocumentField) => any;
1478
+ /**
1479
+ * @internal
1480
+ */
1481
+ export declare const IdentityDocumentFilterSensitiveLog: (obj: IdentityDocument) => any;
1482
+ /**
1483
+ * @internal
1484
+ */
1485
+ export declare const AnalyzeIDResponseFilterSensitiveLog: (obj: AnalyzeIDResponse) => any;
1486
+ /**
1487
+ * @internal
1488
+ */
1489
+ export declare const DetectDocumentTextRequestFilterSensitiveLog: (obj: DetectDocumentTextRequest) => any;
1490
+ /**
1491
+ * @internal
1492
+ */
1493
+ export declare const DetectDocumentTextResponseFilterSensitiveLog: (obj: DetectDocumentTextResponse) => any;
1494
+ /**
1495
+ * @internal
1496
+ */
1497
+ export declare const DocumentLocationFilterSensitiveLog: (obj: DocumentLocation) => any;
1498
+ /**
1499
+ * @internal
1500
+ */
1501
+ export declare const GetDocumentAnalysisRequestFilterSensitiveLog: (obj: GetDocumentAnalysisRequest) => any;
1502
+ /**
1503
+ * @internal
1504
+ */
1505
+ export declare const WarningFilterSensitiveLog: (obj: Warning) => any;
1506
+ /**
1507
+ * @internal
1508
+ */
1509
+ export declare const GetDocumentAnalysisResponseFilterSensitiveLog: (obj: GetDocumentAnalysisResponse) => any;
1510
+ /**
1511
+ * @internal
1512
+ */
1513
+ export declare const GetDocumentTextDetectionRequestFilterSensitiveLog: (obj: GetDocumentTextDetectionRequest) => any;
1514
+ /**
1515
+ * @internal
1516
+ */
1517
+ export declare const GetDocumentTextDetectionResponseFilterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
1518
+ /**
1519
+ * @internal
1520
+ */
1521
+ export declare const GetExpenseAnalysisRequestFilterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
1522
+ /**
1523
+ * @internal
1524
+ */
1525
+ export declare const GetExpenseAnalysisResponseFilterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
1526
+ /**
1527
+ * @internal
1528
+ */
1529
+ export declare const NotificationChannelFilterSensitiveLog: (obj: NotificationChannel) => any;
1530
+ /**
1531
+ * @internal
1532
+ */
1533
+ export declare const OutputConfigFilterSensitiveLog: (obj: OutputConfig) => any;
1534
+ /**
1535
+ * @internal
1536
+ */
1537
+ export declare const StartDocumentAnalysisRequestFilterSensitiveLog: (obj: StartDocumentAnalysisRequest) => any;
1538
+ /**
1539
+ * @internal
1540
+ */
1541
+ export declare const StartDocumentAnalysisResponseFilterSensitiveLog: (obj: StartDocumentAnalysisResponse) => any;
1542
+ /**
1543
+ * @internal
1544
+ */
1545
+ export declare const StartDocumentTextDetectionRequestFilterSensitiveLog: (obj: StartDocumentTextDetectionRequest) => any;
1546
+ /**
1547
+ * @internal
1548
+ */
1549
+ export declare const StartDocumentTextDetectionResponseFilterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
1550
+ /**
1551
+ * @internal
1552
+ */
1553
+ export declare const StartExpenseAnalysisRequestFilterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
1554
+ /**
1555
+ * @internal
1556
+ */
1557
+ export declare const StartExpenseAnalysisResponseFilterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;