@aws-sdk/client-textract 3.297.0 → 3.299.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/commands/AnalyzeDocumentCommand.js +2 -3
- package/dist-cjs/commands/AnalyzeExpenseCommand.js +2 -3
- package/dist-cjs/commands/AnalyzeIDCommand.js +2 -3
- package/dist-cjs/commands/DetectDocumentTextCommand.js +2 -3
- package/dist-cjs/commands/GetDocumentAnalysisCommand.js +2 -3
- package/dist-cjs/commands/GetDocumentTextDetectionCommand.js +2 -3
- package/dist-cjs/commands/GetExpenseAnalysisCommand.js +2 -3
- package/dist-cjs/commands/GetLendingAnalysisCommand.js +2 -3
- package/dist-cjs/commands/GetLendingAnalysisSummaryCommand.js +2 -3
- package/dist-cjs/commands/StartDocumentAnalysisCommand.js +2 -3
- package/dist-cjs/commands/StartDocumentTextDetectionCommand.js +2 -3
- package/dist-cjs/commands/StartExpenseAnalysisCommand.js +2 -3
- package/dist-cjs/commands/StartLendingAnalysisCommand.js +2 -3
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +12 -274
- package/dist-es/commands/AnalyzeDocumentCommand.js +2 -3
- package/dist-es/commands/AnalyzeExpenseCommand.js +2 -3
- package/dist-es/commands/AnalyzeIDCommand.js +2 -3
- package/dist-es/commands/DetectDocumentTextCommand.js +2 -3
- package/dist-es/commands/GetDocumentAnalysisCommand.js +2 -3
- package/dist-es/commands/GetDocumentTextDetectionCommand.js +2 -3
- package/dist-es/commands/GetExpenseAnalysisCommand.js +2 -3
- package/dist-es/commands/GetLendingAnalysisCommand.js +2 -3
- package/dist-es/commands/GetLendingAnalysisSummaryCommand.js +2 -3
- package/dist-es/commands/StartDocumentAnalysisCommand.js +2 -3
- package/dist-es/commands/StartDocumentTextDetectionCommand.js +2 -3
- package/dist-es/commands/StartExpenseAnalysisCommand.js +2 -3
- package/dist-es/commands/StartLendingAnalysisCommand.js +2 -3
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +11 -204
- package/dist-types/Textract.d.ts +3 -13
- package/dist-types/commands/AnalyzeDocumentCommand.d.ts +0 -2
- package/dist-types/commands/AnalyzeIDCommand.d.ts +1 -1
- package/dist-types/commands/DetectDocumentTextCommand.d.ts +0 -1
- package/dist-types/commands/GetDocumentAnalysisCommand.d.ts +0 -4
- package/dist-types/commands/GetDocumentTextDetectionCommand.d.ts +0 -1
- package/dist-types/commands/GetLendingAnalysisCommand.d.ts +2 -2
- package/dist-types/commands/StartDocumentAnalysisCommand.d.ts +0 -1
- package/dist-types/commands/StartExpenseAnalysisCommand.d.ts +0 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +114 -300
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -174
- package/package.json +11 -10
|
@@ -21,7 +21,6 @@ export interface StartDocumentAnalysisCommandOutput extends StartDocumentAnalysi
|
|
|
21
21
|
* @public
|
|
22
22
|
* <p>Starts the asynchronous analysis of an input document for relationships between detected
|
|
23
23
|
* items such as key-value pairs, tables, and selection elements.</p>
|
|
24
|
-
*
|
|
25
24
|
* <p>
|
|
26
25
|
* <code>StartDocumentAnalysis</code> can analyze text in documents that are in JPEG, PNG, TIFF, and PDF format. The
|
|
27
26
|
* documents are stored in an Amazon S3 bucket. Use <a>DocumentLocation</a> to specify the bucket name and file name
|
|
@@ -21,7 +21,6 @@ export interface StartExpenseAnalysisCommandOutput extends StartExpenseAnalysisR
|
|
|
21
21
|
* @public
|
|
22
22
|
* <p>Starts the asynchronous analysis of invoices or receipts for data like contact information,
|
|
23
23
|
* items purchased, and vendor names.</p>
|
|
24
|
-
*
|
|
25
24
|
* <p>
|
|
26
25
|
* <code>StartExpenseAnalysis</code> can analyze text in documents that are in JPEG, PNG, and
|
|
27
26
|
* PDF format. The documents must be stored in an Amazon S3 bucket. Use the <a>DocumentLocation</a> parameter to specify the name of your S3 bucket and the name of the
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region?: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|
|
@@ -20,7 +20,6 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
20
20
|
* <p>The S3 bucket name and file name that identifies the document.</p>
|
|
21
21
|
* <p>The AWS Region for the S3 bucket that contains the document must match the Region that
|
|
22
22
|
* you use for Amazon Textract operations.</p>
|
|
23
|
-
*
|
|
24
23
|
* <p>For Amazon Textract to process a file in an S3 bucket, the user must have
|
|
25
24
|
* permission to access the S3 bucket and file.
|
|
26
25
|
*
|
|
@@ -58,7 +57,6 @@ export interface S3Object {
|
|
|
58
57
|
* <p>If you use the AWS CLI to call Amazon Textract operations, passing image bytes using
|
|
59
58
|
* the Bytes property isn't supported. You must first upload the document to an Amazon S3
|
|
60
59
|
* bucket, and then call the operation using the S3Object property.</p>
|
|
61
|
-
*
|
|
62
60
|
* <p>For Amazon Textract to process an S3 object, the user must have permission
|
|
63
61
|
* to access the S3 object. </p>
|
|
64
62
|
*/
|
|
@@ -218,6 +216,8 @@ export declare enum BlockType {
|
|
|
218
216
|
SELECTION_ELEMENT = "SELECTION_ELEMENT",
|
|
219
217
|
SIGNATURE = "SIGNATURE",
|
|
220
218
|
TABLE = "TABLE",
|
|
219
|
+
TABLE_FOOTER = "TABLE_FOOTER",
|
|
220
|
+
TABLE_TITLE = "TABLE_TITLE",
|
|
221
221
|
TITLE = "TITLE",
|
|
222
222
|
WORD = "WORD"
|
|
223
223
|
}
|
|
@@ -227,6 +227,12 @@ export declare enum BlockType {
|
|
|
227
227
|
export declare enum EntityType {
|
|
228
228
|
COLUMN_HEADER = "COLUMN_HEADER",
|
|
229
229
|
KEY = "KEY",
|
|
230
|
+
SEMI_STRUCTURED_TABLE = "SEMI_STRUCTURED_TABLE",
|
|
231
|
+
STRUCTURED_TABLE = "STRUCTURED_TABLE",
|
|
232
|
+
TABLE_FOOTER = "TABLE_FOOTER",
|
|
233
|
+
TABLE_SECTION_TITLE = "TABLE_SECTION_TITLE",
|
|
234
|
+
TABLE_SUMMARY = "TABLE_SUMMARY",
|
|
235
|
+
TABLE_TITLE = "TABLE_TITLE",
|
|
230
236
|
VALUE = "VALUE"
|
|
231
237
|
}
|
|
232
238
|
/**
|
|
@@ -272,7 +278,6 @@ export interface BoundingBox {
|
|
|
272
278
|
* values that are returned are ratios of the overall document page size. For example, if the
|
|
273
279
|
* input document is 700 x 200 and the operation returns X=0.5 and Y=0.25, then the point is
|
|
274
280
|
* at the (350,50) pixel coordinate on the document page.</p>
|
|
275
|
-
*
|
|
276
281
|
* <p>An array of <code>Point</code> objects, <code>Polygon</code>, is returned
|
|
277
282
|
* by <a>DetectDocumentText</a>. <code>Polygon</code> represents a fine-grained
|
|
278
283
|
* polygon around detected text. For more information, see Geometry in the Amazon Textract
|
|
@@ -312,6 +317,9 @@ export declare enum RelationshipType {
|
|
|
312
317
|
CHILD = "CHILD",
|
|
313
318
|
COMPLEX_FEATURES = "COMPLEX_FEATURES",
|
|
314
319
|
MERGED_CELL = "MERGED_CELL",
|
|
320
|
+
TABLE = "TABLE",
|
|
321
|
+
TABLE_FOOTER = "TABLE_FOOTER",
|
|
322
|
+
TABLE_TITLE = "TABLE_TITLE",
|
|
315
323
|
TITLE = "TITLE",
|
|
316
324
|
VALUE = "VALUE"
|
|
317
325
|
}
|
|
@@ -325,12 +333,46 @@ export declare enum RelationshipType {
|
|
|
325
333
|
*/
|
|
326
334
|
export interface Relationship {
|
|
327
335
|
/**
|
|
328
|
-
* <p>The type of relationship
|
|
329
|
-
*
|
|
330
|
-
*
|
|
331
|
-
*
|
|
332
|
-
*
|
|
333
|
-
*
|
|
336
|
+
* <p>The type of relationship between the blocks in the IDs array and the current block. The
|
|
337
|
+
* following list describes the relationship types that can be returned. </p>
|
|
338
|
+
* <ul>
|
|
339
|
+
* <li>
|
|
340
|
+
* <p>
|
|
341
|
+
* <i>VALUE</i> - A list that contains the ID of the VALUE block that's associated with the
|
|
342
|
+
* KEY of a key-value pair.</p>
|
|
343
|
+
* </li>
|
|
344
|
+
* <li>
|
|
345
|
+
* <p>
|
|
346
|
+
* <i>CHILD</i> - A list of IDs that identify blocks found within the
|
|
347
|
+
* current block object. For example, WORD blocks have a CHILD relationship to the LINE
|
|
348
|
+
* block type.</p>
|
|
349
|
+
* </li>
|
|
350
|
+
* <li>
|
|
351
|
+
* <p>
|
|
352
|
+
* <i>MERGED_CELL</i> - A list of IDs that identify each of the
|
|
353
|
+
* MERGED_CELL block types in a table.</p>
|
|
354
|
+
* </li>
|
|
355
|
+
* <li>
|
|
356
|
+
* <p>
|
|
357
|
+
* <i>ANSWER</i> - A list that contains the ID of the QUERY_RESULT
|
|
358
|
+
* block that’s associated with the corresponding QUERY block. </p>
|
|
359
|
+
* </li>
|
|
360
|
+
* <li>
|
|
361
|
+
* <p>
|
|
362
|
+
* <i>TABLE</i> - A list of IDs that identify associated TABLE block
|
|
363
|
+
* types. </p>
|
|
364
|
+
* </li>
|
|
365
|
+
* <li>
|
|
366
|
+
* <p>
|
|
367
|
+
* <i>TABLE_TITLE</i> - A list that contains the ID for the TABLE_TITLE
|
|
368
|
+
* block type in a table. </p>
|
|
369
|
+
* </li>
|
|
370
|
+
* <li>
|
|
371
|
+
* <p>
|
|
372
|
+
* <i>TABLE_FOOTER</i> - A list of IDs that identify the TABLE_FOOTER
|
|
373
|
+
* block types in a table. </p>
|
|
374
|
+
* </li>
|
|
375
|
+
* </ul>
|
|
334
376
|
*/
|
|
335
377
|
Type?: RelationshipType | string;
|
|
336
378
|
/**
|
|
@@ -422,11 +464,28 @@ export interface Block {
|
|
|
422
464
|
* </li>
|
|
423
465
|
* <li>
|
|
424
466
|
* <p>
|
|
467
|
+
* <i>TABLE_TITLE</i> - The title of a table. A title is typically a
|
|
468
|
+
* line of text above or below a table, or embedded as the first row of a table. </p>
|
|
469
|
+
* </li>
|
|
470
|
+
* <li>
|
|
471
|
+
* <p>
|
|
472
|
+
* <i>TABLE_FOOTER</i> - The footer associated with a table. A footer
|
|
473
|
+
* is typically a line or lines of text below a table or embedded as the last row of a
|
|
474
|
+
* table. </p>
|
|
475
|
+
* </li>
|
|
476
|
+
* <li>
|
|
477
|
+
* <p>
|
|
425
478
|
* <i>CELL</i> - A cell within a detected table. The cell is the parent
|
|
426
479
|
* of the block that contains the text in the cell.</p>
|
|
427
480
|
* </li>
|
|
428
481
|
* <li>
|
|
429
482
|
* <p>
|
|
483
|
+
* <i>MERGED_CELL</i> - A cell in a table whose content spans more than
|
|
484
|
+
* one row or column. The <code>Relationships</code> array for this cell contain data
|
|
485
|
+
* from individual cells.</p>
|
|
486
|
+
* </li>
|
|
487
|
+
* <li>
|
|
488
|
+
* <p>
|
|
430
489
|
* <i>SELECTION_ELEMENT</i> - A selection element such as an option
|
|
431
490
|
* button (radio button) or a check box that's detected on a document page. Use the
|
|
432
491
|
* value of <code>SelectionStatus</code> to determine the status of the selection
|
|
@@ -478,14 +537,12 @@ export interface Block {
|
|
|
478
537
|
*/
|
|
479
538
|
ColumnIndex?: number;
|
|
480
539
|
/**
|
|
481
|
-
* <p>The number of rows that a table cell spans.
|
|
482
|
-
* the number of rows spanned is greater than 1. <code>RowSpan</code> isn't returned by
|
|
540
|
+
* <p>The number of rows that a table cell spans. <code>RowSpan</code> isn't returned by
|
|
483
541
|
* <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
|
|
484
542
|
*/
|
|
485
543
|
RowSpan?: number;
|
|
486
544
|
/**
|
|
487
|
-
* <p>The number of columns that a table cell spans.
|
|
488
|
-
* the number of columns spanned is greater than 1. <code>ColumnSpan</code> isn't returned by
|
|
545
|
+
* <p>The number of columns that a table cell spans. <code>ColumnSpan</code> isn't returned by
|
|
489
546
|
* <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>. </p>
|
|
490
547
|
*/
|
|
491
548
|
ColumnSpan?: number;
|
|
@@ -501,30 +558,60 @@ export interface Block {
|
|
|
501
558
|
*/
|
|
502
559
|
Id?: string;
|
|
503
560
|
/**
|
|
504
|
-
* <p>A list of
|
|
505
|
-
*
|
|
506
|
-
* the
|
|
507
|
-
*
|
|
561
|
+
* <p>A list of relationship objects that describe how blocks are related to each other. For
|
|
562
|
+
* example, a LINE block object contains a CHILD relationship type with the WORD blocks that
|
|
563
|
+
* make up the line of text. There aren't Relationship objects in the list for relationships
|
|
564
|
+
* that don't exist, such as when the current block has no child blocks.</p>
|
|
565
|
+
*/
|
|
566
|
+
Relationships?: Relationship[];
|
|
567
|
+
/**
|
|
568
|
+
* <p>The type of entity. </p>
|
|
569
|
+
* <p>The following entity types can be returned by FORMS analysis:</p>
|
|
508
570
|
* <ul>
|
|
509
571
|
* <li>
|
|
510
|
-
* <p>
|
|
572
|
+
* <p>
|
|
573
|
+
* <i>KEY</i> - An identifier for a field on the document.</p>
|
|
511
574
|
* </li>
|
|
512
575
|
* <li>
|
|
513
|
-
* <p>
|
|
576
|
+
* <p>
|
|
577
|
+
* <i>VALUE</i> - The field text.</p>
|
|
514
578
|
* </li>
|
|
515
579
|
* </ul>
|
|
516
|
-
|
|
517
|
-
Relationships?: Relationship[];
|
|
518
|
-
/**
|
|
519
|
-
* <p>The type of entity. The following can be returned:</p>
|
|
580
|
+
* <p>The following entity types can be returned by TABLES analysis:</p>
|
|
520
581
|
* <ul>
|
|
521
582
|
* <li>
|
|
522
583
|
* <p>
|
|
523
|
-
* <i>
|
|
584
|
+
* <i>COLUMN_HEADER</i> - Identifies a cell that is a header of a column. </p>
|
|
524
585
|
* </li>
|
|
525
586
|
* <li>
|
|
526
587
|
* <p>
|
|
527
|
-
* <i>
|
|
588
|
+
* <i>TABLE_TITLE</i> - Identifies a cell that is a title within the
|
|
589
|
+
* table. </p>
|
|
590
|
+
* </li>
|
|
591
|
+
* <li>
|
|
592
|
+
* <p>
|
|
593
|
+
* <i>TABLE_SECTION_TITLE</i> - Identifies a cell that is a title of a
|
|
594
|
+
* section within a table. A section title is a cell that typically spans an entire row
|
|
595
|
+
* above a section. </p>
|
|
596
|
+
* </li>
|
|
597
|
+
* <li>
|
|
598
|
+
* <p>
|
|
599
|
+
* <i>TABLE_FOOTER</i> - Identifies a cell that is a footer of a table. </p>
|
|
600
|
+
* </li>
|
|
601
|
+
* <li>
|
|
602
|
+
* <p>
|
|
603
|
+
* <i>TABLE_SUMMARY</i> - Identifies a summary cell of a table. A
|
|
604
|
+
* summary cell can be a row of a table or an additional, smaller table that contains
|
|
605
|
+
* summary information for another table. </p>
|
|
606
|
+
* </li>
|
|
607
|
+
* <li>
|
|
608
|
+
* <p>
|
|
609
|
+
* <i>STRUCTURED_TABLE </i> - Identifies a table with column headers
|
|
610
|
+
* where the content of each row corresponds to the headers. </p>
|
|
611
|
+
* </li>
|
|
612
|
+
* <li>
|
|
613
|
+
* <p>
|
|
614
|
+
* <i>SEMI_STRUCTURED_TABLE</i> - Identifies a non-structured table. </p>
|
|
528
615
|
* </li>
|
|
529
616
|
* </ul>
|
|
530
617
|
* <p>
|
|
@@ -543,7 +630,7 @@ export interface Block {
|
|
|
543
630
|
* documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an
|
|
544
631
|
* asynchronous operation, even if it contains multiple document pages, is considered a
|
|
545
632
|
* single-page document. This means that for scanned images the value of <code>Page</code> is
|
|
546
|
-
* always 1. Synchronous operations
|
|
633
|
+
* always 1. Synchronous operations will also return a <code>Page</code> value of 1
|
|
547
634
|
* because every input document is considered to be a single-page document.</p>
|
|
548
635
|
*/
|
|
549
636
|
Page?: number;
|
|
@@ -772,7 +859,6 @@ export interface AnalyzeExpenseRequest {
|
|
|
772
859
|
* <p>If you use the AWS CLI to call Amazon Textract operations, passing image bytes using
|
|
773
860
|
* the Bytes property isn't supported. You must first upload the document to an Amazon S3
|
|
774
861
|
* bucket, and then call the operation using the S3Object property.</p>
|
|
775
|
-
*
|
|
776
862
|
* <p>For Amazon Textract to process an S3 object, the user must have permission
|
|
777
863
|
* to access the S3 object. </p>
|
|
778
864
|
*/
|
|
@@ -1147,7 +1233,7 @@ export interface UndetectedSignature {
|
|
|
1147
1233
|
*/
|
|
1148
1234
|
export interface DocumentGroup {
|
|
1149
1235
|
/**
|
|
1150
|
-
* <p>The type of document that Amazon Textract has detected. See
|
|
1236
|
+
* <p>The type of document that Amazon Textract has detected. See <a href="https://docs.aws.amazon.com/textract/latest/dg/lending-response-objects.html">Analyze Lending Response Objects</a> for a list of all types returned by Textract.</p>
|
|
1151
1237
|
*/
|
|
1152
1238
|
Type?: string;
|
|
1153
1239
|
/**
|
|
@@ -1973,275 +2059,3 @@ export interface StartLendingAnalysisResponse {
|
|
|
1973
2059
|
*/
|
|
1974
2060
|
JobId?: string;
|
|
1975
2061
|
}
|
|
1976
|
-
/**
|
|
1977
|
-
* @internal
|
|
1978
|
-
*/
|
|
1979
|
-
export declare const S3ObjectFilterSensitiveLog: (obj: S3Object) => any;
|
|
1980
|
-
/**
|
|
1981
|
-
* @internal
|
|
1982
|
-
*/
|
|
1983
|
-
export declare const DocumentFilterSensitiveLog: (obj: Document) => any;
|
|
1984
|
-
/**
|
|
1985
|
-
* @internal
|
|
1986
|
-
*/
|
|
1987
|
-
export declare const HumanLoopDataAttributesFilterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
|
|
1988
|
-
/**
|
|
1989
|
-
* @internal
|
|
1990
|
-
*/
|
|
1991
|
-
export declare const HumanLoopConfigFilterSensitiveLog: (obj: HumanLoopConfig) => any;
|
|
1992
|
-
/**
|
|
1993
|
-
* @internal
|
|
1994
|
-
*/
|
|
1995
|
-
export declare const QueryFilterSensitiveLog: (obj: Query) => any;
|
|
1996
|
-
/**
|
|
1997
|
-
* @internal
|
|
1998
|
-
*/
|
|
1999
|
-
export declare const QueriesConfigFilterSensitiveLog: (obj: QueriesConfig) => any;
|
|
2000
|
-
/**
|
|
2001
|
-
* @internal
|
|
2002
|
-
*/
|
|
2003
|
-
export declare const AnalyzeDocumentRequestFilterSensitiveLog: (obj: AnalyzeDocumentRequest) => any;
|
|
2004
|
-
/**
|
|
2005
|
-
* @internal
|
|
2006
|
-
*/
|
|
2007
|
-
export declare const BoundingBoxFilterSensitiveLog: (obj: BoundingBox) => any;
|
|
2008
|
-
/**
|
|
2009
|
-
* @internal
|
|
2010
|
-
*/
|
|
2011
|
-
export declare const PointFilterSensitiveLog: (obj: Point) => any;
|
|
2012
|
-
/**
|
|
2013
|
-
* @internal
|
|
2014
|
-
*/
|
|
2015
|
-
export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
|
|
2016
|
-
/**
|
|
2017
|
-
* @internal
|
|
2018
|
-
*/
|
|
2019
|
-
export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
|
|
2020
|
-
/**
|
|
2021
|
-
* @internal
|
|
2022
|
-
*/
|
|
2023
|
-
export declare const BlockFilterSensitiveLog: (obj: Block) => any;
|
|
2024
|
-
/**
|
|
2025
|
-
* @internal
|
|
2026
|
-
*/
|
|
2027
|
-
export declare const DocumentMetadataFilterSensitiveLog: (obj: DocumentMetadata) => any;
|
|
2028
|
-
/**
|
|
2029
|
-
* @internal
|
|
2030
|
-
*/
|
|
2031
|
-
export declare const HumanLoopActivationOutputFilterSensitiveLog: (obj: HumanLoopActivationOutput) => any;
|
|
2032
|
-
/**
|
|
2033
|
-
* @internal
|
|
2034
|
-
*/
|
|
2035
|
-
export declare const AnalyzeDocumentResponseFilterSensitiveLog: (obj: AnalyzeDocumentResponse) => any;
|
|
2036
|
-
/**
|
|
2037
|
-
* @internal
|
|
2038
|
-
*/
|
|
2039
|
-
export declare const AnalyzeExpenseRequestFilterSensitiveLog: (obj: AnalyzeExpenseRequest) => any;
|
|
2040
|
-
/**
|
|
2041
|
-
* @internal
|
|
2042
|
-
*/
|
|
2043
|
-
export declare const ExpenseCurrencyFilterSensitiveLog: (obj: ExpenseCurrency) => any;
|
|
2044
|
-
/**
|
|
2045
|
-
* @internal
|
|
2046
|
-
*/
|
|
2047
|
-
export declare const ExpenseGroupPropertyFilterSensitiveLog: (obj: ExpenseGroupProperty) => any;
|
|
2048
|
-
/**
|
|
2049
|
-
* @internal
|
|
2050
|
-
*/
|
|
2051
|
-
export declare const ExpenseDetectionFilterSensitiveLog: (obj: ExpenseDetection) => any;
|
|
2052
|
-
/**
|
|
2053
|
-
* @internal
|
|
2054
|
-
*/
|
|
2055
|
-
export declare const ExpenseTypeFilterSensitiveLog: (obj: ExpenseType) => any;
|
|
2056
|
-
/**
|
|
2057
|
-
* @internal
|
|
2058
|
-
*/
|
|
2059
|
-
export declare const ExpenseFieldFilterSensitiveLog: (obj: ExpenseField) => any;
|
|
2060
|
-
/**
|
|
2061
|
-
* @internal
|
|
2062
|
-
*/
|
|
2063
|
-
export declare const LineItemFieldsFilterSensitiveLog: (obj: LineItemFields) => any;
|
|
2064
|
-
/**
|
|
2065
|
-
* @internal
|
|
2066
|
-
*/
|
|
2067
|
-
export declare const LineItemGroupFilterSensitiveLog: (obj: LineItemGroup) => any;
|
|
2068
|
-
/**
|
|
2069
|
-
* @internal
|
|
2070
|
-
*/
|
|
2071
|
-
export declare const ExpenseDocumentFilterSensitiveLog: (obj: ExpenseDocument) => any;
|
|
2072
|
-
/**
|
|
2073
|
-
* @internal
|
|
2074
|
-
*/
|
|
2075
|
-
export declare const AnalyzeExpenseResponseFilterSensitiveLog: (obj: AnalyzeExpenseResponse) => any;
|
|
2076
|
-
/**
|
|
2077
|
-
* @internal
|
|
2078
|
-
*/
|
|
2079
|
-
export declare const AnalyzeIDRequestFilterSensitiveLog: (obj: AnalyzeIDRequest) => any;
|
|
2080
|
-
/**
|
|
2081
|
-
* @internal
|
|
2082
|
-
*/
|
|
2083
|
-
export declare const NormalizedValueFilterSensitiveLog: (obj: NormalizedValue) => any;
|
|
2084
|
-
/**
|
|
2085
|
-
* @internal
|
|
2086
|
-
*/
|
|
2087
|
-
export declare const AnalyzeIDDetectionsFilterSensitiveLog: (obj: AnalyzeIDDetections) => any;
|
|
2088
|
-
/**
|
|
2089
|
-
* @internal
|
|
2090
|
-
*/
|
|
2091
|
-
export declare const IdentityDocumentFieldFilterSensitiveLog: (obj: IdentityDocumentField) => any;
|
|
2092
|
-
/**
|
|
2093
|
-
* @internal
|
|
2094
|
-
*/
|
|
2095
|
-
export declare const IdentityDocumentFilterSensitiveLog: (obj: IdentityDocument) => any;
|
|
2096
|
-
/**
|
|
2097
|
-
* @internal
|
|
2098
|
-
*/
|
|
2099
|
-
export declare const AnalyzeIDResponseFilterSensitiveLog: (obj: AnalyzeIDResponse) => any;
|
|
2100
|
-
/**
|
|
2101
|
-
* @internal
|
|
2102
|
-
*/
|
|
2103
|
-
export declare const DetectDocumentTextRequestFilterSensitiveLog: (obj: DetectDocumentTextRequest) => any;
|
|
2104
|
-
/**
|
|
2105
|
-
* @internal
|
|
2106
|
-
*/
|
|
2107
|
-
export declare const DetectDocumentTextResponseFilterSensitiveLog: (obj: DetectDocumentTextResponse) => any;
|
|
2108
|
-
/**
|
|
2109
|
-
* @internal
|
|
2110
|
-
*/
|
|
2111
|
-
export declare const DetectedSignatureFilterSensitiveLog: (obj: DetectedSignature) => any;
|
|
2112
|
-
/**
|
|
2113
|
-
* @internal
|
|
2114
|
-
*/
|
|
2115
|
-
export declare const SplitDocumentFilterSensitiveLog: (obj: SplitDocument) => any;
|
|
2116
|
-
/**
|
|
2117
|
-
* @internal
|
|
2118
|
-
*/
|
|
2119
|
-
export declare const UndetectedSignatureFilterSensitiveLog: (obj: UndetectedSignature) => any;
|
|
2120
|
-
/**
|
|
2121
|
-
* @internal
|
|
2122
|
-
*/
|
|
2123
|
-
export declare const DocumentGroupFilterSensitiveLog: (obj: DocumentGroup) => any;
|
|
2124
|
-
/**
|
|
2125
|
-
* @internal
|
|
2126
|
-
*/
|
|
2127
|
-
export declare const DocumentLocationFilterSensitiveLog: (obj: DocumentLocation) => any;
|
|
2128
|
-
/**
|
|
2129
|
-
* @internal
|
|
2130
|
-
*/
|
|
2131
|
-
export declare const LendingDetectionFilterSensitiveLog: (obj: LendingDetection) => any;
|
|
2132
|
-
/**
|
|
2133
|
-
* @internal
|
|
2134
|
-
*/
|
|
2135
|
-
export declare const LendingFieldFilterSensitiveLog: (obj: LendingField) => any;
|
|
2136
|
-
/**
|
|
2137
|
-
* @internal
|
|
2138
|
-
*/
|
|
2139
|
-
export declare const SignatureDetectionFilterSensitiveLog: (obj: SignatureDetection) => any;
|
|
2140
|
-
/**
|
|
2141
|
-
* @internal
|
|
2142
|
-
*/
|
|
2143
|
-
export declare const LendingDocumentFilterSensitiveLog: (obj: LendingDocument) => any;
|
|
2144
|
-
/**
|
|
2145
|
-
* @internal
|
|
2146
|
-
*/
|
|
2147
|
-
export declare const ExtractionFilterSensitiveLog: (obj: Extraction) => any;
|
|
2148
|
-
/**
|
|
2149
|
-
* @internal
|
|
2150
|
-
*/
|
|
2151
|
-
export declare const GetDocumentAnalysisRequestFilterSensitiveLog: (obj: GetDocumentAnalysisRequest) => any;
|
|
2152
|
-
/**
|
|
2153
|
-
* @internal
|
|
2154
|
-
*/
|
|
2155
|
-
export declare const WarningFilterSensitiveLog: (obj: Warning) => any;
|
|
2156
|
-
/**
|
|
2157
|
-
* @internal
|
|
2158
|
-
*/
|
|
2159
|
-
export declare const GetDocumentAnalysisResponseFilterSensitiveLog: (obj: GetDocumentAnalysisResponse) => any;
|
|
2160
|
-
/**
|
|
2161
|
-
* @internal
|
|
2162
|
-
*/
|
|
2163
|
-
export declare const GetDocumentTextDetectionRequestFilterSensitiveLog: (obj: GetDocumentTextDetectionRequest) => any;
|
|
2164
|
-
/**
|
|
2165
|
-
* @internal
|
|
2166
|
-
*/
|
|
2167
|
-
export declare const GetDocumentTextDetectionResponseFilterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
|
|
2168
|
-
/**
|
|
2169
|
-
* @internal
|
|
2170
|
-
*/
|
|
2171
|
-
export declare const GetExpenseAnalysisRequestFilterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
|
|
2172
|
-
/**
|
|
2173
|
-
* @internal
|
|
2174
|
-
*/
|
|
2175
|
-
export declare const GetExpenseAnalysisResponseFilterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
|
|
2176
|
-
/**
|
|
2177
|
-
* @internal
|
|
2178
|
-
*/
|
|
2179
|
-
export declare const GetLendingAnalysisRequestFilterSensitiveLog: (obj: GetLendingAnalysisRequest) => any;
|
|
2180
|
-
/**
|
|
2181
|
-
* @internal
|
|
2182
|
-
*/
|
|
2183
|
-
export declare const PredictionFilterSensitiveLog: (obj: Prediction) => any;
|
|
2184
|
-
/**
|
|
2185
|
-
* @internal
|
|
2186
|
-
*/
|
|
2187
|
-
export declare const PageClassificationFilterSensitiveLog: (obj: PageClassification) => any;
|
|
2188
|
-
/**
|
|
2189
|
-
* @internal
|
|
2190
|
-
*/
|
|
2191
|
-
export declare const LendingResultFilterSensitiveLog: (obj: LendingResult) => any;
|
|
2192
|
-
/**
|
|
2193
|
-
* @internal
|
|
2194
|
-
*/
|
|
2195
|
-
export declare const GetLendingAnalysisResponseFilterSensitiveLog: (obj: GetLendingAnalysisResponse) => any;
|
|
2196
|
-
/**
|
|
2197
|
-
* @internal
|
|
2198
|
-
*/
|
|
2199
|
-
export declare const GetLendingAnalysisSummaryRequestFilterSensitiveLog: (obj: GetLendingAnalysisSummaryRequest) => any;
|
|
2200
|
-
/**
|
|
2201
|
-
* @internal
|
|
2202
|
-
*/
|
|
2203
|
-
export declare const LendingSummaryFilterSensitiveLog: (obj: LendingSummary) => any;
|
|
2204
|
-
/**
|
|
2205
|
-
* @internal
|
|
2206
|
-
*/
|
|
2207
|
-
export declare const GetLendingAnalysisSummaryResponseFilterSensitiveLog: (obj: GetLendingAnalysisSummaryResponse) => any;
|
|
2208
|
-
/**
|
|
2209
|
-
* @internal
|
|
2210
|
-
*/
|
|
2211
|
-
export declare const NotificationChannelFilterSensitiveLog: (obj: NotificationChannel) => any;
|
|
2212
|
-
/**
|
|
2213
|
-
* @internal
|
|
2214
|
-
*/
|
|
2215
|
-
export declare const OutputConfigFilterSensitiveLog: (obj: OutputConfig) => any;
|
|
2216
|
-
/**
|
|
2217
|
-
* @internal
|
|
2218
|
-
*/
|
|
2219
|
-
export declare const StartDocumentAnalysisRequestFilterSensitiveLog: (obj: StartDocumentAnalysisRequest) => any;
|
|
2220
|
-
/**
|
|
2221
|
-
* @internal
|
|
2222
|
-
*/
|
|
2223
|
-
export declare const StartDocumentAnalysisResponseFilterSensitiveLog: (obj: StartDocumentAnalysisResponse) => any;
|
|
2224
|
-
/**
|
|
2225
|
-
* @internal
|
|
2226
|
-
*/
|
|
2227
|
-
export declare const StartDocumentTextDetectionRequestFilterSensitiveLog: (obj: StartDocumentTextDetectionRequest) => any;
|
|
2228
|
-
/**
|
|
2229
|
-
* @internal
|
|
2230
|
-
*/
|
|
2231
|
-
export declare const StartDocumentTextDetectionResponseFilterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
|
|
2232
|
-
/**
|
|
2233
|
-
* @internal
|
|
2234
|
-
*/
|
|
2235
|
-
export declare const StartExpenseAnalysisRequestFilterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
|
|
2236
|
-
/**
|
|
2237
|
-
* @internal
|
|
2238
|
-
*/
|
|
2239
|
-
export declare const StartExpenseAnalysisResponseFilterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;
|
|
2240
|
-
/**
|
|
2241
|
-
* @internal
|
|
2242
|
-
*/
|
|
2243
|
-
export declare const StartLendingAnalysisRequestFilterSensitiveLog: (obj: StartLendingAnalysisRequest) => any;
|
|
2244
|
-
/**
|
|
2245
|
-
* @internal
|
|
2246
|
-
*/
|
|
2247
|
-
export declare const StartLendingAnalysisResponseFilterSensitiveLog: (obj: StartLendingAnalysisResponse) => any;
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|