@aws-sdk/client-amplifybackend 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/AmplifyBackend.js +133 -126
- package/dist-es/AmplifyBackendClient.js +28 -22
- package/dist-es/commands/CloneBackendCommand.js +28 -21
- package/dist-es/commands/CreateBackendAPICommand.js +28 -21
- package/dist-es/commands/CreateBackendAuthCommand.js +28 -21
- package/dist-es/commands/CreateBackendCommand.js +28 -21
- package/dist-es/commands/CreateBackendConfigCommand.js +28 -21
- package/dist-es/commands/CreateBackendStorageCommand.js +28 -21
- package/dist-es/commands/CreateTokenCommand.js +28 -21
- package/dist-es/commands/DeleteBackendAPICommand.js +28 -21
- package/dist-es/commands/DeleteBackendAuthCommand.js +28 -21
- package/dist-es/commands/DeleteBackendCommand.js +28 -21
- package/dist-es/commands/DeleteBackendStorageCommand.js +28 -21
- package/dist-es/commands/DeleteTokenCommand.js +28 -21
- package/dist-es/commands/GenerateBackendAPIModelsCommand.js +28 -21
- package/dist-es/commands/GetBackendAPICommand.js +28 -21
- package/dist-es/commands/GetBackendAPIModelsCommand.js +28 -21
- package/dist-es/commands/GetBackendAuthCommand.js +28 -21
- package/dist-es/commands/GetBackendCommand.js +28 -21
- package/dist-es/commands/GetBackendJobCommand.js +28 -21
- package/dist-es/commands/GetBackendStorageCommand.js +28 -21
- package/dist-es/commands/GetTokenCommand.js +28 -21
- package/dist-es/commands/ImportBackendAuthCommand.js +28 -21
- package/dist-es/commands/ImportBackendStorageCommand.js +28 -21
- package/dist-es/commands/ListBackendJobsCommand.js +28 -21
- package/dist-es/commands/ListS3BucketsCommand.js +28 -21
- package/dist-es/commands/RemoveAllBackendsCommand.js +28 -21
- package/dist-es/commands/RemoveBackendConfigCommand.js +28 -21
- package/dist-es/commands/UpdateBackendAPICommand.js +28 -21
- package/dist-es/commands/UpdateBackendAuthCommand.js +28 -21
- package/dist-es/commands/UpdateBackendConfigCommand.js +28 -21
- package/dist-es/commands/UpdateBackendJobCommand.js +28 -21
- package/dist-es/commands/UpdateBackendStorageCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/AmplifyBackendServiceException.js +10 -5
- package/dist-es/models/models_0.js +147 -338
- package/dist-es/protocols/Aws_restJson1.js +3594 -2787
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { AmplifyBackendServiceException as __BaseException } from "./AmplifyBackendServiceException";
|
|
2
3
|
export var AdditionalConstraintsElement;
|
|
3
4
|
(function (AdditionalConstraintsElement) {
|
|
@@ -6,60 +7,60 @@ export var AdditionalConstraintsElement;
|
|
|
6
7
|
AdditionalConstraintsElement["REQUIRE_SYMBOL"] = "REQUIRE_SYMBOL";
|
|
7
8
|
AdditionalConstraintsElement["REQUIRE_UPPERCASE"] = "REQUIRE_UPPERCASE";
|
|
8
9
|
})(AdditionalConstraintsElement || (AdditionalConstraintsElement = {}));
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
19
|
-
this.Message = opts.Message;
|
|
10
|
+
var BadRequestException = (function (_super) {
|
|
11
|
+
__extends(BadRequestException, _super);
|
|
12
|
+
function BadRequestException(opts) {
|
|
13
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
14
|
+
_this.name = "BadRequestException";
|
|
15
|
+
_this.$fault = "client";
|
|
16
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
17
|
+
_this.Message = opts.Message;
|
|
18
|
+
return _this;
|
|
20
19
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
20
|
+
return BadRequestException;
|
|
21
|
+
}(__BaseException));
|
|
22
|
+
export { BadRequestException };
|
|
23
|
+
var GatewayTimeoutException = (function (_super) {
|
|
24
|
+
__extends(GatewayTimeoutException, _super);
|
|
25
|
+
function GatewayTimeoutException(opts) {
|
|
26
|
+
var _this = _super.call(this, __assign({ name: "GatewayTimeoutException", $fault: "server" }, opts)) || this;
|
|
27
|
+
_this.name = "GatewayTimeoutException";
|
|
28
|
+
_this.$fault = "server";
|
|
29
|
+
Object.setPrototypeOf(_this, GatewayTimeoutException.prototype);
|
|
30
|
+
_this.Message = opts.Message;
|
|
31
|
+
return _this;
|
|
33
32
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
33
|
+
return GatewayTimeoutException;
|
|
34
|
+
}(__BaseException));
|
|
35
|
+
export { GatewayTimeoutException };
|
|
36
|
+
var NotFoundException = (function (_super) {
|
|
37
|
+
__extends(NotFoundException, _super);
|
|
38
|
+
function NotFoundException(opts) {
|
|
39
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
40
|
+
_this.name = "NotFoundException";
|
|
41
|
+
_this.$fault = "client";
|
|
42
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
43
|
+
_this.Message = opts.Message;
|
|
44
|
+
_this.ResourceType = opts.ResourceType;
|
|
45
|
+
return _this;
|
|
47
46
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
47
|
+
return NotFoundException;
|
|
48
|
+
}(__BaseException));
|
|
49
|
+
export { NotFoundException };
|
|
50
|
+
var TooManyRequestsException = (function (_super) {
|
|
51
|
+
__extends(TooManyRequestsException, _super);
|
|
52
|
+
function TooManyRequestsException(opts) {
|
|
53
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
54
|
+
_this.name = "TooManyRequestsException";
|
|
55
|
+
_this.$fault = "client";
|
|
56
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
57
|
+
_this.LimitType = opts.LimitType;
|
|
58
|
+
_this.Message = opts.Message;
|
|
59
|
+
return _this;
|
|
61
60
|
}
|
|
62
|
-
|
|
61
|
+
return TooManyRequestsException;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { TooManyRequestsException };
|
|
63
64
|
export var Mode;
|
|
64
65
|
(function (Mode) {
|
|
65
66
|
Mode["AMAZON_COGNITO_USER_POOLS"] = "AMAZON_COGNITO_USER_POOLS";
|
|
@@ -160,291 +161,99 @@ export var Status;
|
|
|
160
161
|
Status["LATEST"] = "LATEST";
|
|
161
162
|
Status["STALE"] = "STALE";
|
|
162
163
|
})(Status || (Status = {}));
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
});
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
});
|
|
169
|
-
export
|
|
170
|
-
|
|
171
|
-
});
|
|
172
|
-
export
|
|
173
|
-
|
|
174
|
-
});
|
|
175
|
-
export
|
|
176
|
-
|
|
177
|
-
});
|
|
178
|
-
export
|
|
179
|
-
|
|
180
|
-
});
|
|
181
|
-
export
|
|
182
|
-
|
|
183
|
-
});
|
|
184
|
-
export
|
|
185
|
-
|
|
186
|
-
});
|
|
187
|
-
export
|
|
188
|
-
|
|
189
|
-
});
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
});
|
|
193
|
-
export
|
|
194
|
-
|
|
195
|
-
});
|
|
196
|
-
export
|
|
197
|
-
|
|
198
|
-
});
|
|
199
|
-
export
|
|
200
|
-
|
|
201
|
-
});
|
|
202
|
-
export
|
|
203
|
-
|
|
204
|
-
});
|
|
205
|
-
export
|
|
206
|
-
|
|
207
|
-
});
|
|
208
|
-
export
|
|
209
|
-
|
|
210
|
-
});
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
});
|
|
214
|
-
export
|
|
215
|
-
|
|
216
|
-
});
|
|
217
|
-
export
|
|
218
|
-
|
|
219
|
-
});
|
|
220
|
-
export
|
|
221
|
-
|
|
222
|
-
});
|
|
223
|
-
export
|
|
224
|
-
|
|
225
|
-
});
|
|
226
|
-
export
|
|
227
|
-
|
|
228
|
-
});
|
|
229
|
-
export
|
|
230
|
-
|
|
231
|
-
});
|
|
232
|
-
export
|
|
233
|
-
|
|
234
|
-
});
|
|
235
|
-
export
|
|
236
|
-
|
|
237
|
-
});
|
|
238
|
-
export
|
|
239
|
-
|
|
240
|
-
});
|
|
241
|
-
export
|
|
242
|
-
|
|
243
|
-
});
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
});
|
|
247
|
-
export
|
|
248
|
-
|
|
249
|
-
});
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
});
|
|
253
|
-
export
|
|
254
|
-
|
|
255
|
-
});
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
});
|
|
259
|
-
export const CreateBackendStorageResponseFilterSensitiveLog = (obj) => ({
|
|
260
|
-
...obj,
|
|
261
|
-
});
|
|
262
|
-
export const CreateTokenRequestFilterSensitiveLog = (obj) => ({
|
|
263
|
-
...obj,
|
|
264
|
-
});
|
|
265
|
-
export const CreateTokenResponseFilterSensitiveLog = (obj) => ({
|
|
266
|
-
...obj,
|
|
267
|
-
});
|
|
268
|
-
export const DeleteBackendRequestFilterSensitiveLog = (obj) => ({
|
|
269
|
-
...obj,
|
|
270
|
-
});
|
|
271
|
-
export const DeleteBackendResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
});
|
|
274
|
-
export const DeleteBackendAPIRequestFilterSensitiveLog = (obj) => ({
|
|
275
|
-
...obj,
|
|
276
|
-
});
|
|
277
|
-
export const DeleteBackendAPIResponseFilterSensitiveLog = (obj) => ({
|
|
278
|
-
...obj,
|
|
279
|
-
});
|
|
280
|
-
export const DeleteBackendAuthRequestFilterSensitiveLog = (obj) => ({
|
|
281
|
-
...obj,
|
|
282
|
-
});
|
|
283
|
-
export const DeleteBackendAuthResponseFilterSensitiveLog = (obj) => ({
|
|
284
|
-
...obj,
|
|
285
|
-
});
|
|
286
|
-
export const DeleteBackendStorageRequestFilterSensitiveLog = (obj) => ({
|
|
287
|
-
...obj,
|
|
288
|
-
});
|
|
289
|
-
export const DeleteBackendStorageResponseFilterSensitiveLog = (obj) => ({
|
|
290
|
-
...obj,
|
|
291
|
-
});
|
|
292
|
-
export const DeleteTokenRequestFilterSensitiveLog = (obj) => ({
|
|
293
|
-
...obj,
|
|
294
|
-
});
|
|
295
|
-
export const DeleteTokenResponseFilterSensitiveLog = (obj) => ({
|
|
296
|
-
...obj,
|
|
297
|
-
});
|
|
298
|
-
export const GenerateBackendAPIModelsRequestFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
});
|
|
301
|
-
export const GenerateBackendAPIModelsResponseFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
});
|
|
304
|
-
export const GetBackendRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
});
|
|
307
|
-
export const GetBackendResponseFilterSensitiveLog = (obj) => ({
|
|
308
|
-
...obj,
|
|
309
|
-
});
|
|
310
|
-
export const GetBackendAPIRequestFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
});
|
|
313
|
-
export const GetBackendAPIResponseFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
});
|
|
316
|
-
export const GetBackendAPIModelsRequestFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
});
|
|
319
|
-
export const GetBackendAPIModelsResponseFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
});
|
|
322
|
-
export const GetBackendAuthRequestFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
});
|
|
325
|
-
export const GetBackendAuthResponseFilterSensitiveLog = (obj) => ({
|
|
326
|
-
...obj,
|
|
327
|
-
});
|
|
328
|
-
export const GetBackendJobRequestFilterSensitiveLog = (obj) => ({
|
|
329
|
-
...obj,
|
|
330
|
-
});
|
|
331
|
-
export const GetBackendJobResponseFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
});
|
|
334
|
-
export const GetBackendStorageRequestFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
});
|
|
337
|
-
export const GetBackendStorageResourceConfigFilterSensitiveLog = (obj) => ({
|
|
338
|
-
...obj,
|
|
339
|
-
});
|
|
340
|
-
export const GetBackendStorageResponseFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
});
|
|
343
|
-
export const GetTokenRequestFilterSensitiveLog = (obj) => ({
|
|
344
|
-
...obj,
|
|
345
|
-
});
|
|
346
|
-
export const GetTokenResponseFilterSensitiveLog = (obj) => ({
|
|
347
|
-
...obj,
|
|
348
|
-
});
|
|
349
|
-
export const ImportBackendAuthRequestFilterSensitiveLog = (obj) => ({
|
|
350
|
-
...obj,
|
|
351
|
-
});
|
|
352
|
-
export const ImportBackendAuthResponseFilterSensitiveLog = (obj) => ({
|
|
353
|
-
...obj,
|
|
354
|
-
});
|
|
355
|
-
export const ImportBackendStorageRequestFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
});
|
|
358
|
-
export const ImportBackendStorageResponseFilterSensitiveLog = (obj) => ({
|
|
359
|
-
...obj,
|
|
360
|
-
});
|
|
361
|
-
export const ListBackendJobsRequestFilterSensitiveLog = (obj) => ({
|
|
362
|
-
...obj,
|
|
363
|
-
});
|
|
364
|
-
export const BackendJobRespObjFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
});
|
|
367
|
-
export const ListBackendJobsResponseFilterSensitiveLog = (obj) => ({
|
|
368
|
-
...obj,
|
|
369
|
-
});
|
|
370
|
-
export const ListS3BucketsRequestFilterSensitiveLog = (obj) => ({
|
|
371
|
-
...obj,
|
|
372
|
-
});
|
|
373
|
-
export const S3BucketInfoFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
});
|
|
376
|
-
export const ListS3BucketsResponseFilterSensitiveLog = (obj) => ({
|
|
377
|
-
...obj,
|
|
378
|
-
});
|
|
379
|
-
export const RemoveAllBackendsRequestFilterSensitiveLog = (obj) => ({
|
|
380
|
-
...obj,
|
|
381
|
-
});
|
|
382
|
-
export const RemoveAllBackendsResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
-
...obj,
|
|
384
|
-
});
|
|
385
|
-
export const RemoveBackendConfigRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const RemoveBackendConfigResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
});
|
|
391
|
-
export const UpdateBackendAPIRequestFilterSensitiveLog = (obj) => ({
|
|
392
|
-
...obj,
|
|
393
|
-
});
|
|
394
|
-
export const UpdateBackendAPIResponseFilterSensitiveLog = (obj) => ({
|
|
395
|
-
...obj,
|
|
396
|
-
});
|
|
397
|
-
export const UpdateBackendAuthIdentityPoolConfigFilterSensitiveLog = (obj) => ({
|
|
398
|
-
...obj,
|
|
399
|
-
});
|
|
400
|
-
export const UpdateBackendAuthForgotPasswordConfigFilterSensitiveLog = (obj) => ({
|
|
401
|
-
...obj,
|
|
402
|
-
});
|
|
403
|
-
export const UpdateBackendAuthMFAConfigFilterSensitiveLog = (obj) => ({
|
|
404
|
-
...obj,
|
|
405
|
-
});
|
|
406
|
-
export const UpdateBackendAuthOAuthConfigFilterSensitiveLog = (obj) => ({
|
|
407
|
-
...obj,
|
|
408
|
-
});
|
|
409
|
-
export const UpdateBackendAuthPasswordPolicyConfigFilterSensitiveLog = (obj) => ({
|
|
410
|
-
...obj,
|
|
411
|
-
});
|
|
412
|
-
export const UpdateBackendAuthVerificationMessageConfigFilterSensitiveLog = (obj) => ({
|
|
413
|
-
...obj,
|
|
414
|
-
});
|
|
415
|
-
export const UpdateBackendAuthUserPoolConfigFilterSensitiveLog = (obj) => ({
|
|
416
|
-
...obj,
|
|
417
|
-
});
|
|
418
|
-
export const UpdateBackendAuthResourceConfigFilterSensitiveLog = (obj) => ({
|
|
419
|
-
...obj,
|
|
420
|
-
});
|
|
421
|
-
export const UpdateBackendAuthRequestFilterSensitiveLog = (obj) => ({
|
|
422
|
-
...obj,
|
|
423
|
-
});
|
|
424
|
-
export const UpdateBackendAuthResponseFilterSensitiveLog = (obj) => ({
|
|
425
|
-
...obj,
|
|
426
|
-
});
|
|
427
|
-
export const LoginAuthConfigReqObjFilterSensitiveLog = (obj) => ({
|
|
428
|
-
...obj,
|
|
429
|
-
});
|
|
430
|
-
export const UpdateBackendConfigRequestFilterSensitiveLog = (obj) => ({
|
|
431
|
-
...obj,
|
|
432
|
-
});
|
|
433
|
-
export const UpdateBackendConfigResponseFilterSensitiveLog = (obj) => ({
|
|
434
|
-
...obj,
|
|
435
|
-
});
|
|
436
|
-
export const UpdateBackendJobRequestFilterSensitiveLog = (obj) => ({
|
|
437
|
-
...obj,
|
|
438
|
-
});
|
|
439
|
-
export const UpdateBackendJobResponseFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
});
|
|
442
|
-
export const UpdateBackendStorageResourceConfigFilterSensitiveLog = (obj) => ({
|
|
443
|
-
...obj,
|
|
444
|
-
});
|
|
445
|
-
export const UpdateBackendStorageRequestFilterSensitiveLog = (obj) => ({
|
|
446
|
-
...obj,
|
|
447
|
-
});
|
|
448
|
-
export const UpdateBackendStorageResponseFilterSensitiveLog = (obj) => ({
|
|
449
|
-
...obj,
|
|
450
|
-
});
|
|
164
|
+
export var CloneBackendRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var CloneBackendResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
+
export var ResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
167
|
+
export var CreateBackendRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
|
+
export var CreateBackendResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
+
export var BackendAPIAppSyncAuthSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
+
export var BackendAPIAuthTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var BackendAPIConflictResolutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var BackendAPIResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var CreateBackendAPIRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
+
export var CreateBackendAPIResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var CreateBackendAuthIdentityPoolConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var EmailSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var SmsSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var CreateBackendAuthForgotPasswordConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
+
export var SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var CreateBackendAuthMFAConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var BackendAuthSocialProviderConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var BackendAuthAppleProviderConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var SocialProviderSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var CreateBackendAuthOAuthConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var CreateBackendAuthPasswordPolicyConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var CreateBackendAuthVerificationMessageConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var CreateBackendAuthUserPoolConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var CreateBackendAuthResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var CreateBackendAuthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var CreateBackendAuthResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var CreateBackendConfigRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var CreateBackendConfigResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var BackendStoragePermissionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var CreateBackendStorageResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var CreateBackendStorageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var CreateBackendStorageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var CreateTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var CreateTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var DeleteBackendRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var DeleteBackendResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var DeleteBackendAPIRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var DeleteBackendAPIResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var DeleteBackendAuthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var DeleteBackendAuthResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var DeleteBackendStorageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var DeleteBackendStorageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var DeleteTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var DeleteTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var GenerateBackendAPIModelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var GenerateBackendAPIModelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var GetBackendRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
export var GetBackendResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
+
export var GetBackendAPIRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
+
export var GetBackendAPIResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
+
export var GetBackendAPIModelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var GetBackendAPIModelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var GetBackendAuthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var GetBackendAuthResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var GetBackendJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var GetBackendJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var GetBackendStorageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var GetBackendStorageResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var GetBackendStorageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var GetTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var GetTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var ImportBackendAuthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var ImportBackendAuthResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var ImportBackendStorageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var ImportBackendStorageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var ListBackendJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var BackendJobRespObjFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var ListBackendJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var ListS3BucketsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var S3BucketInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var ListS3BucketsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var RemoveAllBackendsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var RemoveAllBackendsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var RemoveBackendConfigRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var RemoveBackendConfigResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var UpdateBackendAPIRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var UpdateBackendAPIResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var UpdateBackendAuthIdentityPoolConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var UpdateBackendAuthForgotPasswordConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var UpdateBackendAuthMFAConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var UpdateBackendAuthOAuthConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var UpdateBackendAuthPasswordPolicyConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var UpdateBackendAuthVerificationMessageConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var UpdateBackendAuthUserPoolConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var UpdateBackendAuthResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var UpdateBackendAuthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var UpdateBackendAuthResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var LoginAuthConfigReqObjFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var UpdateBackendConfigRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var UpdateBackendConfigResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var UpdateBackendJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var UpdateBackendJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var UpdateBackendStorageResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var UpdateBackendStorageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var UpdateBackendStorageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|