@aws-sdk/client-textract 3.180.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.
@@ -1,19 +1,18 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { TextractServiceException as __BaseException } from "./TextractServiceException";
3
- var AccessDeniedException = (function (_super) {
4
- __extends(AccessDeniedException, _super);
5
- function AccessDeniedException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
7
- _this.name = "AccessDeniedException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
10
- _this.Message = opts.Message;
11
- _this.Code = opts.Code;
12
- return _this;
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
- return AccessDeniedException;
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
- var BadDocumentException = (function (_super) {
68
- __extends(BadDocumentException, _super);
69
- function BadDocumentException(opts) {
70
- var _this = _super.call(this, __assign({ name: "BadDocumentException", $fault: "client" }, opts)) || this;
71
- _this.name = "BadDocumentException";
72
- _this.$fault = "client";
73
- Object.setPrototypeOf(_this, BadDocumentException.prototype);
74
- _this.Message = opts.Message;
75
- _this.Code = opts.Code;
76
- return _this;
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
- return BadDocumentException;
79
- }(__BaseException));
80
- export { BadDocumentException };
81
- var DocumentTooLargeException = (function (_super) {
82
- __extends(DocumentTooLargeException, _super);
83
- function DocumentTooLargeException(opts) {
84
- var _this = _super.call(this, __assign({ name: "DocumentTooLargeException", $fault: "client" }, opts)) || this;
85
- _this.name = "DocumentTooLargeException";
86
- _this.$fault = "client";
87
- Object.setPrototypeOf(_this, DocumentTooLargeException.prototype);
88
- _this.Message = opts.Message;
89
- _this.Code = opts.Code;
90
- return _this;
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
- return DocumentTooLargeException;
93
- }(__BaseException));
94
- export { DocumentTooLargeException };
95
- var HumanLoopQuotaExceededException = (function (_super) {
96
- __extends(HumanLoopQuotaExceededException, _super);
97
- function HumanLoopQuotaExceededException(opts) {
98
- var _this = _super.call(this, __assign({ name: "HumanLoopQuotaExceededException", $fault: "client" }, opts)) || this;
99
- _this.name = "HumanLoopQuotaExceededException";
100
- _this.$fault = "client";
101
- Object.setPrototypeOf(_this, HumanLoopQuotaExceededException.prototype);
102
- _this.ResourceType = opts.ResourceType;
103
- _this.QuotaCode = opts.QuotaCode;
104
- _this.ServiceCode = opts.ServiceCode;
105
- _this.Message = opts.Message;
106
- _this.Code = opts.Code;
107
- return _this;
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
- return HumanLoopQuotaExceededException;
110
- }(__BaseException));
111
- export { HumanLoopQuotaExceededException };
112
- var InternalServerError = (function (_super) {
113
- __extends(InternalServerError, _super);
114
- function InternalServerError(opts) {
115
- var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
116
- _this.name = "InternalServerError";
117
- _this.$fault = "server";
118
- Object.setPrototypeOf(_this, InternalServerError.prototype);
119
- _this.Message = opts.Message;
120
- _this.Code = opts.Code;
121
- return _this;
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
- return InternalServerError;
124
- }(__BaseException));
125
- export { InternalServerError };
126
- var InvalidParameterException = (function (_super) {
127
- __extends(InvalidParameterException, _super);
128
- function InvalidParameterException(opts) {
129
- var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
130
- _this.name = "InvalidParameterException";
131
- _this.$fault = "client";
132
- Object.setPrototypeOf(_this, InvalidParameterException.prototype);
133
- _this.Message = opts.Message;
134
- _this.Code = opts.Code;
135
- return _this;
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
- return InvalidParameterException;
138
- }(__BaseException));
139
- export { InvalidParameterException };
140
- var InvalidS3ObjectException = (function (_super) {
141
- __extends(InvalidS3ObjectException, _super);
142
- function InvalidS3ObjectException(opts) {
143
- var _this = _super.call(this, __assign({ name: "InvalidS3ObjectException", $fault: "client" }, opts)) || this;
144
- _this.name = "InvalidS3ObjectException";
145
- _this.$fault = "client";
146
- Object.setPrototypeOf(_this, InvalidS3ObjectException.prototype);
147
- _this.Message = opts.Message;
148
- _this.Code = opts.Code;
149
- return _this;
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
- return InvalidS3ObjectException;
152
- }(__BaseException));
153
- export { InvalidS3ObjectException };
154
- var ProvisionedThroughputExceededException = (function (_super) {
155
- __extends(ProvisionedThroughputExceededException, _super);
156
- function ProvisionedThroughputExceededException(opts) {
157
- var _this = _super.call(this, __assign({ name: "ProvisionedThroughputExceededException", $fault: "client" }, opts)) || this;
158
- _this.name = "ProvisionedThroughputExceededException";
159
- _this.$fault = "client";
160
- Object.setPrototypeOf(_this, ProvisionedThroughputExceededException.prototype);
161
- _this.Message = opts.Message;
162
- _this.Code = opts.Code;
163
- return _this;
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
- return ProvisionedThroughputExceededException;
166
- }(__BaseException));
167
- export { ProvisionedThroughputExceededException };
168
- var ThrottlingException = (function (_super) {
169
- __extends(ThrottlingException, _super);
170
- function ThrottlingException(opts) {
171
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "server" }, opts)) || this;
172
- _this.name = "ThrottlingException";
173
- _this.$fault = "server";
174
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
175
- _this.Message = opts.Message;
176
- _this.Code = opts.Code;
177
- return _this;
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
- return ThrottlingException;
180
- }(__BaseException));
181
- export { ThrottlingException };
182
- var UnsupportedDocumentException = (function (_super) {
183
- __extends(UnsupportedDocumentException, _super);
184
- function UnsupportedDocumentException(opts) {
185
- var _this = _super.call(this, __assign({ name: "UnsupportedDocumentException", $fault: "client" }, opts)) || this;
186
- _this.name = "UnsupportedDocumentException";
187
- _this.$fault = "client";
188
- Object.setPrototypeOf(_this, UnsupportedDocumentException.prototype);
189
- _this.Message = opts.Message;
190
- _this.Code = opts.Code;
191
- return _this;
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
- return UnsupportedDocumentException;
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
- var InvalidJobIdException = (function (_super) {
208
- __extends(InvalidJobIdException, _super);
209
- function InvalidJobIdException(opts) {
210
- var _this = _super.call(this, __assign({ name: "InvalidJobIdException", $fault: "client" }, opts)) || this;
211
- _this.name = "InvalidJobIdException";
212
- _this.$fault = "client";
213
- Object.setPrototypeOf(_this, InvalidJobIdException.prototype);
214
- _this.Message = opts.Message;
215
- _this.Code = opts.Code;
216
- return _this;
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
- return InvalidJobIdException;
219
- }(__BaseException));
220
- export { InvalidJobIdException };
221
- var InvalidKMSKeyException = (function (_super) {
222
- __extends(InvalidKMSKeyException, _super);
223
- function InvalidKMSKeyException(opts) {
224
- var _this = _super.call(this, __assign({ name: "InvalidKMSKeyException", $fault: "client" }, opts)) || this;
225
- _this.name = "InvalidKMSKeyException";
226
- _this.$fault = "client";
227
- Object.setPrototypeOf(_this, InvalidKMSKeyException.prototype);
228
- _this.Message = opts.Message;
229
- _this.Code = opts.Code;
230
- return _this;
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
- return InvalidKMSKeyException;
233
- }(__BaseException));
234
- export { InvalidKMSKeyException };
235
- var IdempotentParameterMismatchException = (function (_super) {
236
- __extends(IdempotentParameterMismatchException, _super);
237
- function IdempotentParameterMismatchException(opts) {
238
- var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
239
- _this.name = "IdempotentParameterMismatchException";
240
- _this.$fault = "client";
241
- Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
242
- _this.Message = opts.Message;
243
- _this.Code = opts.Code;
244
- return _this;
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
- return IdempotentParameterMismatchException;
247
- }(__BaseException));
248
- export { IdempotentParameterMismatchException };
249
- var LimitExceededException = (function (_super) {
250
- __extends(LimitExceededException, _super);
251
- function LimitExceededException(opts) {
252
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
253
- _this.name = "LimitExceededException";
254
- _this.$fault = "client";
255
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
256
- _this.Message = opts.Message;
257
- _this.Code = opts.Code;
258
- return _this;
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
- return LimitExceededException;
261
- }(__BaseException));
262
- export { LimitExceededException };
263
- export var S3ObjectFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var DocumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
- export var HumanLoopDataAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var HumanLoopConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var QueryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var QueriesConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var AnalyzeDocumentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var BoundingBoxFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var PointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var GeometryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var RelationshipFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var BlockFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var DocumentMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var HumanLoopActivationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var AnalyzeDocumentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var AnalyzeExpenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var ExpenseDetectionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var ExpenseTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var ExpenseFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var LineItemFieldsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var LineItemGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var ExpenseDocumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var AnalyzeExpenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var AnalyzeIDRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var NormalizedValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var AnalyzeIDDetectionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var IdentityDocumentFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var IdentityDocumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var AnalyzeIDResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var DetectDocumentTextRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var DetectDocumentTextResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var DocumentLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var GetDocumentAnalysisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var WarningFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var GetDocumentAnalysisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var GetDocumentTextDetectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var GetDocumentTextDetectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var GetExpenseAnalysisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var GetExpenseAnalysisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var NotificationChannelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var OutputConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var StartDocumentAnalysisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var StartDocumentAnalysisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var StartDocumentTextDetectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var StartDocumentTextDetectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var StartExpenseAnalysisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var StartExpenseAnalysisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
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
+ });