@aws-sdk/client-amplifybackend 3.170.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AmplifyBackend.d.ts +0 -31
  3. package/dist-types/ts3.4/AmplifyBackendClient.d.ts +0 -25
  4. package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/models/AmplifyBackendServiceException.d.ts +0 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +0 -436
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  41. package/package.json +26 -26
@@ -6,98 +6,65 @@ export declare enum AdditionalConstraintsElement {
6
6
  REQUIRE_SYMBOL = "REQUIRE_SYMBOL",
7
7
  REQUIRE_UPPERCASE = "REQUIRE_UPPERCASE",
8
8
  }
9
-
10
9
  export declare class BadRequestException extends __BaseException {
11
10
  readonly name: "BadRequestException";
12
11
  readonly $fault: "client";
13
-
14
12
  Message?: string;
15
-
16
13
  constructor(
17
14
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
18
15
  );
19
16
  }
20
-
21
17
  export interface CloneBackendRequest {
22
18
  AppId: string | undefined;
23
-
24
19
  BackendEnvironmentName: string | undefined;
25
-
26
20
  TargetEnvironmentName: string | undefined;
27
21
  }
28
22
  export interface CloneBackendResponse {
29
23
  AppId?: string;
30
-
31
24
  BackendEnvironmentName?: string;
32
-
33
25
  Error?: string;
34
-
35
26
  JobId?: string;
36
-
37
27
  Operation?: string;
38
-
39
28
  Status?: string;
40
29
  }
41
-
42
30
  export declare class GatewayTimeoutException extends __BaseException {
43
31
  readonly name: "GatewayTimeoutException";
44
32
  readonly $fault: "server";
45
-
46
33
  Message?: string;
47
-
48
34
  constructor(
49
35
  opts: __ExceptionOptionType<GatewayTimeoutException, __BaseException>
50
36
  );
51
37
  }
52
-
53
38
  export declare class NotFoundException extends __BaseException {
54
39
  readonly name: "NotFoundException";
55
40
  readonly $fault: "client";
56
-
57
41
  Message?: string;
58
-
59
42
  ResourceType?: string;
60
-
61
43
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
62
44
  }
63
-
64
45
  export declare class TooManyRequestsException extends __BaseException {
65
46
  readonly name: "TooManyRequestsException";
66
47
  readonly $fault: "client";
67
-
68
48
  LimitType?: string;
69
-
70
49
  Message?: string;
71
-
72
50
  constructor(
73
51
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
74
52
  );
75
53
  }
76
-
77
54
  export interface ResourceConfig {}
78
-
79
55
  export interface CreateBackendRequest {
80
56
  AppId: string | undefined;
81
-
82
57
  AppName: string | undefined;
83
-
84
58
  BackendEnvironmentName: string | undefined;
85
-
86
59
  ResourceConfig?: ResourceConfig;
87
-
88
60
  ResourceName?: string;
89
61
  }
90
62
  export interface CreateBackendResponse {
91
63
  AppId?: string;
92
-
93
64
  BackendEnvironmentName?: string;
94
-
95
65
  Error?: string;
96
-
97
66
  JobId?: string;
98
-
99
67
  Operation?: string;
100
-
101
68
  Status?: string;
102
69
  }
103
70
  export declare enum Mode {
@@ -106,28 +73,18 @@ export declare enum Mode {
106
73
  AWS_IAM = "AWS_IAM",
107
74
  OPENID_CONNECT = "OPENID_CONNECT",
108
75
  }
109
-
110
76
  export interface BackendAPIAppSyncAuthSettings {
111
77
  CognitoUserPoolId?: string;
112
-
113
78
  Description?: string;
114
-
115
79
  ExpirationTime?: number;
116
-
117
80
  OpenIDAuthTTL?: string;
118
-
119
81
  OpenIDClientId?: string;
120
-
121
82
  OpenIDIatTTL?: string;
122
-
123
83
  OpenIDIssueURL?: string;
124
-
125
84
  OpenIDProviderName?: string;
126
85
  }
127
-
128
86
  export interface BackendAPIAuthType {
129
87
  Mode?: Mode | string;
130
-
131
88
  Settings?: BackendAPIAppSyncAuthSettings;
132
89
  }
133
90
  export declare enum ResolutionStrategy {
@@ -136,55 +93,37 @@ export declare enum ResolutionStrategy {
136
93
  NONE = "NONE",
137
94
  OPTIMISTIC_CONCURRENCY = "OPTIMISTIC_CONCURRENCY",
138
95
  }
139
-
140
96
  export interface BackendAPIConflictResolution {
141
97
  ResolutionStrategy?: ResolutionStrategy | string;
142
98
  }
143
-
144
99
  export interface BackendAPIResourceConfig {
145
100
  AdditionalAuthTypes?: BackendAPIAuthType[];
146
-
147
101
  ApiName?: string;
148
-
149
102
  ConflictResolution?: BackendAPIConflictResolution;
150
-
151
103
  DefaultAuthType?: BackendAPIAuthType;
152
-
153
104
  Service?: string;
154
-
155
105
  TransformSchema?: string;
156
106
  }
157
-
158
107
  export interface CreateBackendAPIRequest {
159
108
  AppId: string | undefined;
160
-
161
109
  BackendEnvironmentName: string | undefined;
162
-
163
110
  ResourceConfig: BackendAPIResourceConfig | undefined;
164
-
165
111
  ResourceName: string | undefined;
166
112
  }
167
113
  export interface CreateBackendAPIResponse {
168
114
  AppId?: string;
169
-
170
115
  BackendEnvironmentName?: string;
171
-
172
116
  Error?: string;
173
-
174
117
  JobId?: string;
175
-
176
118
  Operation?: string;
177
-
178
119
  Status?: string;
179
120
  }
180
121
  export declare enum AuthResources {
181
122
  IDENTITY_POOL_AND_USER_POOL = "IDENTITY_POOL_AND_USER_POOL",
182
123
  USER_POOL_ONLY = "USER_POOL_ONLY",
183
124
  }
184
-
185
125
  export interface CreateBackendAuthIdentityPoolConfig {
186
126
  IdentityPoolName: string | undefined;
187
-
188
127
  UnauthenticatedLogin: boolean | undefined;
189
128
  }
190
129
  export declare enum Service {
@@ -194,22 +133,16 @@ export declare enum DeliveryMethod {
194
133
  EMAIL = "EMAIL",
195
134
  SMS = "SMS",
196
135
  }
197
-
198
136
  export interface EmailSettings {
199
137
  EmailMessage?: string;
200
-
201
138
  EmailSubject?: string;
202
139
  }
203
-
204
140
  export interface SmsSettings {
205
141
  SmsMessage?: string;
206
142
  }
207
-
208
143
  export interface CreateBackendAuthForgotPasswordConfig {
209
144
  DeliveryMethod: DeliveryMethod | string | undefined;
210
-
211
145
  EmailSettings?: EmailSettings;
212
-
213
146
  SmsSettings?: SmsSettings;
214
147
  }
215
148
  export declare enum MFAMode {
@@ -221,16 +154,12 @@ export declare enum MfaTypesElement {
221
154
  SMS = "SMS",
222
155
  TOTP = "TOTP",
223
156
  }
224
-
225
157
  export interface Settings {
226
158
  MfaTypes?: (MfaTypesElement | string)[];
227
-
228
159
  SmsMessage?: string;
229
160
  }
230
-
231
161
  export interface CreateBackendAuthMFAConfig {
232
162
  MFAMode: MFAMode | string | undefined;
233
-
234
163
  Settings?: Settings;
235
164
  }
236
165
  export declare enum OAuthGrantType {
@@ -244,50 +173,32 @@ export declare enum OAuthScopesElement {
244
173
  PHONE = "PHONE",
245
174
  PROFILE = "PROFILE",
246
175
  }
247
-
248
176
  export interface BackendAuthSocialProviderConfig {
249
177
  ClientId?: string;
250
-
251
178
  ClientSecret?: string;
252
179
  }
253
-
254
180
  export interface BackendAuthAppleProviderConfig {
255
181
  ClientId?: string;
256
-
257
182
  KeyId?: string;
258
-
259
183
  PrivateKey?: string;
260
-
261
184
  TeamId?: string;
262
185
  }
263
-
264
186
  export interface SocialProviderSettings {
265
187
  Facebook?: BackendAuthSocialProviderConfig;
266
-
267
188
  Google?: BackendAuthSocialProviderConfig;
268
-
269
189
  LoginWithAmazon?: BackendAuthSocialProviderConfig;
270
-
271
190
  SignInWithApple?: BackendAuthAppleProviderConfig;
272
191
  }
273
-
274
192
  export interface CreateBackendAuthOAuthConfig {
275
193
  DomainPrefix?: string;
276
-
277
194
  OAuthGrantType: OAuthGrantType | string | undefined;
278
-
279
195
  OAuthScopes: (OAuthScopesElement | string)[] | undefined;
280
-
281
196
  RedirectSignInURIs: string[] | undefined;
282
-
283
197
  RedirectSignOutURIs: string[] | undefined;
284
-
285
198
  SocialProviderSettings?: SocialProviderSettings;
286
199
  }
287
-
288
200
  export interface CreateBackendAuthPasswordPolicyConfig {
289
201
  AdditionalConstraints?: (AdditionalConstraintsElement | string)[];
290
-
291
202
  MinimumLength: number | undefined;
292
203
  }
293
204
  export declare enum RequiredSignUpAttributesElement {
@@ -315,80 +226,51 @@ export declare enum SignInMethod {
315
226
  PHONE_NUMBER = "PHONE_NUMBER",
316
227
  USERNAME = "USERNAME",
317
228
  }
318
-
319
229
  export interface CreateBackendAuthVerificationMessageConfig {
320
230
  DeliveryMethod: DeliveryMethod | string | undefined;
321
-
322
231
  EmailSettings?: EmailSettings;
323
-
324
232
  SmsSettings?: SmsSettings;
325
233
  }
326
-
327
234
  export interface CreateBackendAuthUserPoolConfig {
328
235
  ForgotPassword?: CreateBackendAuthForgotPasswordConfig;
329
-
330
236
  Mfa?: CreateBackendAuthMFAConfig;
331
-
332
237
  OAuth?: CreateBackendAuthOAuthConfig;
333
-
334
238
  PasswordPolicy?: CreateBackendAuthPasswordPolicyConfig;
335
-
336
239
  RequiredSignUpAttributes:
337
240
  | (RequiredSignUpAttributesElement | string)[]
338
241
  | undefined;
339
-
340
242
  SignInMethod: SignInMethod | string | undefined;
341
-
342
243
  UserPoolName: string | undefined;
343
-
344
244
  VerificationMessage?: CreateBackendAuthVerificationMessageConfig;
345
245
  }
346
-
347
246
  export interface CreateBackendAuthResourceConfig {
348
247
  AuthResources: AuthResources | string | undefined;
349
-
350
248
  IdentityPoolConfigs?: CreateBackendAuthIdentityPoolConfig;
351
-
352
249
  Service: Service | string | undefined;
353
-
354
250
  UserPoolConfigs: CreateBackendAuthUserPoolConfig | undefined;
355
251
  }
356
-
357
252
  export interface CreateBackendAuthRequest {
358
253
  AppId: string | undefined;
359
-
360
254
  BackendEnvironmentName: string | undefined;
361
-
362
255
  ResourceConfig: CreateBackendAuthResourceConfig | undefined;
363
-
364
256
  ResourceName: string | undefined;
365
257
  }
366
258
  export interface CreateBackendAuthResponse {
367
259
  AppId?: string;
368
-
369
260
  BackendEnvironmentName?: string;
370
-
371
261
  Error?: string;
372
-
373
262
  JobId?: string;
374
-
375
263
  Operation?: string;
376
-
377
264
  Status?: string;
378
265
  }
379
-
380
266
  export interface CreateBackendConfigRequest {
381
267
  AppId: string | undefined;
382
-
383
268
  BackendManagerAppId?: string;
384
269
  }
385
270
  export interface CreateBackendConfigResponse {
386
271
  AppId?: string;
387
-
388
272
  BackendEnvironmentName?: string;
389
-
390
273
  JobId?: string;
391
-
392
274
  Status?: string;
393
275
  }
394
276
  export declare enum AuthenticatedElement {
@@ -401,40 +283,28 @@ export declare enum UnAuthenticatedElement {
401
283
  DELETE = "DELETE",
402
284
  READ = "READ",
403
285
  }
404
-
405
286
  export interface BackendStoragePermissions {
406
287
  Authenticated: (AuthenticatedElement | string)[] | undefined;
407
-
408
288
  UnAuthenticated?: (UnAuthenticatedElement | string)[];
409
289
  }
410
290
  export declare enum ServiceName {
411
291
  S3 = "S3",
412
292
  }
413
-
414
293
  export interface CreateBackendStorageResourceConfig {
415
294
  BucketName?: string;
416
-
417
295
  Permissions: BackendStoragePermissions | undefined;
418
-
419
296
  ServiceName: ServiceName | string | undefined;
420
297
  }
421
-
422
298
  export interface CreateBackendStorageRequest {
423
299
  AppId: string | undefined;
424
-
425
300
  BackendEnvironmentName: string | undefined;
426
-
427
301
  ResourceConfig: CreateBackendStorageResourceConfig | undefined;
428
-
429
302
  ResourceName: string | undefined;
430
303
  }
431
304
  export interface CreateBackendStorageResponse {
432
305
  AppId?: string;
433
-
434
306
  BackendEnvironmentName?: string;
435
-
436
307
  JobId?: string;
437
-
438
308
  Status?: string;
439
309
  }
440
310
  export interface CreateTokenRequest {
@@ -442,171 +312,110 @@ export interface CreateTokenRequest {
442
312
  }
443
313
  export interface CreateTokenResponse {
444
314
  AppId?: string;
445
-
446
315
  ChallengeCode?: string;
447
-
448
316
  SessionId?: string;
449
-
450
317
  Ttl?: string;
451
318
  }
452
319
  export interface DeleteBackendRequest {
453
320
  AppId: string | undefined;
454
-
455
321
  BackendEnvironmentName: string | undefined;
456
322
  }
457
323
  export interface DeleteBackendResponse {
458
324
  AppId?: string;
459
-
460
325
  BackendEnvironmentName?: string;
461
-
462
326
  Error?: string;
463
-
464
327
  JobId?: string;
465
-
466
328
  Operation?: string;
467
-
468
329
  Status?: string;
469
330
  }
470
-
471
331
  export interface DeleteBackendAPIRequest {
472
332
  AppId: string | undefined;
473
-
474
333
  BackendEnvironmentName: string | undefined;
475
-
476
334
  ResourceConfig?: BackendAPIResourceConfig;
477
-
478
335
  ResourceName: string | undefined;
479
336
  }
480
337
  export interface DeleteBackendAPIResponse {
481
338
  AppId?: string;
482
-
483
339
  BackendEnvironmentName?: string;
484
-
485
340
  Error?: string;
486
-
487
341
  JobId?: string;
488
-
489
342
  Operation?: string;
490
-
491
343
  Status?: string;
492
344
  }
493
-
494
345
  export interface DeleteBackendAuthRequest {
495
346
  AppId: string | undefined;
496
-
497
347
  BackendEnvironmentName: string | undefined;
498
-
499
348
  ResourceName: string | undefined;
500
349
  }
501
350
  export interface DeleteBackendAuthResponse {
502
351
  AppId?: string;
503
-
504
352
  BackendEnvironmentName?: string;
505
-
506
353
  Error?: string;
507
-
508
354
  JobId?: string;
509
-
510
355
  Operation?: string;
511
-
512
356
  Status?: string;
513
357
  }
514
-
515
358
  export interface DeleteBackendStorageRequest {
516
359
  AppId: string | undefined;
517
-
518
360
  BackendEnvironmentName: string | undefined;
519
-
520
361
  ResourceName: string | undefined;
521
-
522
362
  ServiceName: ServiceName | string | undefined;
523
363
  }
524
364
  export interface DeleteBackendStorageResponse {
525
365
  AppId?: string;
526
-
527
366
  BackendEnvironmentName?: string;
528
-
529
367
  JobId?: string;
530
-
531
368
  Status?: string;
532
369
  }
533
370
  export interface DeleteTokenRequest {
534
371
  AppId: string | undefined;
535
-
536
372
  SessionId: string | undefined;
537
373
  }
538
374
  export interface DeleteTokenResponse {
539
375
  IsSuccess?: boolean;
540
376
  }
541
-
542
377
  export interface GenerateBackendAPIModelsRequest {
543
378
  AppId: string | undefined;
544
-
545
379
  BackendEnvironmentName: string | undefined;
546
-
547
380
  ResourceName: string | undefined;
548
381
  }
549
382
  export interface GenerateBackendAPIModelsResponse {
550
383
  AppId?: string;
551
-
552
384
  BackendEnvironmentName?: string;
553
-
554
385
  Error?: string;
555
-
556
386
  JobId?: string;
557
-
558
387
  Operation?: string;
559
-
560
388
  Status?: string;
561
389
  }
562
-
563
390
  export interface GetBackendRequest {
564
391
  AppId: string | undefined;
565
-
566
392
  BackendEnvironmentName?: string;
567
393
  }
568
394
  export interface GetBackendResponse {
569
395
  AmplifyFeatureFlags?: string;
570
-
571
396
  AmplifyMetaConfig?: string;
572
-
573
397
  AppId?: string;
574
-
575
398
  AppName?: string;
576
-
577
399
  BackendEnvironmentList?: string[];
578
-
579
400
  BackendEnvironmentName?: string;
580
-
581
401
  Error?: string;
582
402
  }
583
-
584
403
  export interface GetBackendAPIRequest {
585
404
  AppId: string | undefined;
586
-
587
405
  BackendEnvironmentName: string | undefined;
588
-
589
406
  ResourceConfig?: BackendAPIResourceConfig;
590
-
591
407
  ResourceName: string | undefined;
592
408
  }
593
409
  export interface GetBackendAPIResponse {
594
410
  AppId?: string;
595
-
596
411
  BackendEnvironmentName?: string;
597
-
598
412
  Error?: string;
599
-
600
413
  ResourceConfig?: BackendAPIResourceConfig;
601
-
602
414
  ResourceName?: string;
603
415
  }
604
-
605
416
  export interface GetBackendAPIModelsRequest {
606
417
  AppId: string | undefined;
607
-
608
418
  BackendEnvironmentName: string | undefined;
609
-
610
419
  ResourceName: string | undefined;
611
420
  }
612
421
  export declare enum Status {
@@ -615,208 +424,133 @@ export declare enum Status {
615
424
  }
616
425
  export interface GetBackendAPIModelsResponse {
617
426
  Models?: string;
618
-
619
427
  Status?: Status | string;
620
428
  }
621
-
622
429
  export interface GetBackendAuthRequest {
623
430
  AppId: string | undefined;
624
-
625
431
  BackendEnvironmentName: string | undefined;
626
-
627
432
  ResourceName: string | undefined;
628
433
  }
629
434
  export interface GetBackendAuthResponse {
630
435
  AppId?: string;
631
-
632
436
  BackendEnvironmentName?: string;
633
-
634
437
  Error?: string;
635
-
636
438
  ResourceConfig?: CreateBackendAuthResourceConfig;
637
-
638
439
  ResourceName?: string;
639
440
  }
640
441
  export interface GetBackendJobRequest {
641
442
  AppId: string | undefined;
642
-
643
443
  BackendEnvironmentName: string | undefined;
644
-
645
444
  JobId: string | undefined;
646
445
  }
647
446
  export interface GetBackendJobResponse {
648
447
  AppId?: string;
649
-
650
448
  BackendEnvironmentName?: string;
651
-
652
449
  CreateTime?: string;
653
-
654
450
  Error?: string;
655
-
656
451
  JobId?: string;
657
-
658
452
  Operation?: string;
659
-
660
453
  Status?: string;
661
-
662
454
  UpdateTime?: string;
663
455
  }
664
-
665
456
  export interface GetBackendStorageRequest {
666
457
  AppId: string | undefined;
667
-
668
458
  BackendEnvironmentName: string | undefined;
669
-
670
459
  ResourceName: string | undefined;
671
460
  }
672
-
673
461
  export interface GetBackendStorageResourceConfig {
674
462
  BucketName?: string;
675
-
676
463
  Imported: boolean | undefined;
677
-
678
464
  Permissions?: BackendStoragePermissions;
679
-
680
465
  ServiceName: ServiceName | string | undefined;
681
466
  }
682
467
  export interface GetBackendStorageResponse {
683
468
  AppId?: string;
684
-
685
469
  BackendEnvironmentName?: string;
686
-
687
470
  ResourceConfig?: GetBackendStorageResourceConfig;
688
-
689
471
  ResourceName?: string;
690
472
  }
691
473
  export interface GetTokenRequest {
692
474
  AppId: string | undefined;
693
-
694
475
  SessionId: string | undefined;
695
476
  }
696
477
  export interface GetTokenResponse {
697
478
  AppId?: string;
698
-
699
479
  ChallengeCode?: string;
700
-
701
480
  SessionId?: string;
702
-
703
481
  Ttl?: string;
704
482
  }
705
-
706
483
  export interface ImportBackendAuthRequest {
707
484
  AppId: string | undefined;
708
-
709
485
  BackendEnvironmentName: string | undefined;
710
-
711
486
  IdentityPoolId?: string;
712
-
713
487
  NativeClientId: string | undefined;
714
-
715
488
  UserPoolId: string | undefined;
716
-
717
489
  WebClientId: string | undefined;
718
490
  }
719
491
  export interface ImportBackendAuthResponse {
720
492
  AppId?: string;
721
-
722
493
  BackendEnvironmentName?: string;
723
-
724
494
  Error?: string;
725
-
726
495
  JobId?: string;
727
-
728
496
  Operation?: string;
729
-
730
497
  Status?: string;
731
498
  }
732
-
733
499
  export interface ImportBackendStorageRequest {
734
500
  AppId: string | undefined;
735
-
736
501
  BackendEnvironmentName: string | undefined;
737
-
738
502
  BucketName?: string;
739
-
740
503
  ServiceName: ServiceName | string | undefined;
741
504
  }
742
505
  export interface ImportBackendStorageResponse {
743
506
  AppId?: string;
744
-
745
507
  BackendEnvironmentName?: string;
746
-
747
508
  JobId?: string;
748
-
749
509
  Status?: string;
750
510
  }
751
-
752
511
  export interface ListBackendJobsRequest {
753
512
  AppId: string | undefined;
754
-
755
513
  BackendEnvironmentName: string | undefined;
756
-
757
514
  JobId?: string;
758
-
759
515
  MaxResults?: number;
760
-
761
516
  NextToken?: string;
762
-
763
517
  Operation?: string;
764
-
765
518
  Status?: string;
766
519
  }
767
-
768
520
  export interface BackendJobRespObj {
769
521
  AppId: string | undefined;
770
-
771
522
  BackendEnvironmentName: string | undefined;
772
-
773
523
  CreateTime?: string;
774
-
775
524
  Error?: string;
776
-
777
525
  JobId?: string;
778
-
779
526
  Operation?: string;
780
-
781
527
  Status?: string;
782
-
783
528
  UpdateTime?: string;
784
529
  }
785
530
  export interface ListBackendJobsResponse {
786
531
  Jobs?: BackendJobRespObj[];
787
-
788
532
  NextToken?: string;
789
533
  }
790
-
791
534
  export interface ListS3BucketsRequest {
792
535
  NextToken?: string;
793
536
  }
794
-
795
537
  export interface S3BucketInfo {
796
538
  CreationDate?: string;
797
-
798
539
  Name?: string;
799
540
  }
800
541
  export interface ListS3BucketsResponse {
801
542
  Buckets?: S3BucketInfo[];
802
-
803
543
  NextToken?: string;
804
544
  }
805
-
806
545
  export interface RemoveAllBackendsRequest {
807
546
  AppId: string | undefined;
808
-
809
547
  CleanAmplifyApp?: boolean;
810
548
  }
811
549
  export interface RemoveAllBackendsResponse {
812
550
  AppId?: string;
813
-
814
551
  Error?: string;
815
-
816
552
  JobId?: string;
817
-
818
553
  Operation?: string;
819
-
820
554
  Status?: string;
821
555
  }
822
556
  export interface RemoveBackendConfigRequest {
@@ -825,574 +559,404 @@ export interface RemoveBackendConfigRequest {
825
559
  export interface RemoveBackendConfigResponse {
826
560
  Error?: string;
827
561
  }
828
-
829
562
  export interface UpdateBackendAPIRequest {
830
563
  AppId: string | undefined;
831
-
832
564
  BackendEnvironmentName: string | undefined;
833
-
834
565
  ResourceConfig?: BackendAPIResourceConfig;
835
-
836
566
  ResourceName: string | undefined;
837
567
  }
838
568
  export interface UpdateBackendAPIResponse {
839
569
  AppId?: string;
840
-
841
570
  BackendEnvironmentName?: string;
842
-
843
571
  Error?: string;
844
-
845
572
  JobId?: string;
846
-
847
573
  Operation?: string;
848
-
849
574
  Status?: string;
850
575
  }
851
-
852
576
  export interface UpdateBackendAuthIdentityPoolConfig {
853
577
  UnauthenticatedLogin?: boolean;
854
578
  }
855
-
856
579
  export interface UpdateBackendAuthForgotPasswordConfig {
857
580
  DeliveryMethod?: DeliveryMethod | string;
858
-
859
581
  EmailSettings?: EmailSettings;
860
-
861
582
  SmsSettings?: SmsSettings;
862
583
  }
863
-
864
584
  export interface UpdateBackendAuthMFAConfig {
865
585
  MFAMode?: MFAMode | string;
866
-
867
586
  Settings?: Settings;
868
587
  }
869
-
870
588
  export interface UpdateBackendAuthOAuthConfig {
871
589
  DomainPrefix?: string;
872
-
873
590
  OAuthGrantType?: OAuthGrantType | string;
874
-
875
591
  OAuthScopes?: (OAuthScopesElement | string)[];
876
-
877
592
  RedirectSignInURIs?: string[];
878
-
879
593
  RedirectSignOutURIs?: string[];
880
-
881
594
  SocialProviderSettings?: SocialProviderSettings;
882
595
  }
883
-
884
596
  export interface UpdateBackendAuthPasswordPolicyConfig {
885
597
  AdditionalConstraints?: (AdditionalConstraintsElement | string)[];
886
-
887
598
  MinimumLength?: number;
888
599
  }
889
-
890
600
  export interface UpdateBackendAuthVerificationMessageConfig {
891
601
  DeliveryMethod: DeliveryMethod | string | undefined;
892
-
893
602
  EmailSettings?: EmailSettings;
894
-
895
603
  SmsSettings?: SmsSettings;
896
604
  }
897
-
898
605
  export interface UpdateBackendAuthUserPoolConfig {
899
606
  ForgotPassword?: UpdateBackendAuthForgotPasswordConfig;
900
-
901
607
  Mfa?: UpdateBackendAuthMFAConfig;
902
-
903
608
  OAuth?: UpdateBackendAuthOAuthConfig;
904
-
905
609
  PasswordPolicy?: UpdateBackendAuthPasswordPolicyConfig;
906
-
907
610
  VerificationMessage?: UpdateBackendAuthVerificationMessageConfig;
908
611
  }
909
-
910
612
  export interface UpdateBackendAuthResourceConfig {
911
613
  AuthResources: AuthResources | string | undefined;
912
-
913
614
  IdentityPoolConfigs?: UpdateBackendAuthIdentityPoolConfig;
914
-
915
615
  Service: Service | string | undefined;
916
-
917
616
  UserPoolConfigs: UpdateBackendAuthUserPoolConfig | undefined;
918
617
  }
919
-
920
618
  export interface UpdateBackendAuthRequest {
921
619
  AppId: string | undefined;
922
-
923
620
  BackendEnvironmentName: string | undefined;
924
-
925
621
  ResourceConfig: UpdateBackendAuthResourceConfig | undefined;
926
-
927
622
  ResourceName: string | undefined;
928
623
  }
929
624
  export interface UpdateBackendAuthResponse {
930
625
  AppId?: string;
931
-
932
626
  BackendEnvironmentName?: string;
933
-
934
627
  Error?: string;
935
-
936
628
  JobId?: string;
937
-
938
629
  Operation?: string;
939
-
940
630
  Status?: string;
941
631
  }
942
-
943
632
  export interface LoginAuthConfigReqObj {
944
633
  AwsCognitoIdentityPoolId?: string;
945
-
946
634
  AwsCognitoRegion?: string;
947
-
948
635
  AwsUserPoolsId?: string;
949
-
950
636
  AwsUserPoolsWebClientId?: string;
951
637
  }
952
-
953
638
  export interface UpdateBackendConfigRequest {
954
639
  AppId: string | undefined;
955
-
956
640
  LoginAuthConfig?: LoginAuthConfigReqObj;
957
641
  }
958
642
  export interface UpdateBackendConfigResponse {
959
643
  AppId?: string;
960
-
961
644
  BackendManagerAppId?: string;
962
-
963
645
  Error?: string;
964
-
965
646
  LoginAuthConfig?: LoginAuthConfigReqObj;
966
647
  }
967
-
968
648
  export interface UpdateBackendJobRequest {
969
649
  AppId: string | undefined;
970
-
971
650
  BackendEnvironmentName: string | undefined;
972
-
973
651
  JobId: string | undefined;
974
-
975
652
  Operation?: string;
976
-
977
653
  Status?: string;
978
654
  }
979
655
  export interface UpdateBackendJobResponse {
980
656
  AppId?: string;
981
-
982
657
  BackendEnvironmentName?: string;
983
-
984
658
  CreateTime?: string;
985
-
986
659
  Error?: string;
987
-
988
660
  JobId?: string;
989
-
990
661
  Operation?: string;
991
-
992
662
  Status?: string;
993
-
994
663
  UpdateTime?: string;
995
664
  }
996
-
997
665
  export interface UpdateBackendStorageResourceConfig {
998
666
  Permissions: BackendStoragePermissions | undefined;
999
-
1000
667
  ServiceName: ServiceName | string | undefined;
1001
668
  }
1002
-
1003
669
  export interface UpdateBackendStorageRequest {
1004
670
  AppId: string | undefined;
1005
-
1006
671
  BackendEnvironmentName: string | undefined;
1007
-
1008
672
  ResourceConfig: UpdateBackendStorageResourceConfig | undefined;
1009
-
1010
673
  ResourceName: string | undefined;
1011
674
  }
1012
675
  export interface UpdateBackendStorageResponse {
1013
676
  AppId?: string;
1014
-
1015
677
  BackendEnvironmentName?: string;
1016
-
1017
678
  JobId?: string;
1018
-
1019
679
  Status?: string;
1020
680
  }
1021
-
1022
681
  export declare const CloneBackendRequestFilterSensitiveLog: (
1023
682
  obj: CloneBackendRequest
1024
683
  ) => any;
1025
-
1026
684
  export declare const CloneBackendResponseFilterSensitiveLog: (
1027
685
  obj: CloneBackendResponse
1028
686
  ) => any;
1029
-
1030
687
  export declare const ResourceConfigFilterSensitiveLog: (
1031
688
  obj: ResourceConfig
1032
689
  ) => any;
1033
-
1034
690
  export declare const CreateBackendRequestFilterSensitiveLog: (
1035
691
  obj: CreateBackendRequest
1036
692
  ) => any;
1037
-
1038
693
  export declare const CreateBackendResponseFilterSensitiveLog: (
1039
694
  obj: CreateBackendResponse
1040
695
  ) => any;
1041
-
1042
696
  export declare const BackendAPIAppSyncAuthSettingsFilterSensitiveLog: (
1043
697
  obj: BackendAPIAppSyncAuthSettings
1044
698
  ) => any;
1045
-
1046
699
  export declare const BackendAPIAuthTypeFilterSensitiveLog: (
1047
700
  obj: BackendAPIAuthType
1048
701
  ) => any;
1049
-
1050
702
  export declare const BackendAPIConflictResolutionFilterSensitiveLog: (
1051
703
  obj: BackendAPIConflictResolution
1052
704
  ) => any;
1053
-
1054
705
  export declare const BackendAPIResourceConfigFilterSensitiveLog: (
1055
706
  obj: BackendAPIResourceConfig
1056
707
  ) => any;
1057
-
1058
708
  export declare const CreateBackendAPIRequestFilterSensitiveLog: (
1059
709
  obj: CreateBackendAPIRequest
1060
710
  ) => any;
1061
-
1062
711
  export declare const CreateBackendAPIResponseFilterSensitiveLog: (
1063
712
  obj: CreateBackendAPIResponse
1064
713
  ) => any;
1065
-
1066
714
  export declare const CreateBackendAuthIdentityPoolConfigFilterSensitiveLog: (
1067
715
  obj: CreateBackendAuthIdentityPoolConfig
1068
716
  ) => any;
1069
-
1070
717
  export declare const EmailSettingsFilterSensitiveLog: (
1071
718
  obj: EmailSettings
1072
719
  ) => any;
1073
-
1074
720
  export declare const SmsSettingsFilterSensitiveLog: (obj: SmsSettings) => any;
1075
-
1076
721
  export declare const CreateBackendAuthForgotPasswordConfigFilterSensitiveLog: (
1077
722
  obj: CreateBackendAuthForgotPasswordConfig
1078
723
  ) => any;
1079
-
1080
724
  export declare const SettingsFilterSensitiveLog: (obj: Settings) => any;
1081
-
1082
725
  export declare const CreateBackendAuthMFAConfigFilterSensitiveLog: (
1083
726
  obj: CreateBackendAuthMFAConfig
1084
727
  ) => any;
1085
-
1086
728
  export declare const BackendAuthSocialProviderConfigFilterSensitiveLog: (
1087
729
  obj: BackendAuthSocialProviderConfig
1088
730
  ) => any;
1089
-
1090
731
  export declare const BackendAuthAppleProviderConfigFilterSensitiveLog: (
1091
732
  obj: BackendAuthAppleProviderConfig
1092
733
  ) => any;
1093
-
1094
734
  export declare const SocialProviderSettingsFilterSensitiveLog: (
1095
735
  obj: SocialProviderSettings
1096
736
  ) => any;
1097
-
1098
737
  export declare const CreateBackendAuthOAuthConfigFilterSensitiveLog: (
1099
738
  obj: CreateBackendAuthOAuthConfig
1100
739
  ) => any;
1101
-
1102
740
  export declare const CreateBackendAuthPasswordPolicyConfigFilterSensitiveLog: (
1103
741
  obj: CreateBackendAuthPasswordPolicyConfig
1104
742
  ) => any;
1105
-
1106
743
  export declare const CreateBackendAuthVerificationMessageConfigFilterSensitiveLog: (
1107
744
  obj: CreateBackendAuthVerificationMessageConfig
1108
745
  ) => any;
1109
-
1110
746
  export declare const CreateBackendAuthUserPoolConfigFilterSensitiveLog: (
1111
747
  obj: CreateBackendAuthUserPoolConfig
1112
748
  ) => any;
1113
-
1114
749
  export declare const CreateBackendAuthResourceConfigFilterSensitiveLog: (
1115
750
  obj: CreateBackendAuthResourceConfig
1116
751
  ) => any;
1117
-
1118
752
  export declare const CreateBackendAuthRequestFilterSensitiveLog: (
1119
753
  obj: CreateBackendAuthRequest
1120
754
  ) => any;
1121
-
1122
755
  export declare const CreateBackendAuthResponseFilterSensitiveLog: (
1123
756
  obj: CreateBackendAuthResponse
1124
757
  ) => any;
1125
-
1126
758
  export declare const CreateBackendConfigRequestFilterSensitiveLog: (
1127
759
  obj: CreateBackendConfigRequest
1128
760
  ) => any;
1129
-
1130
761
  export declare const CreateBackendConfigResponseFilterSensitiveLog: (
1131
762
  obj: CreateBackendConfigResponse
1132
763
  ) => any;
1133
-
1134
764
  export declare const BackendStoragePermissionsFilterSensitiveLog: (
1135
765
  obj: BackendStoragePermissions
1136
766
  ) => any;
1137
-
1138
767
  export declare const CreateBackendStorageResourceConfigFilterSensitiveLog: (
1139
768
  obj: CreateBackendStorageResourceConfig
1140
769
  ) => any;
1141
-
1142
770
  export declare const CreateBackendStorageRequestFilterSensitiveLog: (
1143
771
  obj: CreateBackendStorageRequest
1144
772
  ) => any;
1145
-
1146
773
  export declare const CreateBackendStorageResponseFilterSensitiveLog: (
1147
774
  obj: CreateBackendStorageResponse
1148
775
  ) => any;
1149
-
1150
776
  export declare const CreateTokenRequestFilterSensitiveLog: (
1151
777
  obj: CreateTokenRequest
1152
778
  ) => any;
1153
-
1154
779
  export declare const CreateTokenResponseFilterSensitiveLog: (
1155
780
  obj: CreateTokenResponse
1156
781
  ) => any;
1157
-
1158
782
  export declare const DeleteBackendRequestFilterSensitiveLog: (
1159
783
  obj: DeleteBackendRequest
1160
784
  ) => any;
1161
-
1162
785
  export declare const DeleteBackendResponseFilterSensitiveLog: (
1163
786
  obj: DeleteBackendResponse
1164
787
  ) => any;
1165
-
1166
788
  export declare const DeleteBackendAPIRequestFilterSensitiveLog: (
1167
789
  obj: DeleteBackendAPIRequest
1168
790
  ) => any;
1169
-
1170
791
  export declare const DeleteBackendAPIResponseFilterSensitiveLog: (
1171
792
  obj: DeleteBackendAPIResponse
1172
793
  ) => any;
1173
-
1174
794
  export declare const DeleteBackendAuthRequestFilterSensitiveLog: (
1175
795
  obj: DeleteBackendAuthRequest
1176
796
  ) => any;
1177
-
1178
797
  export declare const DeleteBackendAuthResponseFilterSensitiveLog: (
1179
798
  obj: DeleteBackendAuthResponse
1180
799
  ) => any;
1181
-
1182
800
  export declare const DeleteBackendStorageRequestFilterSensitiveLog: (
1183
801
  obj: DeleteBackendStorageRequest
1184
802
  ) => any;
1185
-
1186
803
  export declare const DeleteBackendStorageResponseFilterSensitiveLog: (
1187
804
  obj: DeleteBackendStorageResponse
1188
805
  ) => any;
1189
-
1190
806
  export declare const DeleteTokenRequestFilterSensitiveLog: (
1191
807
  obj: DeleteTokenRequest
1192
808
  ) => any;
1193
-
1194
809
  export declare const DeleteTokenResponseFilterSensitiveLog: (
1195
810
  obj: DeleteTokenResponse
1196
811
  ) => any;
1197
-
1198
812
  export declare const GenerateBackendAPIModelsRequestFilterSensitiveLog: (
1199
813
  obj: GenerateBackendAPIModelsRequest
1200
814
  ) => any;
1201
-
1202
815
  export declare const GenerateBackendAPIModelsResponseFilterSensitiveLog: (
1203
816
  obj: GenerateBackendAPIModelsResponse
1204
817
  ) => any;
1205
-
1206
818
  export declare const GetBackendRequestFilterSensitiveLog: (
1207
819
  obj: GetBackendRequest
1208
820
  ) => any;
1209
-
1210
821
  export declare const GetBackendResponseFilterSensitiveLog: (
1211
822
  obj: GetBackendResponse
1212
823
  ) => any;
1213
-
1214
824
  export declare const GetBackendAPIRequestFilterSensitiveLog: (
1215
825
  obj: GetBackendAPIRequest
1216
826
  ) => any;
1217
-
1218
827
  export declare const GetBackendAPIResponseFilterSensitiveLog: (
1219
828
  obj: GetBackendAPIResponse
1220
829
  ) => any;
1221
-
1222
830
  export declare const GetBackendAPIModelsRequestFilterSensitiveLog: (
1223
831
  obj: GetBackendAPIModelsRequest
1224
832
  ) => any;
1225
-
1226
833
  export declare const GetBackendAPIModelsResponseFilterSensitiveLog: (
1227
834
  obj: GetBackendAPIModelsResponse
1228
835
  ) => any;
1229
-
1230
836
  export declare const GetBackendAuthRequestFilterSensitiveLog: (
1231
837
  obj: GetBackendAuthRequest
1232
838
  ) => any;
1233
-
1234
839
  export declare const GetBackendAuthResponseFilterSensitiveLog: (
1235
840
  obj: GetBackendAuthResponse
1236
841
  ) => any;
1237
-
1238
842
  export declare const GetBackendJobRequestFilterSensitiveLog: (
1239
843
  obj: GetBackendJobRequest
1240
844
  ) => any;
1241
-
1242
845
  export declare const GetBackendJobResponseFilterSensitiveLog: (
1243
846
  obj: GetBackendJobResponse
1244
847
  ) => any;
1245
-
1246
848
  export declare const GetBackendStorageRequestFilterSensitiveLog: (
1247
849
  obj: GetBackendStorageRequest
1248
850
  ) => any;
1249
-
1250
851
  export declare const GetBackendStorageResourceConfigFilterSensitiveLog: (
1251
852
  obj: GetBackendStorageResourceConfig
1252
853
  ) => any;
1253
-
1254
854
  export declare const GetBackendStorageResponseFilterSensitiveLog: (
1255
855
  obj: GetBackendStorageResponse
1256
856
  ) => any;
1257
-
1258
857
  export declare const GetTokenRequestFilterSensitiveLog: (
1259
858
  obj: GetTokenRequest
1260
859
  ) => any;
1261
-
1262
860
  export declare const GetTokenResponseFilterSensitiveLog: (
1263
861
  obj: GetTokenResponse
1264
862
  ) => any;
1265
-
1266
863
  export declare const ImportBackendAuthRequestFilterSensitiveLog: (
1267
864
  obj: ImportBackendAuthRequest
1268
865
  ) => any;
1269
-
1270
866
  export declare const ImportBackendAuthResponseFilterSensitiveLog: (
1271
867
  obj: ImportBackendAuthResponse
1272
868
  ) => any;
1273
-
1274
869
  export declare const ImportBackendStorageRequestFilterSensitiveLog: (
1275
870
  obj: ImportBackendStorageRequest
1276
871
  ) => any;
1277
-
1278
872
  export declare const ImportBackendStorageResponseFilterSensitiveLog: (
1279
873
  obj: ImportBackendStorageResponse
1280
874
  ) => any;
1281
-
1282
875
  export declare const ListBackendJobsRequestFilterSensitiveLog: (
1283
876
  obj: ListBackendJobsRequest
1284
877
  ) => any;
1285
-
1286
878
  export declare const BackendJobRespObjFilterSensitiveLog: (
1287
879
  obj: BackendJobRespObj
1288
880
  ) => any;
1289
-
1290
881
  export declare const ListBackendJobsResponseFilterSensitiveLog: (
1291
882
  obj: ListBackendJobsResponse
1292
883
  ) => any;
1293
-
1294
884
  export declare const ListS3BucketsRequestFilterSensitiveLog: (
1295
885
  obj: ListS3BucketsRequest
1296
886
  ) => any;
1297
-
1298
887
  export declare const S3BucketInfoFilterSensitiveLog: (obj: S3BucketInfo) => any;
1299
-
1300
888
  export declare const ListS3BucketsResponseFilterSensitiveLog: (
1301
889
  obj: ListS3BucketsResponse
1302
890
  ) => any;
1303
-
1304
891
  export declare const RemoveAllBackendsRequestFilterSensitiveLog: (
1305
892
  obj: RemoveAllBackendsRequest
1306
893
  ) => any;
1307
-
1308
894
  export declare const RemoveAllBackendsResponseFilterSensitiveLog: (
1309
895
  obj: RemoveAllBackendsResponse
1310
896
  ) => any;
1311
-
1312
897
  export declare const RemoveBackendConfigRequestFilterSensitiveLog: (
1313
898
  obj: RemoveBackendConfigRequest
1314
899
  ) => any;
1315
-
1316
900
  export declare const RemoveBackendConfigResponseFilterSensitiveLog: (
1317
901
  obj: RemoveBackendConfigResponse
1318
902
  ) => any;
1319
-
1320
903
  export declare const UpdateBackendAPIRequestFilterSensitiveLog: (
1321
904
  obj: UpdateBackendAPIRequest
1322
905
  ) => any;
1323
-
1324
906
  export declare const UpdateBackendAPIResponseFilterSensitiveLog: (
1325
907
  obj: UpdateBackendAPIResponse
1326
908
  ) => any;
1327
-
1328
909
  export declare const UpdateBackendAuthIdentityPoolConfigFilterSensitiveLog: (
1329
910
  obj: UpdateBackendAuthIdentityPoolConfig
1330
911
  ) => any;
1331
-
1332
912
  export declare const UpdateBackendAuthForgotPasswordConfigFilterSensitiveLog: (
1333
913
  obj: UpdateBackendAuthForgotPasswordConfig
1334
914
  ) => any;
1335
-
1336
915
  export declare const UpdateBackendAuthMFAConfigFilterSensitiveLog: (
1337
916
  obj: UpdateBackendAuthMFAConfig
1338
917
  ) => any;
1339
-
1340
918
  export declare const UpdateBackendAuthOAuthConfigFilterSensitiveLog: (
1341
919
  obj: UpdateBackendAuthOAuthConfig
1342
920
  ) => any;
1343
-
1344
921
  export declare const UpdateBackendAuthPasswordPolicyConfigFilterSensitiveLog: (
1345
922
  obj: UpdateBackendAuthPasswordPolicyConfig
1346
923
  ) => any;
1347
-
1348
924
  export declare const UpdateBackendAuthVerificationMessageConfigFilterSensitiveLog: (
1349
925
  obj: UpdateBackendAuthVerificationMessageConfig
1350
926
  ) => any;
1351
-
1352
927
  export declare const UpdateBackendAuthUserPoolConfigFilterSensitiveLog: (
1353
928
  obj: UpdateBackendAuthUserPoolConfig
1354
929
  ) => any;
1355
-
1356
930
  export declare const UpdateBackendAuthResourceConfigFilterSensitiveLog: (
1357
931
  obj: UpdateBackendAuthResourceConfig
1358
932
  ) => any;
1359
-
1360
933
  export declare const UpdateBackendAuthRequestFilterSensitiveLog: (
1361
934
  obj: UpdateBackendAuthRequest
1362
935
  ) => any;
1363
-
1364
936
  export declare const UpdateBackendAuthResponseFilterSensitiveLog: (
1365
937
  obj: UpdateBackendAuthResponse
1366
938
  ) => any;
1367
-
1368
939
  export declare const LoginAuthConfigReqObjFilterSensitiveLog: (
1369
940
  obj: LoginAuthConfigReqObj
1370
941
  ) => any;
1371
-
1372
942
  export declare const UpdateBackendConfigRequestFilterSensitiveLog: (
1373
943
  obj: UpdateBackendConfigRequest
1374
944
  ) => any;
1375
-
1376
945
  export declare const UpdateBackendConfigResponseFilterSensitiveLog: (
1377
946
  obj: UpdateBackendConfigResponse
1378
947
  ) => any;
1379
-
1380
948
  export declare const UpdateBackendJobRequestFilterSensitiveLog: (
1381
949
  obj: UpdateBackendJobRequest
1382
950
  ) => any;
1383
-
1384
951
  export declare const UpdateBackendJobResponseFilterSensitiveLog: (
1385
952
  obj: UpdateBackendJobResponse
1386
953
  ) => any;
1387
-
1388
954
  export declare const UpdateBackendStorageResourceConfigFilterSensitiveLog: (
1389
955
  obj: UpdateBackendStorageResourceConfig
1390
956
  ) => any;
1391
-
1392
957
  export declare const UpdateBackendStorageRequestFilterSensitiveLog: (
1393
958
  obj: UpdateBackendStorageRequest
1394
959
  ) => any;
1395
-
1396
960
  export declare const UpdateBackendStorageResponseFilterSensitiveLog: (
1397
961
  obj: UpdateBackendStorageResponse
1398
962
  ) => any;