@aws-sdk/client-textract 3.181.0 → 3.183.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/CHANGELOG.md +8 -0
- package/dist-es/Textract.js +42 -49
- package/dist-es/TextractClient.js +22 -28
- package/dist-es/commands/AnalyzeDocumentCommand.js +21 -28
- package/dist-es/commands/AnalyzeExpenseCommand.js +21 -28
- package/dist-es/commands/AnalyzeIDCommand.js +21 -28
- package/dist-es/commands/DetectDocumentTextCommand.js +21 -28
- package/dist-es/commands/GetDocumentAnalysisCommand.js +21 -28
- package/dist-es/commands/GetDocumentTextDetectionCommand.js +21 -28
- package/dist-es/commands/GetExpenseAnalysisCommand.js +21 -28
- package/dist-es/commands/StartDocumentAnalysisCommand.js +21 -28
- package/dist-es/commands/StartDocumentTextDetectionCommand.js +21 -28
- package/dist-es/commands/StartExpenseAnalysisCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/TextractServiceException.js +5 -10
- package/dist-es/models/models_0.js +326 -233
- package/dist-es/protocols/Aws_json1_1.js +1108 -1346
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { TextractServiceException as __BaseException } from "./TextractServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AccessDeniedException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AccessDeniedException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
this.Message = opts.Message;
|
|
13
|
+
this.Code = opts.Code;
|
|
13
14
|
}
|
|
14
|
-
|
|
15
|
-
}(__BaseException));
|
|
16
|
-
export { AccessDeniedException };
|
|
15
|
+
}
|
|
17
16
|
export var FeatureType;
|
|
18
17
|
(function (FeatureType) {
|
|
19
18
|
FeatureType["FORMS"] = "FORMS";
|
|
@@ -64,135 +63,135 @@ export var TextType;
|
|
|
64
63
|
TextType["HANDWRITING"] = "HANDWRITING";
|
|
65
64
|
TextType["PRINTED"] = "PRINTED";
|
|
66
65
|
})(TextType || (TextType = {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
66
|
+
export class BadDocumentException extends __BaseException {
|
|
67
|
+
constructor(opts) {
|
|
68
|
+
super({
|
|
69
|
+
name: "BadDocumentException",
|
|
70
|
+
$fault: "client",
|
|
71
|
+
...opts,
|
|
72
|
+
});
|
|
73
|
+
this.name = "BadDocumentException";
|
|
74
|
+
this.$fault = "client";
|
|
75
|
+
Object.setPrototypeOf(this, BadDocumentException.prototype);
|
|
76
|
+
this.Message = opts.Message;
|
|
77
|
+
this.Code = opts.Code;
|
|
77
78
|
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
79
|
+
}
|
|
80
|
+
export class DocumentTooLargeException extends __BaseException {
|
|
81
|
+
constructor(opts) {
|
|
82
|
+
super({
|
|
83
|
+
name: "DocumentTooLargeException",
|
|
84
|
+
$fault: "client",
|
|
85
|
+
...opts,
|
|
86
|
+
});
|
|
87
|
+
this.name = "DocumentTooLargeException";
|
|
88
|
+
this.$fault = "client";
|
|
89
|
+
Object.setPrototypeOf(this, DocumentTooLargeException.prototype);
|
|
90
|
+
this.Message = opts.Message;
|
|
91
|
+
this.Code = opts.Code;
|
|
91
92
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
93
|
+
}
|
|
94
|
+
export class HumanLoopQuotaExceededException extends __BaseException {
|
|
95
|
+
constructor(opts) {
|
|
96
|
+
super({
|
|
97
|
+
name: "HumanLoopQuotaExceededException",
|
|
98
|
+
$fault: "client",
|
|
99
|
+
...opts,
|
|
100
|
+
});
|
|
101
|
+
this.name = "HumanLoopQuotaExceededException";
|
|
102
|
+
this.$fault = "client";
|
|
103
|
+
Object.setPrototypeOf(this, HumanLoopQuotaExceededException.prototype);
|
|
104
|
+
this.ResourceType = opts.ResourceType;
|
|
105
|
+
this.QuotaCode = opts.QuotaCode;
|
|
106
|
+
this.ServiceCode = opts.ServiceCode;
|
|
107
|
+
this.Message = opts.Message;
|
|
108
|
+
this.Code = opts.Code;
|
|
108
109
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
110
|
+
}
|
|
111
|
+
export class InternalServerError extends __BaseException {
|
|
112
|
+
constructor(opts) {
|
|
113
|
+
super({
|
|
114
|
+
name: "InternalServerError",
|
|
115
|
+
$fault: "server",
|
|
116
|
+
...opts,
|
|
117
|
+
});
|
|
118
|
+
this.name = "InternalServerError";
|
|
119
|
+
this.$fault = "server";
|
|
120
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
121
|
+
this.Message = opts.Message;
|
|
122
|
+
this.Code = opts.Code;
|
|
122
123
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
124
|
+
}
|
|
125
|
+
export class InvalidParameterException extends __BaseException {
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "InvalidParameterException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
this.name = "InvalidParameterException";
|
|
133
|
+
this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
135
|
+
this.Message = opts.Message;
|
|
136
|
+
this.Code = opts.Code;
|
|
136
137
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
138
|
+
}
|
|
139
|
+
export class InvalidS3ObjectException extends __BaseException {
|
|
140
|
+
constructor(opts) {
|
|
141
|
+
super({
|
|
142
|
+
name: "InvalidS3ObjectException",
|
|
143
|
+
$fault: "client",
|
|
144
|
+
...opts,
|
|
145
|
+
});
|
|
146
|
+
this.name = "InvalidS3ObjectException";
|
|
147
|
+
this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(this, InvalidS3ObjectException.prototype);
|
|
149
|
+
this.Message = opts.Message;
|
|
150
|
+
this.Code = opts.Code;
|
|
150
151
|
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
152
|
+
}
|
|
153
|
+
export class ProvisionedThroughputExceededException extends __BaseException {
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "ProvisionedThroughputExceededException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
this.name = "ProvisionedThroughputExceededException";
|
|
161
|
+
this.$fault = "client";
|
|
162
|
+
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
163
|
+
this.Message = opts.Message;
|
|
164
|
+
this.Code = opts.Code;
|
|
164
165
|
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
166
|
+
}
|
|
167
|
+
export class ThrottlingException extends __BaseException {
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "ThrottlingException",
|
|
171
|
+
$fault: "server",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
this.name = "ThrottlingException";
|
|
175
|
+
this.$fault = "server";
|
|
176
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
177
|
+
this.Message = opts.Message;
|
|
178
|
+
this.Code = opts.Code;
|
|
178
179
|
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
180
|
+
}
|
|
181
|
+
export class UnsupportedDocumentException extends __BaseException {
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "UnsupportedDocumentException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
this.name = "UnsupportedDocumentException";
|
|
189
|
+
this.$fault = "client";
|
|
190
|
+
Object.setPrototypeOf(this, UnsupportedDocumentException.prototype);
|
|
191
|
+
this.Message = opts.Message;
|
|
192
|
+
this.Code = opts.Code;
|
|
192
193
|
}
|
|
193
|
-
|
|
194
|
-
}(__BaseException));
|
|
195
|
-
export { UnsupportedDocumentException };
|
|
194
|
+
}
|
|
196
195
|
export var ValueType;
|
|
197
196
|
(function (ValueType) {
|
|
198
197
|
ValueType["DATE"] = "DATE";
|
|
@@ -204,106 +203,200 @@ export var JobStatus;
|
|
|
204
203
|
JobStatus["PARTIAL_SUCCESS"] = "PARTIAL_SUCCESS";
|
|
205
204
|
JobStatus["SUCCEEDED"] = "SUCCEEDED";
|
|
206
205
|
})(JobStatus || (JobStatus = {}));
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
206
|
+
export class InvalidJobIdException extends __BaseException {
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "InvalidJobIdException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
this.name = "InvalidJobIdException";
|
|
214
|
+
this.$fault = "client";
|
|
215
|
+
Object.setPrototypeOf(this, InvalidJobIdException.prototype);
|
|
216
|
+
this.Message = opts.Message;
|
|
217
|
+
this.Code = opts.Code;
|
|
217
218
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
219
|
+
}
|
|
220
|
+
export class InvalidKMSKeyException extends __BaseException {
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "InvalidKMSKeyException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
this.name = "InvalidKMSKeyException";
|
|
228
|
+
this.$fault = "client";
|
|
229
|
+
Object.setPrototypeOf(this, InvalidKMSKeyException.prototype);
|
|
230
|
+
this.Message = opts.Message;
|
|
231
|
+
this.Code = opts.Code;
|
|
231
232
|
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
233
|
+
}
|
|
234
|
+
export class IdempotentParameterMismatchException extends __BaseException {
|
|
235
|
+
constructor(opts) {
|
|
236
|
+
super({
|
|
237
|
+
name: "IdempotentParameterMismatchException",
|
|
238
|
+
$fault: "client",
|
|
239
|
+
...opts,
|
|
240
|
+
});
|
|
241
|
+
this.name = "IdempotentParameterMismatchException";
|
|
242
|
+
this.$fault = "client";
|
|
243
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
244
|
+
this.Message = opts.Message;
|
|
245
|
+
this.Code = opts.Code;
|
|
245
246
|
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
247
|
+
}
|
|
248
|
+
export class LimitExceededException extends __BaseException {
|
|
249
|
+
constructor(opts) {
|
|
250
|
+
super({
|
|
251
|
+
name: "LimitExceededException",
|
|
252
|
+
$fault: "client",
|
|
253
|
+
...opts,
|
|
254
|
+
});
|
|
255
|
+
this.name = "LimitExceededException";
|
|
256
|
+
this.$fault = "client";
|
|
257
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
258
|
+
this.Message = opts.Message;
|
|
259
|
+
this.Code = opts.Code;
|
|
259
260
|
}
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
export
|
|
261
|
+
}
|
|
262
|
+
export const S3ObjectFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
});
|
|
265
|
+
export const DocumentFilterSensitiveLog = (obj) => ({
|
|
266
|
+
...obj,
|
|
267
|
+
});
|
|
268
|
+
export const HumanLoopDataAttributesFilterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
});
|
|
271
|
+
export const HumanLoopConfigFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
});
|
|
274
|
+
export const QueryFilterSensitiveLog = (obj) => ({
|
|
275
|
+
...obj,
|
|
276
|
+
});
|
|
277
|
+
export const QueriesConfigFilterSensitiveLog = (obj) => ({
|
|
278
|
+
...obj,
|
|
279
|
+
});
|
|
280
|
+
export const AnalyzeDocumentRequestFilterSensitiveLog = (obj) => ({
|
|
281
|
+
...obj,
|
|
282
|
+
});
|
|
283
|
+
export const BoundingBoxFilterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
});
|
|
286
|
+
export const PointFilterSensitiveLog = (obj) => ({
|
|
287
|
+
...obj,
|
|
288
|
+
});
|
|
289
|
+
export const GeometryFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
});
|
|
292
|
+
export const RelationshipFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
});
|
|
295
|
+
export const BlockFilterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
});
|
|
298
|
+
export const DocumentMetadataFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
});
|
|
301
|
+
export const HumanLoopActivationOutputFilterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
});
|
|
304
|
+
export const AnalyzeDocumentResponseFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
});
|
|
307
|
+
export const AnalyzeExpenseRequestFilterSensitiveLog = (obj) => ({
|
|
308
|
+
...obj,
|
|
309
|
+
});
|
|
310
|
+
export const ExpenseDetectionFilterSensitiveLog = (obj) => ({
|
|
311
|
+
...obj,
|
|
312
|
+
});
|
|
313
|
+
export const ExpenseTypeFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
});
|
|
316
|
+
export const ExpenseFieldFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
export const LineItemFieldsFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
export const LineItemGroupFilterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
export const ExpenseDocumentFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
export const AnalyzeExpenseResponseFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const AnalyzeIDRequestFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
});
|
|
334
|
+
export const NormalizedValueFilterSensitiveLog = (obj) => ({
|
|
335
|
+
...obj,
|
|
336
|
+
});
|
|
337
|
+
export const AnalyzeIDDetectionsFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
});
|
|
340
|
+
export const IdentityDocumentFieldFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
export const IdentityDocumentFilterSensitiveLog = (obj) => ({
|
|
344
|
+
...obj,
|
|
345
|
+
});
|
|
346
|
+
export const AnalyzeIDResponseFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
export const DetectDocumentTextRequestFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
});
|
|
352
|
+
export const DetectDocumentTextResponseFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
export const DocumentLocationFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
export const GetDocumentAnalysisRequestFilterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
export const WarningFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
export const GetDocumentAnalysisResponseFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
export const GetDocumentTextDetectionRequestFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
});
|
|
370
|
+
export const GetDocumentTextDetectionResponseFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
export const GetExpenseAnalysisRequestFilterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
export const GetExpenseAnalysisResponseFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
});
|
|
379
|
+
export const NotificationChannelFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
});
|
|
382
|
+
export const OutputConfigFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
export const StartDocumentAnalysisRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
});
|
|
388
|
+
export const StartDocumentAnalysisResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
+
...obj,
|
|
390
|
+
});
|
|
391
|
+
export const StartDocumentTextDetectionRequestFilterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
});
|
|
394
|
+
export const StartDocumentTextDetectionResponseFilterSensitiveLog = (obj) => ({
|
|
395
|
+
...obj,
|
|
396
|
+
});
|
|
397
|
+
export const StartExpenseAnalysisRequestFilterSensitiveLog = (obj) => ({
|
|
398
|
+
...obj,
|
|
399
|
+
});
|
|
400
|
+
export const StartExpenseAnalysisResponseFilterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
});
|