@aws-sdk/client-textract 3.50.0 → 3.53.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 (36) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/TextractServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +221 -2
  5. package/dist-cjs/protocols/Aws_json1_1.js +209 -766
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/TextractServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +206 -1
  9. package/dist-es/protocols/Aws_json1_1.js +387 -779
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/TextractServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +105 -44
  13. package/dist-types/ts3.4/Textract.d.ts +55 -0
  14. package/dist-types/ts3.4/TextractClient.d.ts +83 -0
  15. package/dist-types/ts3.4/commands/AnalyzeDocumentCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/AnalyzeExpenseCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/AnalyzeIDCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DetectDocumentTextCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetDocumentAnalysisCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetDocumentTextDetectionCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetExpenseAnalysisCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/StartDocumentAnalysisCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/StartDocumentTextDetectionCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/StartExpenseAnalysisCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  27. package/dist-types/ts3.4/index.d.ts +5 -0
  28. package/dist-types/ts3.4/models/TextractServiceException.d.ts +6 -0
  29. package/dist-types/ts3.4/models/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +753 -0
  31. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +32 -0
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  36. package/package.json +33 -33
@@ -0,0 +1,753 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
+ import { TextractServiceException as __BaseException } from "./TextractServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+ Code?: string;
9
+
10
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
11
+ }
12
+
13
+ export interface S3Object {
14
+
15
+ Bucket?: string;
16
+
17
+ Name?: string;
18
+
19
+ Version?: string;
20
+ }
21
+ export declare namespace S3Object {
22
+
23
+ const filterSensitiveLog: (obj: S3Object) => any;
24
+ }
25
+
26
+ export interface Document {
27
+
28
+ Bytes?: Uint8Array;
29
+
30
+ S3Object?: S3Object;
31
+ }
32
+ export declare namespace Document {
33
+
34
+ const filterSensitiveLog: (obj: Document) => any;
35
+ }
36
+ export declare enum FeatureType {
37
+ FORMS = "FORMS",
38
+ TABLES = "TABLES"
39
+ }
40
+ export declare enum ContentClassifier {
41
+ FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
42
+ FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation"
43
+ }
44
+
45
+ export interface HumanLoopDataAttributes {
46
+
47
+ ContentClassifiers?: (ContentClassifier | string)[];
48
+ }
49
+ export declare namespace HumanLoopDataAttributes {
50
+
51
+ const filterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
52
+ }
53
+
54
+ export interface HumanLoopConfig {
55
+
56
+ HumanLoopName: string | undefined;
57
+
58
+ FlowDefinitionArn: string | undefined;
59
+
60
+ DataAttributes?: HumanLoopDataAttributes;
61
+ }
62
+ export declare namespace HumanLoopConfig {
63
+
64
+ const filterSensitiveLog: (obj: HumanLoopConfig) => any;
65
+ }
66
+ export interface AnalyzeDocumentRequest {
67
+
68
+ Document: Document | undefined;
69
+
70
+ FeatureTypes: (FeatureType | string)[] | undefined;
71
+
72
+ HumanLoopConfig?: HumanLoopConfig;
73
+ }
74
+ export declare namespace AnalyzeDocumentRequest {
75
+
76
+ const filterSensitiveLog: (obj: AnalyzeDocumentRequest) => any;
77
+ }
78
+ export declare enum BlockType {
79
+ CELL = "CELL",
80
+ KEY_VALUE_SET = "KEY_VALUE_SET",
81
+ LINE = "LINE",
82
+ MERGED_CELL = "MERGED_CELL",
83
+ PAGE = "PAGE",
84
+ SELECTION_ELEMENT = "SELECTION_ELEMENT",
85
+ TABLE = "TABLE",
86
+ TITLE = "TITLE",
87
+ WORD = "WORD"
88
+ }
89
+ export declare enum EntityType {
90
+ COLUMN_HEADER = "COLUMN_HEADER",
91
+ KEY = "KEY",
92
+ VALUE = "VALUE"
93
+ }
94
+
95
+ export interface BoundingBox {
96
+
97
+ Width?: number;
98
+
99
+ Height?: number;
100
+
101
+ Left?: number;
102
+
103
+ Top?: number;
104
+ }
105
+ export declare namespace BoundingBox {
106
+
107
+ const filterSensitiveLog: (obj: BoundingBox) => any;
108
+ }
109
+
110
+ export interface Point {
111
+
112
+ X?: number;
113
+
114
+ Y?: number;
115
+ }
116
+ export declare namespace Point {
117
+
118
+ const filterSensitiveLog: (obj: Point) => any;
119
+ }
120
+
121
+ export interface Geometry {
122
+
123
+ BoundingBox?: BoundingBox;
124
+
125
+ Polygon?: Point[];
126
+ }
127
+ export declare namespace Geometry {
128
+
129
+ const filterSensitiveLog: (obj: Geometry) => any;
130
+ }
131
+ export declare enum RelationshipType {
132
+ CHILD = "CHILD",
133
+ COMPLEX_FEATURES = "COMPLEX_FEATURES",
134
+ MERGED_CELL = "MERGED_CELL",
135
+ TITLE = "TITLE",
136
+ VALUE = "VALUE"
137
+ }
138
+
139
+ export interface Relationship {
140
+
141
+ Type?: RelationshipType | string;
142
+
143
+ Ids?: string[];
144
+ }
145
+ export declare namespace Relationship {
146
+
147
+ const filterSensitiveLog: (obj: Relationship) => any;
148
+ }
149
+ export declare enum SelectionStatus {
150
+ NOT_SELECTED = "NOT_SELECTED",
151
+ SELECTED = "SELECTED"
152
+ }
153
+ export declare enum TextType {
154
+ HANDWRITING = "HANDWRITING",
155
+ PRINTED = "PRINTED"
156
+ }
157
+
158
+ export interface Block {
159
+
160
+ BlockType?: BlockType | string;
161
+
162
+ Confidence?: number;
163
+
164
+ Text?: string;
165
+
166
+ TextType?: TextType | string;
167
+
168
+ RowIndex?: number;
169
+
170
+ ColumnIndex?: number;
171
+
172
+ RowSpan?: number;
173
+
174
+ ColumnSpan?: number;
175
+
176
+ Geometry?: Geometry;
177
+
178
+ Id?: string;
179
+
180
+ Relationships?: Relationship[];
181
+
182
+ EntityTypes?: (EntityType | string)[];
183
+
184
+ SelectionStatus?: SelectionStatus | string;
185
+
186
+ Page?: number;
187
+ }
188
+ export declare namespace Block {
189
+
190
+ const filterSensitiveLog: (obj: Block) => any;
191
+ }
192
+
193
+ export interface DocumentMetadata {
194
+
195
+ Pages?: number;
196
+ }
197
+ export declare namespace DocumentMetadata {
198
+
199
+ const filterSensitiveLog: (obj: DocumentMetadata) => any;
200
+ }
201
+
202
+ export interface HumanLoopActivationOutput {
203
+
204
+ HumanLoopArn?: string;
205
+
206
+ HumanLoopActivationReasons?: string[];
207
+
208
+ HumanLoopActivationConditionsEvaluationResults?: __LazyJsonString | string;
209
+ }
210
+ export declare namespace HumanLoopActivationOutput {
211
+
212
+ const filterSensitiveLog: (obj: HumanLoopActivationOutput) => any;
213
+ }
214
+ export interface AnalyzeDocumentResponse {
215
+
216
+ DocumentMetadata?: DocumentMetadata;
217
+
218
+ Blocks?: Block[];
219
+
220
+ HumanLoopActivationOutput?: HumanLoopActivationOutput;
221
+
222
+ AnalyzeDocumentModelVersion?: string;
223
+ }
224
+ export declare namespace AnalyzeDocumentResponse {
225
+
226
+ const filterSensitiveLog: (obj: AnalyzeDocumentResponse) => any;
227
+ }
228
+
229
+ export declare class BadDocumentException extends __BaseException {
230
+ readonly name: "BadDocumentException";
231
+ readonly $fault: "client";
232
+ Message?: string;
233
+ Code?: string;
234
+
235
+ constructor(opts: __ExceptionOptionType<BadDocumentException, __BaseException>);
236
+ }
237
+
238
+ export declare class DocumentTooLargeException extends __BaseException {
239
+ readonly name: "DocumentTooLargeException";
240
+ readonly $fault: "client";
241
+ Message?: string;
242
+ Code?: string;
243
+
244
+ constructor(opts: __ExceptionOptionType<DocumentTooLargeException, __BaseException>);
245
+ }
246
+
247
+ export declare class HumanLoopQuotaExceededException extends __BaseException {
248
+ readonly name: "HumanLoopQuotaExceededException";
249
+ readonly $fault: "client";
250
+
251
+ ResourceType?: string;
252
+
253
+ QuotaCode?: string;
254
+
255
+ ServiceCode?: string;
256
+ Message?: string;
257
+ Code?: string;
258
+
259
+ constructor(opts: __ExceptionOptionType<HumanLoopQuotaExceededException, __BaseException>);
260
+ }
261
+
262
+ export declare class InternalServerError extends __BaseException {
263
+ readonly name: "InternalServerError";
264
+ readonly $fault: "server";
265
+ Message?: string;
266
+ Code?: string;
267
+
268
+ constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
269
+ }
270
+
271
+ export declare class InvalidParameterException extends __BaseException {
272
+ readonly name: "InvalidParameterException";
273
+ readonly $fault: "client";
274
+ Message?: string;
275
+ Code?: string;
276
+
277
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
278
+ }
279
+
280
+ export declare class InvalidS3ObjectException extends __BaseException {
281
+ readonly name: "InvalidS3ObjectException";
282
+ readonly $fault: "client";
283
+ Message?: string;
284
+ Code?: string;
285
+
286
+ constructor(opts: __ExceptionOptionType<InvalidS3ObjectException, __BaseException>);
287
+ }
288
+
289
+ export declare class ProvisionedThroughputExceededException extends __BaseException {
290
+ readonly name: "ProvisionedThroughputExceededException";
291
+ readonly $fault: "client";
292
+ Message?: string;
293
+ Code?: string;
294
+
295
+ constructor(opts: __ExceptionOptionType<ProvisionedThroughputExceededException, __BaseException>);
296
+ }
297
+
298
+ export declare class ThrottlingException extends __BaseException {
299
+ readonly name: "ThrottlingException";
300
+ readonly $fault: "server";
301
+ Message?: string;
302
+ Code?: string;
303
+
304
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
305
+ }
306
+
307
+ export declare class UnsupportedDocumentException extends __BaseException {
308
+ readonly name: "UnsupportedDocumentException";
309
+ readonly $fault: "client";
310
+ Message?: string;
311
+ Code?: string;
312
+
313
+ constructor(opts: __ExceptionOptionType<UnsupportedDocumentException, __BaseException>);
314
+ }
315
+ export interface AnalyzeExpenseRequest {
316
+
317
+ Document: Document | undefined;
318
+ }
319
+ export declare namespace AnalyzeExpenseRequest {
320
+
321
+ const filterSensitiveLog: (obj: AnalyzeExpenseRequest) => any;
322
+ }
323
+
324
+ export interface ExpenseDetection {
325
+
326
+ Text?: string;
327
+
328
+ Geometry?: Geometry;
329
+
330
+ Confidence?: number;
331
+ }
332
+ export declare namespace ExpenseDetection {
333
+
334
+ const filterSensitiveLog: (obj: ExpenseDetection) => any;
335
+ }
336
+
337
+ export interface ExpenseType {
338
+
339
+ Text?: string;
340
+
341
+ Confidence?: number;
342
+ }
343
+ export declare namespace ExpenseType {
344
+
345
+ const filterSensitiveLog: (obj: ExpenseType) => any;
346
+ }
347
+
348
+ export interface ExpenseField {
349
+
350
+ Type?: ExpenseType;
351
+
352
+ LabelDetection?: ExpenseDetection;
353
+
354
+ ValueDetection?: ExpenseDetection;
355
+
356
+ PageNumber?: number;
357
+ }
358
+ export declare namespace ExpenseField {
359
+
360
+ const filterSensitiveLog: (obj: ExpenseField) => any;
361
+ }
362
+
363
+ export interface LineItemFields {
364
+
365
+ LineItemExpenseFields?: ExpenseField[];
366
+ }
367
+ export declare namespace LineItemFields {
368
+
369
+ const filterSensitiveLog: (obj: LineItemFields) => any;
370
+ }
371
+
372
+ export interface LineItemGroup {
373
+
374
+ LineItemGroupIndex?: number;
375
+
376
+ LineItems?: LineItemFields[];
377
+ }
378
+ export declare namespace LineItemGroup {
379
+
380
+ const filterSensitiveLog: (obj: LineItemGroup) => any;
381
+ }
382
+
383
+ export interface ExpenseDocument {
384
+
385
+ ExpenseIndex?: number;
386
+
387
+ SummaryFields?: ExpenseField[];
388
+
389
+ LineItemGroups?: LineItemGroup[];
390
+ }
391
+ export declare namespace ExpenseDocument {
392
+
393
+ const filterSensitiveLog: (obj: ExpenseDocument) => any;
394
+ }
395
+ export interface AnalyzeExpenseResponse {
396
+
397
+ DocumentMetadata?: DocumentMetadata;
398
+
399
+ ExpenseDocuments?: ExpenseDocument[];
400
+ }
401
+ export declare namespace AnalyzeExpenseResponse {
402
+
403
+ const filterSensitiveLog: (obj: AnalyzeExpenseResponse) => any;
404
+ }
405
+ export interface AnalyzeIDRequest {
406
+
407
+ DocumentPages: Document[] | undefined;
408
+ }
409
+ export declare namespace AnalyzeIDRequest {
410
+
411
+ const filterSensitiveLog: (obj: AnalyzeIDRequest) => any;
412
+ }
413
+ export declare enum ValueType {
414
+ DATE = "DATE"
415
+ }
416
+
417
+ export interface NormalizedValue {
418
+
419
+ Value?: string;
420
+
421
+ ValueType?: ValueType | string;
422
+ }
423
+ export declare namespace NormalizedValue {
424
+
425
+ const filterSensitiveLog: (obj: NormalizedValue) => any;
426
+ }
427
+
428
+ export interface AnalyzeIDDetections {
429
+
430
+ Text: string | undefined;
431
+
432
+ NormalizedValue?: NormalizedValue;
433
+
434
+ Confidence?: number;
435
+ }
436
+ export declare namespace AnalyzeIDDetections {
437
+
438
+ const filterSensitiveLog: (obj: AnalyzeIDDetections) => any;
439
+ }
440
+
441
+ export interface IdentityDocumentField {
442
+
443
+ Type?: AnalyzeIDDetections;
444
+
445
+ ValueDetection?: AnalyzeIDDetections;
446
+ }
447
+ export declare namespace IdentityDocumentField {
448
+
449
+ const filterSensitiveLog: (obj: IdentityDocumentField) => any;
450
+ }
451
+
452
+ export interface IdentityDocument {
453
+
454
+ DocumentIndex?: number;
455
+
456
+ IdentityDocumentFields?: IdentityDocumentField[];
457
+ }
458
+ export declare namespace IdentityDocument {
459
+
460
+ const filterSensitiveLog: (obj: IdentityDocument) => any;
461
+ }
462
+ export interface AnalyzeIDResponse {
463
+
464
+ IdentityDocuments?: IdentityDocument[];
465
+
466
+ DocumentMetadata?: DocumentMetadata;
467
+
468
+ AnalyzeIDModelVersion?: string;
469
+ }
470
+ export declare namespace AnalyzeIDResponse {
471
+
472
+ const filterSensitiveLog: (obj: AnalyzeIDResponse) => any;
473
+ }
474
+ export interface DetectDocumentTextRequest {
475
+
476
+ Document: Document | undefined;
477
+ }
478
+ export declare namespace DetectDocumentTextRequest {
479
+
480
+ const filterSensitiveLog: (obj: DetectDocumentTextRequest) => any;
481
+ }
482
+ export interface DetectDocumentTextResponse {
483
+
484
+ DocumentMetadata?: DocumentMetadata;
485
+
486
+ Blocks?: Block[];
487
+
488
+ DetectDocumentTextModelVersion?: string;
489
+ }
490
+ export declare namespace DetectDocumentTextResponse {
491
+
492
+ const filterSensitiveLog: (obj: DetectDocumentTextResponse) => any;
493
+ }
494
+
495
+ export interface DocumentLocation {
496
+
497
+ S3Object?: S3Object;
498
+ }
499
+ export declare namespace DocumentLocation {
500
+
501
+ const filterSensitiveLog: (obj: DocumentLocation) => any;
502
+ }
503
+ export interface GetDocumentAnalysisRequest {
504
+
505
+ JobId: string | undefined;
506
+
507
+ MaxResults?: number;
508
+
509
+ NextToken?: string;
510
+ }
511
+ export declare namespace GetDocumentAnalysisRequest {
512
+
513
+ const filterSensitiveLog: (obj: GetDocumentAnalysisRequest) => any;
514
+ }
515
+ export declare enum JobStatus {
516
+ FAILED = "FAILED",
517
+ IN_PROGRESS = "IN_PROGRESS",
518
+ PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
519
+ SUCCEEDED = "SUCCEEDED"
520
+ }
521
+
522
+ export interface Warning {
523
+
524
+ ErrorCode?: string;
525
+
526
+ Pages?: number[];
527
+ }
528
+ export declare namespace Warning {
529
+
530
+ const filterSensitiveLog: (obj: Warning) => any;
531
+ }
532
+ export interface GetDocumentAnalysisResponse {
533
+
534
+ DocumentMetadata?: DocumentMetadata;
535
+
536
+ JobStatus?: JobStatus | string;
537
+
538
+ NextToken?: string;
539
+
540
+ Blocks?: Block[];
541
+
542
+ Warnings?: Warning[];
543
+
544
+ StatusMessage?: string;
545
+
546
+ AnalyzeDocumentModelVersion?: string;
547
+ }
548
+ export declare namespace GetDocumentAnalysisResponse {
549
+
550
+ const filterSensitiveLog: (obj: GetDocumentAnalysisResponse) => any;
551
+ }
552
+
553
+ export declare class InvalidJobIdException extends __BaseException {
554
+ readonly name: "InvalidJobIdException";
555
+ readonly $fault: "client";
556
+ Message?: string;
557
+ Code?: string;
558
+
559
+ constructor(opts: __ExceptionOptionType<InvalidJobIdException, __BaseException>);
560
+ }
561
+
562
+ export declare class InvalidKMSKeyException extends __BaseException {
563
+ readonly name: "InvalidKMSKeyException";
564
+ readonly $fault: "client";
565
+ Message?: string;
566
+ Code?: string;
567
+
568
+ constructor(opts: __ExceptionOptionType<InvalidKMSKeyException, __BaseException>);
569
+ }
570
+ export interface GetDocumentTextDetectionRequest {
571
+
572
+ JobId: string | undefined;
573
+
574
+ MaxResults?: number;
575
+
576
+ NextToken?: string;
577
+ }
578
+ export declare namespace GetDocumentTextDetectionRequest {
579
+
580
+ const filterSensitiveLog: (obj: GetDocumentTextDetectionRequest) => any;
581
+ }
582
+ export interface GetDocumentTextDetectionResponse {
583
+
584
+ DocumentMetadata?: DocumentMetadata;
585
+
586
+ JobStatus?: JobStatus | string;
587
+
588
+ NextToken?: string;
589
+
590
+ Blocks?: Block[];
591
+
592
+ Warnings?: Warning[];
593
+
594
+ StatusMessage?: string;
595
+
596
+ DetectDocumentTextModelVersion?: string;
597
+ }
598
+ export declare namespace GetDocumentTextDetectionResponse {
599
+
600
+ const filterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
601
+ }
602
+ export interface GetExpenseAnalysisRequest {
603
+
604
+ JobId: string | undefined;
605
+
606
+ MaxResults?: number;
607
+
608
+ NextToken?: string;
609
+ }
610
+ export declare namespace GetExpenseAnalysisRequest {
611
+
612
+ const filterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
613
+ }
614
+ export interface GetExpenseAnalysisResponse {
615
+
616
+ DocumentMetadata?: DocumentMetadata;
617
+
618
+ JobStatus?: JobStatus | string;
619
+
620
+ NextToken?: string;
621
+
622
+ ExpenseDocuments?: ExpenseDocument[];
623
+
624
+ Warnings?: Warning[];
625
+
626
+ StatusMessage?: string;
627
+
628
+ AnalyzeExpenseModelVersion?: string;
629
+ }
630
+ export declare namespace GetExpenseAnalysisResponse {
631
+
632
+ const filterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
633
+ }
634
+
635
+ export declare class IdempotentParameterMismatchException extends __BaseException {
636
+ readonly name: "IdempotentParameterMismatchException";
637
+ readonly $fault: "client";
638
+ Message?: string;
639
+ Code?: string;
640
+
641
+ constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
642
+ }
643
+
644
+ export declare class LimitExceededException extends __BaseException {
645
+ readonly name: "LimitExceededException";
646
+ readonly $fault: "client";
647
+ Message?: string;
648
+ Code?: string;
649
+
650
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
651
+ }
652
+
653
+ export interface NotificationChannel {
654
+
655
+ SNSTopicArn: string | undefined;
656
+
657
+ RoleArn: string | undefined;
658
+ }
659
+ export declare namespace NotificationChannel {
660
+
661
+ const filterSensitiveLog: (obj: NotificationChannel) => any;
662
+ }
663
+
664
+ export interface OutputConfig {
665
+
666
+ S3Bucket: string | undefined;
667
+
668
+ S3Prefix?: string;
669
+ }
670
+ export declare namespace OutputConfig {
671
+
672
+ const filterSensitiveLog: (obj: OutputConfig) => any;
673
+ }
674
+ export interface StartDocumentAnalysisRequest {
675
+
676
+ DocumentLocation: DocumentLocation | undefined;
677
+
678
+ FeatureTypes: (FeatureType | string)[] | undefined;
679
+
680
+ ClientRequestToken?: string;
681
+
682
+ JobTag?: string;
683
+
684
+ NotificationChannel?: NotificationChannel;
685
+
686
+ OutputConfig?: OutputConfig;
687
+
688
+ KMSKeyId?: string;
689
+ }
690
+ export declare namespace StartDocumentAnalysisRequest {
691
+
692
+ const filterSensitiveLog: (obj: StartDocumentAnalysisRequest) => any;
693
+ }
694
+ export interface StartDocumentAnalysisResponse {
695
+
696
+ JobId?: string;
697
+ }
698
+ export declare namespace StartDocumentAnalysisResponse {
699
+
700
+ const filterSensitiveLog: (obj: StartDocumentAnalysisResponse) => any;
701
+ }
702
+ export interface StartDocumentTextDetectionRequest {
703
+
704
+ DocumentLocation: DocumentLocation | undefined;
705
+
706
+ ClientRequestToken?: string;
707
+
708
+ JobTag?: string;
709
+
710
+ NotificationChannel?: NotificationChannel;
711
+
712
+ OutputConfig?: OutputConfig;
713
+
714
+ KMSKeyId?: string;
715
+ }
716
+ export declare namespace StartDocumentTextDetectionRequest {
717
+
718
+ const filterSensitiveLog: (obj: StartDocumentTextDetectionRequest) => any;
719
+ }
720
+ export interface StartDocumentTextDetectionResponse {
721
+
722
+ JobId?: string;
723
+ }
724
+ export declare namespace StartDocumentTextDetectionResponse {
725
+
726
+ const filterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
727
+ }
728
+ export interface StartExpenseAnalysisRequest {
729
+
730
+ DocumentLocation: DocumentLocation | undefined;
731
+
732
+ ClientRequestToken?: string;
733
+
734
+ JobTag?: string;
735
+
736
+ NotificationChannel?: NotificationChannel;
737
+
738
+ OutputConfig?: OutputConfig;
739
+
740
+ KMSKeyId?: string;
741
+ }
742
+ export declare namespace StartExpenseAnalysisRequest {
743
+
744
+ const filterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
745
+ }
746
+ export interface StartExpenseAnalysisResponse {
747
+
748
+ JobId?: string;
749
+ }
750
+ export declare namespace StartExpenseAnalysisResponse {
751
+
752
+ const filterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;
753
+ }