@aws-sdk/client-amplifybackend 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CloneBackendCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendAPICommand.js +2 -2
- package/dist-cjs/commands/CreateBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/CreateTokenCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendAPICommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/DeleteTokenCommand.js +2 -2
- package/dist-cjs/commands/GenerateBackendAPIModelsCommand.js +2 -2
- package/dist-cjs/commands/GetBackendAPICommand.js +2 -2
- package/dist-cjs/commands/GetBackendAPIModelsCommand.js +2 -2
- package/dist-cjs/commands/GetBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/GetBackendCommand.js +2 -2
- package/dist-cjs/commands/GetBackendJobCommand.js +2 -2
- package/dist-cjs/commands/GetBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/GetTokenCommand.js +2 -2
- package/dist-cjs/commands/ImportBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/ImportBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/ListBackendJobsCommand.js +2 -2
- package/dist-cjs/commands/ListS3BucketsCommand.js +2 -2
- package/dist-cjs/commands/RemoveAllBackendsCommand.js +2 -2
- package/dist-cjs/commands/RemoveBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendAPICommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendJobCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendStorageCommand.js +2 -2
- package/dist-cjs/models/models_0.js +387 -579
- package/dist-es/commands/CloneBackendCommand.js +3 -3
- package/dist-es/commands/CreateBackendAPICommand.js +3 -3
- package/dist-es/commands/CreateBackendAuthCommand.js +3 -3
- package/dist-es/commands/CreateBackendCommand.js +3 -3
- package/dist-es/commands/CreateBackendConfigCommand.js +3 -3
- package/dist-es/commands/CreateBackendStorageCommand.js +3 -3
- package/dist-es/commands/CreateTokenCommand.js +3 -3
- package/dist-es/commands/DeleteBackendAPICommand.js +3 -3
- package/dist-es/commands/DeleteBackendAuthCommand.js +3 -3
- package/dist-es/commands/DeleteBackendCommand.js +3 -3
- package/dist-es/commands/DeleteBackendStorageCommand.js +3 -3
- package/dist-es/commands/DeleteTokenCommand.js +3 -3
- package/dist-es/commands/GenerateBackendAPIModelsCommand.js +3 -3
- package/dist-es/commands/GetBackendAPICommand.js +3 -3
- package/dist-es/commands/GetBackendAPIModelsCommand.js +3 -3
- package/dist-es/commands/GetBackendAuthCommand.js +3 -3
- package/dist-es/commands/GetBackendCommand.js +3 -3
- package/dist-es/commands/GetBackendJobCommand.js +3 -3
- package/dist-es/commands/GetBackendStorageCommand.js +3 -3
- package/dist-es/commands/GetTokenCommand.js +3 -3
- package/dist-es/commands/ImportBackendAuthCommand.js +3 -3
- package/dist-es/commands/ImportBackendStorageCommand.js +3 -3
- package/dist-es/commands/ListBackendJobsCommand.js +3 -3
- package/dist-es/commands/ListS3BucketsCommand.js +3 -3
- package/dist-es/commands/RemoveAllBackendsCommand.js +3 -3
- package/dist-es/commands/RemoveBackendConfigCommand.js +3 -3
- package/dist-es/commands/UpdateBackendAPICommand.js +3 -3
- package/dist-es/commands/UpdateBackendAuthCommand.js +3 -3
- package/dist-es/commands/UpdateBackendConfigCommand.js +3 -3
- package/dist-es/commands/UpdateBackendJobCommand.js +3 -3
- package/dist-es/commands/UpdateBackendStorageCommand.js +3 -3
- package/dist-es/models/models_0.js +96 -384
- package/dist-types/models/models_0.d.ts +384 -576
- package/dist-types/ts3.4/models/models_0.d.ts +192 -384
- package/package.json +7 -7
|
@@ -38,12 +38,6 @@ export interface CloneBackendRequest {
|
|
|
38
38
|
*/
|
|
39
39
|
TargetEnvironmentName: string | undefined;
|
|
40
40
|
}
|
|
41
|
-
export declare namespace CloneBackendRequest {
|
|
42
|
-
/**
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
|
-
const filterSensitiveLog: (obj: CloneBackendRequest) => any;
|
|
46
|
-
}
|
|
47
41
|
export interface CloneBackendResponse {
|
|
48
42
|
/**
|
|
49
43
|
* <p>The app ID.</p>
|
|
@@ -70,12 +64,6 @@ export interface CloneBackendResponse {
|
|
|
70
64
|
*/
|
|
71
65
|
Status?: string;
|
|
72
66
|
}
|
|
73
|
-
export declare namespace CloneBackendResponse {
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
const filterSensitiveLog: (obj: CloneBackendResponse) => any;
|
|
78
|
-
}
|
|
79
67
|
/**
|
|
80
68
|
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
81
69
|
*/
|
|
@@ -134,12 +122,6 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
134
122
|
*/
|
|
135
123
|
export interface ResourceConfig {
|
|
136
124
|
}
|
|
137
|
-
export declare namespace ResourceConfig {
|
|
138
|
-
/**
|
|
139
|
-
* @internal
|
|
140
|
-
*/
|
|
141
|
-
const filterSensitiveLog: (obj: ResourceConfig) => any;
|
|
142
|
-
}
|
|
143
125
|
/**
|
|
144
126
|
* <p>The request body for CreateBackend.</p>
|
|
145
127
|
*/
|
|
@@ -165,12 +147,6 @@ export interface CreateBackendRequest {
|
|
|
165
147
|
*/
|
|
166
148
|
ResourceName?: string;
|
|
167
149
|
}
|
|
168
|
-
export declare namespace CreateBackendRequest {
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
const filterSensitiveLog: (obj: CreateBackendRequest) => any;
|
|
173
|
-
}
|
|
174
150
|
export interface CreateBackendResponse {
|
|
175
151
|
/**
|
|
176
152
|
* <p>The app ID.</p>
|
|
@@ -197,12 +173,6 @@ export interface CreateBackendResponse {
|
|
|
197
173
|
*/
|
|
198
174
|
Status?: string;
|
|
199
175
|
}
|
|
200
|
-
export declare namespace CreateBackendResponse {
|
|
201
|
-
/**
|
|
202
|
-
* @internal
|
|
203
|
-
*/
|
|
204
|
-
const filterSensitiveLog: (obj: CreateBackendResponse) => any;
|
|
205
|
-
}
|
|
206
176
|
export declare enum Mode {
|
|
207
177
|
AMAZON_COGNITO_USER_POOLS = "AMAZON_COGNITO_USER_POOLS",
|
|
208
178
|
API_KEY = "API_KEY",
|
|
@@ -246,12 +216,6 @@ export interface BackendAPIAppSyncAuthSettings {
|
|
|
246
216
|
*/
|
|
247
217
|
OpenIDProviderName?: string;
|
|
248
218
|
}
|
|
249
|
-
export declare namespace BackendAPIAppSyncAuthSettings {
|
|
250
|
-
/**
|
|
251
|
-
* @internal
|
|
252
|
-
*/
|
|
253
|
-
const filterSensitiveLog: (obj: BackendAPIAppSyncAuthSettings) => any;
|
|
254
|
-
}
|
|
255
219
|
/**
|
|
256
220
|
* <p>Describes the auth types for your configured data models.</p>
|
|
257
221
|
*/
|
|
@@ -265,12 +229,6 @@ export interface BackendAPIAuthType {
|
|
|
265
229
|
*/
|
|
266
230
|
Settings?: BackendAPIAppSyncAuthSettings;
|
|
267
231
|
}
|
|
268
|
-
export declare namespace BackendAPIAuthType {
|
|
269
|
-
/**
|
|
270
|
-
* @internal
|
|
271
|
-
*/
|
|
272
|
-
const filterSensitiveLog: (obj: BackendAPIAuthType) => any;
|
|
273
|
-
}
|
|
274
232
|
export declare enum ResolutionStrategy {
|
|
275
233
|
AUTOMERGE = "AUTOMERGE",
|
|
276
234
|
LAMBDA = "LAMBDA",
|
|
@@ -286,12 +244,6 @@ export interface BackendAPIConflictResolution {
|
|
|
286
244
|
*/
|
|
287
245
|
ResolutionStrategy?: ResolutionStrategy | string;
|
|
288
246
|
}
|
|
289
|
-
export declare namespace BackendAPIConflictResolution {
|
|
290
|
-
/**
|
|
291
|
-
* @internal
|
|
292
|
-
*/
|
|
293
|
-
const filterSensitiveLog: (obj: BackendAPIConflictResolution) => any;
|
|
294
|
-
}
|
|
295
247
|
/**
|
|
296
248
|
* <p>The resource config for the data model, configured as a part of the Amplify project.</p>
|
|
297
249
|
*/
|
|
@@ -321,12 +273,6 @@ export interface BackendAPIResourceConfig {
|
|
|
321
273
|
*/
|
|
322
274
|
TransformSchema?: string;
|
|
323
275
|
}
|
|
324
|
-
export declare namespace BackendAPIResourceConfig {
|
|
325
|
-
/**
|
|
326
|
-
* @internal
|
|
327
|
-
*/
|
|
328
|
-
const filterSensitiveLog: (obj: BackendAPIResourceConfig) => any;
|
|
329
|
-
}
|
|
330
276
|
/**
|
|
331
277
|
* <p>The request body for CreateBackendAPI.</p>
|
|
332
278
|
*/
|
|
@@ -348,12 +294,6 @@ export interface CreateBackendAPIRequest {
|
|
|
348
294
|
*/
|
|
349
295
|
ResourceName: string | undefined;
|
|
350
296
|
}
|
|
351
|
-
export declare namespace CreateBackendAPIRequest {
|
|
352
|
-
/**
|
|
353
|
-
* @internal
|
|
354
|
-
*/
|
|
355
|
-
const filterSensitiveLog: (obj: CreateBackendAPIRequest) => any;
|
|
356
|
-
}
|
|
357
297
|
export interface CreateBackendAPIResponse {
|
|
358
298
|
/**
|
|
359
299
|
* <p>The app ID.</p>
|
|
@@ -380,12 +320,6 @@ export interface CreateBackendAPIResponse {
|
|
|
380
320
|
*/
|
|
381
321
|
Status?: string;
|
|
382
322
|
}
|
|
383
|
-
export declare namespace CreateBackendAPIResponse {
|
|
384
|
-
/**
|
|
385
|
-
* @internal
|
|
386
|
-
*/
|
|
387
|
-
const filterSensitiveLog: (obj: CreateBackendAPIResponse) => any;
|
|
388
|
-
}
|
|
389
323
|
export declare enum AuthResources {
|
|
390
324
|
IDENTITY_POOL_AND_USER_POOL = "IDENTITY_POOL_AND_USER_POOL",
|
|
391
325
|
USER_POOL_ONLY = "USER_POOL_ONLY"
|
|
@@ -403,12 +337,6 @@ export interface CreateBackendAuthIdentityPoolConfig {
|
|
|
403
337
|
*/
|
|
404
338
|
UnauthenticatedLogin: boolean | undefined;
|
|
405
339
|
}
|
|
406
|
-
export declare namespace CreateBackendAuthIdentityPoolConfig {
|
|
407
|
-
/**
|
|
408
|
-
* @internal
|
|
409
|
-
*/
|
|
410
|
-
const filterSensitiveLog: (obj: CreateBackendAuthIdentityPoolConfig) => any;
|
|
411
|
-
}
|
|
412
340
|
export declare enum Service {
|
|
413
341
|
COGNITO = "COGNITO"
|
|
414
342
|
}
|
|
@@ -429,12 +357,6 @@ export interface EmailSettings {
|
|
|
429
357
|
*/
|
|
430
358
|
EmailSubject?: string;
|
|
431
359
|
}
|
|
432
|
-
export declare namespace EmailSettings {
|
|
433
|
-
/**
|
|
434
|
-
* @internal
|
|
435
|
-
*/
|
|
436
|
-
const filterSensitiveLog: (obj: EmailSettings) => any;
|
|
437
|
-
}
|
|
438
360
|
/**
|
|
439
361
|
* <p>SMS settings for authentication.</p>
|
|
440
362
|
*/
|
|
@@ -444,12 +366,6 @@ export interface SmsSettings {
|
|
|
444
366
|
*/
|
|
445
367
|
SmsMessage?: string;
|
|
446
368
|
}
|
|
447
|
-
export declare namespace SmsSettings {
|
|
448
|
-
/**
|
|
449
|
-
* @internal
|
|
450
|
-
*/
|
|
451
|
-
const filterSensitiveLog: (obj: SmsSettings) => any;
|
|
452
|
-
}
|
|
453
369
|
/**
|
|
454
370
|
* <p><b>(DEPRECATED)</b> Describes the forgot password policy for authenticating into the Amplify app.</p>
|
|
455
371
|
*/
|
|
@@ -467,12 +383,6 @@ export interface CreateBackendAuthForgotPasswordConfig {
|
|
|
467
383
|
*/
|
|
468
384
|
SmsSettings?: SmsSettings;
|
|
469
385
|
}
|
|
470
|
-
export declare namespace CreateBackendAuthForgotPasswordConfig {
|
|
471
|
-
/**
|
|
472
|
-
* @internal
|
|
473
|
-
*/
|
|
474
|
-
const filterSensitiveLog: (obj: CreateBackendAuthForgotPasswordConfig) => any;
|
|
475
|
-
}
|
|
476
386
|
export declare enum MFAMode {
|
|
477
387
|
OFF = "OFF",
|
|
478
388
|
ON = "ON",
|
|
@@ -495,12 +405,6 @@ export interface Settings {
|
|
|
495
405
|
*/
|
|
496
406
|
SmsMessage?: string;
|
|
497
407
|
}
|
|
498
|
-
export declare namespace Settings {
|
|
499
|
-
/**
|
|
500
|
-
* @internal
|
|
501
|
-
*/
|
|
502
|
-
const filterSensitiveLog: (obj: Settings) => any;
|
|
503
|
-
}
|
|
504
408
|
/**
|
|
505
409
|
* <p>Describes whether to apply multi-factor authentication policies for your Amazon Cognito user pool configured as a part of your Amplify project.</p>
|
|
506
410
|
*/
|
|
@@ -514,12 +418,6 @@ export interface CreateBackendAuthMFAConfig {
|
|
|
514
418
|
*/
|
|
515
419
|
Settings?: Settings;
|
|
516
420
|
}
|
|
517
|
-
export declare namespace CreateBackendAuthMFAConfig {
|
|
518
|
-
/**
|
|
519
|
-
* @internal
|
|
520
|
-
*/
|
|
521
|
-
const filterSensitiveLog: (obj: CreateBackendAuthMFAConfig) => any;
|
|
522
|
-
}
|
|
523
421
|
export declare enum OAuthGrantType {
|
|
524
422
|
CODE = "CODE",
|
|
525
423
|
IMPLICIT = "IMPLICIT"
|
|
@@ -544,12 +442,6 @@ export interface BackendAuthSocialProviderConfig {
|
|
|
544
442
|
*/
|
|
545
443
|
ClientSecret?: string;
|
|
546
444
|
}
|
|
547
|
-
export declare namespace BackendAuthSocialProviderConfig {
|
|
548
|
-
/**
|
|
549
|
-
* @internal
|
|
550
|
-
*/
|
|
551
|
-
const filterSensitiveLog: (obj: BackendAuthSocialProviderConfig) => any;
|
|
552
|
-
}
|
|
553
445
|
/**
|
|
554
446
|
* <p>Describes Apple social federation configurations for allowing your app users to sign in using OAuth.</p>
|
|
555
447
|
*/
|
|
@@ -571,12 +463,6 @@ export interface BackendAuthAppleProviderConfig {
|
|
|
571
463
|
*/
|
|
572
464
|
TeamId?: string;
|
|
573
465
|
}
|
|
574
|
-
export declare namespace BackendAuthAppleProviderConfig {
|
|
575
|
-
/**
|
|
576
|
-
* @internal
|
|
577
|
-
*/
|
|
578
|
-
const filterSensitiveLog: (obj: BackendAuthAppleProviderConfig) => any;
|
|
579
|
-
}
|
|
580
466
|
/**
|
|
581
467
|
* <p>The settings for using the social identity providers for access to your Amplify app.</p>
|
|
582
468
|
*/
|
|
@@ -598,12 +484,6 @@ export interface SocialProviderSettings {
|
|
|
598
484
|
*/
|
|
599
485
|
SignInWithApple?: BackendAuthAppleProviderConfig;
|
|
600
486
|
}
|
|
601
|
-
export declare namespace SocialProviderSettings {
|
|
602
|
-
/**
|
|
603
|
-
* @internal
|
|
604
|
-
*/
|
|
605
|
-
const filterSensitiveLog: (obj: SocialProviderSettings) => any;
|
|
606
|
-
}
|
|
607
487
|
/**
|
|
608
488
|
* <p>Creates the OAuth configuration for your Amplify project.</p>
|
|
609
489
|
*/
|
|
@@ -633,12 +513,6 @@ export interface CreateBackendAuthOAuthConfig {
|
|
|
633
513
|
*/
|
|
634
514
|
SocialProviderSettings?: SocialProviderSettings;
|
|
635
515
|
}
|
|
636
|
-
export declare namespace CreateBackendAuthOAuthConfig {
|
|
637
|
-
/**
|
|
638
|
-
* @internal
|
|
639
|
-
*/
|
|
640
|
-
const filterSensitiveLog: (obj: CreateBackendAuthOAuthConfig) => any;
|
|
641
|
-
}
|
|
642
516
|
/**
|
|
643
517
|
* <p>The password policy configuration for the backend to your Amplify project.</p>
|
|
644
518
|
*/
|
|
@@ -652,12 +526,6 @@ export interface CreateBackendAuthPasswordPolicyConfig {
|
|
|
652
526
|
*/
|
|
653
527
|
MinimumLength: number | undefined;
|
|
654
528
|
}
|
|
655
|
-
export declare namespace CreateBackendAuthPasswordPolicyConfig {
|
|
656
|
-
/**
|
|
657
|
-
* @internal
|
|
658
|
-
*/
|
|
659
|
-
const filterSensitiveLog: (obj: CreateBackendAuthPasswordPolicyConfig) => any;
|
|
660
|
-
}
|
|
661
529
|
export declare enum RequiredSignUpAttributesElement {
|
|
662
530
|
ADDRESS = "ADDRESS",
|
|
663
531
|
BIRTHDATE = "BIRTHDATE",
|
|
@@ -700,12 +568,6 @@ export interface CreateBackendAuthVerificationMessageConfig {
|
|
|
700
568
|
*/
|
|
701
569
|
SmsSettings?: SmsSettings;
|
|
702
570
|
}
|
|
703
|
-
export declare namespace CreateBackendAuthVerificationMessageConfig {
|
|
704
|
-
/**
|
|
705
|
-
* @internal
|
|
706
|
-
*/
|
|
707
|
-
const filterSensitiveLog: (obj: CreateBackendAuthVerificationMessageConfig) => any;
|
|
708
|
-
}
|
|
709
571
|
/**
|
|
710
572
|
* <p>Describes the Amazon Cognito user pool configuration for the auth resource to be configured for your Amplify project.</p>
|
|
711
573
|
*/
|
|
@@ -743,12 +605,6 @@ export interface CreateBackendAuthUserPoolConfig {
|
|
|
743
605
|
*/
|
|
744
606
|
VerificationMessage?: CreateBackendAuthVerificationMessageConfig;
|
|
745
607
|
}
|
|
746
|
-
export declare namespace CreateBackendAuthUserPoolConfig {
|
|
747
|
-
/**
|
|
748
|
-
* @internal
|
|
749
|
-
*/
|
|
750
|
-
const filterSensitiveLog: (obj: CreateBackendAuthUserPoolConfig) => any;
|
|
751
|
-
}
|
|
752
608
|
/**
|
|
753
609
|
* <p>Defines the resource configuration when creating an auth resource in your Amplify project.</p>
|
|
754
610
|
*/
|
|
@@ -770,12 +626,6 @@ export interface CreateBackendAuthResourceConfig {
|
|
|
770
626
|
*/
|
|
771
627
|
UserPoolConfigs: CreateBackendAuthUserPoolConfig | undefined;
|
|
772
628
|
}
|
|
773
|
-
export declare namespace CreateBackendAuthResourceConfig {
|
|
774
|
-
/**
|
|
775
|
-
* @internal
|
|
776
|
-
*/
|
|
777
|
-
const filterSensitiveLog: (obj: CreateBackendAuthResourceConfig) => any;
|
|
778
|
-
}
|
|
779
629
|
/**
|
|
780
630
|
* <p>The request body for CreateBackendAuth.</p>
|
|
781
631
|
*/
|
|
@@ -797,12 +647,6 @@ export interface CreateBackendAuthRequest {
|
|
|
797
647
|
*/
|
|
798
648
|
ResourceName: string | undefined;
|
|
799
649
|
}
|
|
800
|
-
export declare namespace CreateBackendAuthRequest {
|
|
801
|
-
/**
|
|
802
|
-
* @internal
|
|
803
|
-
*/
|
|
804
|
-
const filterSensitiveLog: (obj: CreateBackendAuthRequest) => any;
|
|
805
|
-
}
|
|
806
650
|
export interface CreateBackendAuthResponse {
|
|
807
651
|
/**
|
|
808
652
|
* <p>The app ID.</p>
|
|
@@ -829,12 +673,6 @@ export interface CreateBackendAuthResponse {
|
|
|
829
673
|
*/
|
|
830
674
|
Status?: string;
|
|
831
675
|
}
|
|
832
|
-
export declare namespace CreateBackendAuthResponse {
|
|
833
|
-
/**
|
|
834
|
-
* @internal
|
|
835
|
-
*/
|
|
836
|
-
const filterSensitiveLog: (obj: CreateBackendAuthResponse) => any;
|
|
837
|
-
}
|
|
838
676
|
/**
|
|
839
677
|
* <p>The request body for CreateBackendConfig.</p>
|
|
840
678
|
*/
|
|
@@ -848,12 +686,6 @@ export interface CreateBackendConfigRequest {
|
|
|
848
686
|
*/
|
|
849
687
|
BackendManagerAppId?: string;
|
|
850
688
|
}
|
|
851
|
-
export declare namespace CreateBackendConfigRequest {
|
|
852
|
-
/**
|
|
853
|
-
* @internal
|
|
854
|
-
*/
|
|
855
|
-
const filterSensitiveLog: (obj: CreateBackendConfigRequest) => any;
|
|
856
|
-
}
|
|
857
689
|
export interface CreateBackendConfigResponse {
|
|
858
690
|
/**
|
|
859
691
|
* <p>The app ID.</p>
|
|
@@ -872,12 +704,6 @@ export interface CreateBackendConfigResponse {
|
|
|
872
704
|
*/
|
|
873
705
|
Status?: string;
|
|
874
706
|
}
|
|
875
|
-
export declare namespace CreateBackendConfigResponse {
|
|
876
|
-
/**
|
|
877
|
-
* @internal
|
|
878
|
-
*/
|
|
879
|
-
const filterSensitiveLog: (obj: CreateBackendConfigResponse) => any;
|
|
880
|
-
}
|
|
881
707
|
export declare enum AuthenticatedElement {
|
|
882
708
|
CREATE_AND_UPDATE = "CREATE_AND_UPDATE",
|
|
883
709
|
DELETE = "DELETE",
|
|
@@ -901,12 +727,6 @@ export interface BackendStoragePermissions {
|
|
|
901
727
|
*/
|
|
902
728
|
UnAuthenticated?: (UnAuthenticatedElement | string)[];
|
|
903
729
|
}
|
|
904
|
-
export declare namespace BackendStoragePermissions {
|
|
905
|
-
/**
|
|
906
|
-
* @internal
|
|
907
|
-
*/
|
|
908
|
-
const filterSensitiveLog: (obj: BackendStoragePermissions) => any;
|
|
909
|
-
}
|
|
910
730
|
export declare enum ServiceName {
|
|
911
731
|
S3 = "S3"
|
|
912
732
|
}
|
|
@@ -927,12 +747,6 @@ export interface CreateBackendStorageResourceConfig {
|
|
|
927
747
|
*/
|
|
928
748
|
ServiceName: ServiceName | string | undefined;
|
|
929
749
|
}
|
|
930
|
-
export declare namespace CreateBackendStorageResourceConfig {
|
|
931
|
-
/**
|
|
932
|
-
* @internal
|
|
933
|
-
*/
|
|
934
|
-
const filterSensitiveLog: (obj: CreateBackendStorageResourceConfig) => any;
|
|
935
|
-
}
|
|
936
750
|
/**
|
|
937
751
|
* <p>The request body for CreateBackendStorage.</p>
|
|
938
752
|
*/
|
|
@@ -954,12 +768,6 @@ export interface CreateBackendStorageRequest {
|
|
|
954
768
|
*/
|
|
955
769
|
ResourceName: string | undefined;
|
|
956
770
|
}
|
|
957
|
-
export declare namespace CreateBackendStorageRequest {
|
|
958
|
-
/**
|
|
959
|
-
* @internal
|
|
960
|
-
*/
|
|
961
|
-
const filterSensitiveLog: (obj: CreateBackendStorageRequest) => any;
|
|
962
|
-
}
|
|
963
771
|
export interface CreateBackendStorageResponse {
|
|
964
772
|
/**
|
|
965
773
|
* <p>The app ID.</p>
|
|
@@ -978,24 +786,12 @@ export interface CreateBackendStorageResponse {
|
|
|
978
786
|
*/
|
|
979
787
|
Status?: string;
|
|
980
788
|
}
|
|
981
|
-
export declare namespace CreateBackendStorageResponse {
|
|
982
|
-
/**
|
|
983
|
-
* @internal
|
|
984
|
-
*/
|
|
985
|
-
const filterSensitiveLog: (obj: CreateBackendStorageResponse) => any;
|
|
986
|
-
}
|
|
987
789
|
export interface CreateTokenRequest {
|
|
988
790
|
/**
|
|
989
791
|
* <p>The app ID.</p>
|
|
990
792
|
*/
|
|
991
793
|
AppId: string | undefined;
|
|
992
794
|
}
|
|
993
|
-
export declare namespace CreateTokenRequest {
|
|
994
|
-
/**
|
|
995
|
-
* @internal
|
|
996
|
-
*/
|
|
997
|
-
const filterSensitiveLog: (obj: CreateTokenRequest) => any;
|
|
998
|
-
}
|
|
999
795
|
export interface CreateTokenResponse {
|
|
1000
796
|
/**
|
|
1001
797
|
* <p>The app ID.</p>
|
|
@@ -1014,12 +810,6 @@ export interface CreateTokenResponse {
|
|
|
1014
810
|
*/
|
|
1015
811
|
Ttl?: string;
|
|
1016
812
|
}
|
|
1017
|
-
export declare namespace CreateTokenResponse {
|
|
1018
|
-
/**
|
|
1019
|
-
* @internal
|
|
1020
|
-
*/
|
|
1021
|
-
const filterSensitiveLog: (obj: CreateTokenResponse) => any;
|
|
1022
|
-
}
|
|
1023
813
|
export interface DeleteBackendRequest {
|
|
1024
814
|
/**
|
|
1025
815
|
* <p>The app ID.</p>
|
|
@@ -1030,12 +820,6 @@ export interface DeleteBackendRequest {
|
|
|
1030
820
|
*/
|
|
1031
821
|
BackendEnvironmentName: string | undefined;
|
|
1032
822
|
}
|
|
1033
|
-
export declare namespace DeleteBackendRequest {
|
|
1034
|
-
/**
|
|
1035
|
-
* @internal
|
|
1036
|
-
*/
|
|
1037
|
-
const filterSensitiveLog: (obj: DeleteBackendRequest) => any;
|
|
1038
|
-
}
|
|
1039
823
|
export interface DeleteBackendResponse {
|
|
1040
824
|
/**
|
|
1041
825
|
* <p>The app ID.</p>
|
|
@@ -1062,12 +846,6 @@ export interface DeleteBackendResponse {
|
|
|
1062
846
|
*/
|
|
1063
847
|
Status?: string;
|
|
1064
848
|
}
|
|
1065
|
-
export declare namespace DeleteBackendResponse {
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
const filterSensitiveLog: (obj: DeleteBackendResponse) => any;
|
|
1070
|
-
}
|
|
1071
849
|
/**
|
|
1072
850
|
* <p>The request body for DeleteBackendAPI.</p>
|
|
1073
851
|
*/
|
|
@@ -1089,12 +867,6 @@ export interface DeleteBackendAPIRequest {
|
|
|
1089
867
|
*/
|
|
1090
868
|
ResourceName: string | undefined;
|
|
1091
869
|
}
|
|
1092
|
-
export declare namespace DeleteBackendAPIRequest {
|
|
1093
|
-
/**
|
|
1094
|
-
* @internal
|
|
1095
|
-
*/
|
|
1096
|
-
const filterSensitiveLog: (obj: DeleteBackendAPIRequest) => any;
|
|
1097
|
-
}
|
|
1098
870
|
export interface DeleteBackendAPIResponse {
|
|
1099
871
|
/**
|
|
1100
872
|
* <p>The app ID.</p>
|
|
@@ -1121,12 +893,6 @@ export interface DeleteBackendAPIResponse {
|
|
|
1121
893
|
*/
|
|
1122
894
|
Status?: string;
|
|
1123
895
|
}
|
|
1124
|
-
export declare namespace DeleteBackendAPIResponse {
|
|
1125
|
-
/**
|
|
1126
|
-
* @internal
|
|
1127
|
-
*/
|
|
1128
|
-
const filterSensitiveLog: (obj: DeleteBackendAPIResponse) => any;
|
|
1129
|
-
}
|
|
1130
896
|
/**
|
|
1131
897
|
* <p>The request body for DeleteBackendAuth.</p>
|
|
1132
898
|
*/
|
|
@@ -1144,12 +910,6 @@ export interface DeleteBackendAuthRequest {
|
|
|
1144
910
|
*/
|
|
1145
911
|
ResourceName: string | undefined;
|
|
1146
912
|
}
|
|
1147
|
-
export declare namespace DeleteBackendAuthRequest {
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
const filterSensitiveLog: (obj: DeleteBackendAuthRequest) => any;
|
|
1152
|
-
}
|
|
1153
913
|
export interface DeleteBackendAuthResponse {
|
|
1154
914
|
/**
|
|
1155
915
|
* <p>The app ID.</p>
|
|
@@ -1176,12 +936,6 @@ export interface DeleteBackendAuthResponse {
|
|
|
1176
936
|
*/
|
|
1177
937
|
Status?: string;
|
|
1178
938
|
}
|
|
1179
|
-
export declare namespace DeleteBackendAuthResponse {
|
|
1180
|
-
/**
|
|
1181
|
-
* @internal
|
|
1182
|
-
*/
|
|
1183
|
-
const filterSensitiveLog: (obj: DeleteBackendAuthResponse) => any;
|
|
1184
|
-
}
|
|
1185
939
|
/**
|
|
1186
940
|
* <p>The request body for DeleteBackendStorage.</p>
|
|
1187
941
|
*/
|
|
@@ -1203,12 +957,6 @@ export interface DeleteBackendStorageRequest {
|
|
|
1203
957
|
*/
|
|
1204
958
|
ServiceName: ServiceName | string | undefined;
|
|
1205
959
|
}
|
|
1206
|
-
export declare namespace DeleteBackendStorageRequest {
|
|
1207
|
-
/**
|
|
1208
|
-
* @internal
|
|
1209
|
-
*/
|
|
1210
|
-
const filterSensitiveLog: (obj: DeleteBackendStorageRequest) => any;
|
|
1211
|
-
}
|
|
1212
960
|
export interface DeleteBackendStorageResponse {
|
|
1213
961
|
/**
|
|
1214
962
|
* <p>The app ID.</p>
|
|
@@ -1227,12 +975,6 @@ export interface DeleteBackendStorageResponse {
|
|
|
1227
975
|
*/
|
|
1228
976
|
Status?: string;
|
|
1229
977
|
}
|
|
1230
|
-
export declare namespace DeleteBackendStorageResponse {
|
|
1231
|
-
/**
|
|
1232
|
-
* @internal
|
|
1233
|
-
*/
|
|
1234
|
-
const filterSensitiveLog: (obj: DeleteBackendStorageResponse) => any;
|
|
1235
|
-
}
|
|
1236
978
|
export interface DeleteTokenRequest {
|
|
1237
979
|
/**
|
|
1238
980
|
* <p>The app ID.</p>
|
|
@@ -1243,24 +985,12 @@ export interface DeleteTokenRequest {
|
|
|
1243
985
|
*/
|
|
1244
986
|
SessionId: string | undefined;
|
|
1245
987
|
}
|
|
1246
|
-
export declare namespace DeleteTokenRequest {
|
|
1247
|
-
/**
|
|
1248
|
-
* @internal
|
|
1249
|
-
*/
|
|
1250
|
-
const filterSensitiveLog: (obj: DeleteTokenRequest) => any;
|
|
1251
|
-
}
|
|
1252
988
|
export interface DeleteTokenResponse {
|
|
1253
989
|
/**
|
|
1254
990
|
* <p>Indicates whether the request succeeded or failed.</p>
|
|
1255
991
|
*/
|
|
1256
992
|
IsSuccess?: boolean;
|
|
1257
993
|
}
|
|
1258
|
-
export declare namespace DeleteTokenResponse {
|
|
1259
|
-
/**
|
|
1260
|
-
* @internal
|
|
1261
|
-
*/
|
|
1262
|
-
const filterSensitiveLog: (obj: DeleteTokenResponse) => any;
|
|
1263
|
-
}
|
|
1264
994
|
/**
|
|
1265
995
|
* <p>The request body for GenerateBackendAPIModels.</p>
|
|
1266
996
|
*/
|
|
@@ -1278,12 +1008,6 @@ export interface GenerateBackendAPIModelsRequest {
|
|
|
1278
1008
|
*/
|
|
1279
1009
|
ResourceName: string | undefined;
|
|
1280
1010
|
}
|
|
1281
|
-
export declare namespace GenerateBackendAPIModelsRequest {
|
|
1282
|
-
/**
|
|
1283
|
-
* @internal
|
|
1284
|
-
*/
|
|
1285
|
-
const filterSensitiveLog: (obj: GenerateBackendAPIModelsRequest) => any;
|
|
1286
|
-
}
|
|
1287
1011
|
export interface GenerateBackendAPIModelsResponse {
|
|
1288
1012
|
/**
|
|
1289
1013
|
* <p>The app ID.</p>
|
|
@@ -1310,12 +1034,6 @@ export interface GenerateBackendAPIModelsResponse {
|
|
|
1310
1034
|
*/
|
|
1311
1035
|
Status?: string;
|
|
1312
1036
|
}
|
|
1313
|
-
export declare namespace GenerateBackendAPIModelsResponse {
|
|
1314
|
-
/**
|
|
1315
|
-
* @internal
|
|
1316
|
-
*/
|
|
1317
|
-
const filterSensitiveLog: (obj: GenerateBackendAPIModelsResponse) => any;
|
|
1318
|
-
}
|
|
1319
1037
|
/**
|
|
1320
1038
|
* <p>The request body for GetBackend.</p>
|
|
1321
1039
|
*/
|
|
@@ -1329,12 +1047,6 @@ export interface GetBackendRequest {
|
|
|
1329
1047
|
*/
|
|
1330
1048
|
BackendEnvironmentName?: string;
|
|
1331
1049
|
}
|
|
1332
|
-
export declare namespace GetBackendRequest {
|
|
1333
|
-
/**
|
|
1334
|
-
* @internal
|
|
1335
|
-
*/
|
|
1336
|
-
const filterSensitiveLog: (obj: GetBackendRequest) => any;
|
|
1337
|
-
}
|
|
1338
1050
|
export interface GetBackendResponse {
|
|
1339
1051
|
/**
|
|
1340
1052
|
* <p>A stringified version of the cli.json file for your Amplify project.</p>
|
|
@@ -1365,12 +1077,6 @@ export interface GetBackendResponse {
|
|
|
1365
1077
|
*/
|
|
1366
1078
|
Error?: string;
|
|
1367
1079
|
}
|
|
1368
|
-
export declare namespace GetBackendResponse {
|
|
1369
|
-
/**
|
|
1370
|
-
* @internal
|
|
1371
|
-
*/
|
|
1372
|
-
const filterSensitiveLog: (obj: GetBackendResponse) => any;
|
|
1373
|
-
}
|
|
1374
1080
|
/**
|
|
1375
1081
|
* <p>The request body for GetBackendAPI.</p>
|
|
1376
1082
|
*/
|
|
@@ -1392,12 +1098,6 @@ export interface GetBackendAPIRequest {
|
|
|
1392
1098
|
*/
|
|
1393
1099
|
ResourceName: string | undefined;
|
|
1394
1100
|
}
|
|
1395
|
-
export declare namespace GetBackendAPIRequest {
|
|
1396
|
-
/**
|
|
1397
|
-
* @internal
|
|
1398
|
-
*/
|
|
1399
|
-
const filterSensitiveLog: (obj: GetBackendAPIRequest) => any;
|
|
1400
|
-
}
|
|
1401
1101
|
export interface GetBackendAPIResponse {
|
|
1402
1102
|
/**
|
|
1403
1103
|
* <p>The app ID.</p>
|
|
@@ -1420,12 +1120,6 @@ export interface GetBackendAPIResponse {
|
|
|
1420
1120
|
*/
|
|
1421
1121
|
ResourceName?: string;
|
|
1422
1122
|
}
|
|
1423
|
-
export declare namespace GetBackendAPIResponse {
|
|
1424
|
-
/**
|
|
1425
|
-
* @internal
|
|
1426
|
-
*/
|
|
1427
|
-
const filterSensitiveLog: (obj: GetBackendAPIResponse) => any;
|
|
1428
|
-
}
|
|
1429
1123
|
/**
|
|
1430
1124
|
* <p>The request body for GetBackendAPIModels.</p>
|
|
1431
1125
|
*/
|
|
@@ -1443,12 +1137,6 @@ export interface GetBackendAPIModelsRequest {
|
|
|
1443
1137
|
*/
|
|
1444
1138
|
ResourceName: string | undefined;
|
|
1445
1139
|
}
|
|
1446
|
-
export declare namespace GetBackendAPIModelsRequest {
|
|
1447
|
-
/**
|
|
1448
|
-
* @internal
|
|
1449
|
-
*/
|
|
1450
|
-
const filterSensitiveLog: (obj: GetBackendAPIModelsRequest) => any;
|
|
1451
|
-
}
|
|
1452
1140
|
export declare enum Status {
|
|
1453
1141
|
LATEST = "LATEST",
|
|
1454
1142
|
STALE = "STALE"
|
|
@@ -1463,12 +1151,6 @@ export interface GetBackendAPIModelsResponse {
|
|
|
1463
1151
|
*/
|
|
1464
1152
|
Status?: Status | string;
|
|
1465
1153
|
}
|
|
1466
|
-
export declare namespace GetBackendAPIModelsResponse {
|
|
1467
|
-
/**
|
|
1468
|
-
* @internal
|
|
1469
|
-
*/
|
|
1470
|
-
const filterSensitiveLog: (obj: GetBackendAPIModelsResponse) => any;
|
|
1471
|
-
}
|
|
1472
1154
|
/**
|
|
1473
1155
|
* <p>The request body for GetBackendAuth.</p>
|
|
1474
1156
|
*/
|
|
@@ -1486,12 +1168,6 @@ export interface GetBackendAuthRequest {
|
|
|
1486
1168
|
*/
|
|
1487
1169
|
ResourceName: string | undefined;
|
|
1488
1170
|
}
|
|
1489
|
-
export declare namespace GetBackendAuthRequest {
|
|
1490
|
-
/**
|
|
1491
|
-
* @internal
|
|
1492
|
-
*/
|
|
1493
|
-
const filterSensitiveLog: (obj: GetBackendAuthRequest) => any;
|
|
1494
|
-
}
|
|
1495
1171
|
export interface GetBackendAuthResponse {
|
|
1496
1172
|
/**
|
|
1497
1173
|
* <p>The app ID.</p>
|
|
@@ -1514,12 +1190,6 @@ export interface GetBackendAuthResponse {
|
|
|
1514
1190
|
*/
|
|
1515
1191
|
ResourceName?: string;
|
|
1516
1192
|
}
|
|
1517
|
-
export declare namespace GetBackendAuthResponse {
|
|
1518
|
-
/**
|
|
1519
|
-
* @internal
|
|
1520
|
-
*/
|
|
1521
|
-
const filterSensitiveLog: (obj: GetBackendAuthResponse) => any;
|
|
1522
|
-
}
|
|
1523
1193
|
export interface GetBackendJobRequest {
|
|
1524
1194
|
/**
|
|
1525
1195
|
* <p>The app ID.</p>
|
|
@@ -1534,12 +1204,6 @@ export interface GetBackendJobRequest {
|
|
|
1534
1204
|
*/
|
|
1535
1205
|
JobId: string | undefined;
|
|
1536
1206
|
}
|
|
1537
|
-
export declare namespace GetBackendJobRequest {
|
|
1538
|
-
/**
|
|
1539
|
-
* @internal
|
|
1540
|
-
*/
|
|
1541
|
-
const filterSensitiveLog: (obj: GetBackendJobRequest) => any;
|
|
1542
|
-
}
|
|
1543
1207
|
export interface GetBackendJobResponse {
|
|
1544
1208
|
/**
|
|
1545
1209
|
* <p>The app ID.</p>
|
|
@@ -1574,12 +1238,6 @@ export interface GetBackendJobResponse {
|
|
|
1574
1238
|
*/
|
|
1575
1239
|
UpdateTime?: string;
|
|
1576
1240
|
}
|
|
1577
|
-
export declare namespace GetBackendJobResponse {
|
|
1578
|
-
/**
|
|
1579
|
-
* @internal
|
|
1580
|
-
*/
|
|
1581
|
-
const filterSensitiveLog: (obj: GetBackendJobResponse) => any;
|
|
1582
|
-
}
|
|
1583
1241
|
/**
|
|
1584
1242
|
* <p>The request body for GetBackendStorage.</p>
|
|
1585
1243
|
*/
|
|
@@ -1597,12 +1255,6 @@ export interface GetBackendStorageRequest {
|
|
|
1597
1255
|
*/
|
|
1598
1256
|
ResourceName: string | undefined;
|
|
1599
1257
|
}
|
|
1600
|
-
export declare namespace GetBackendStorageRequest {
|
|
1601
|
-
/**
|
|
1602
|
-
* @internal
|
|
1603
|
-
*/
|
|
1604
|
-
const filterSensitiveLog: (obj: GetBackendStorageRequest) => any;
|
|
1605
|
-
}
|
|
1606
1258
|
/**
|
|
1607
1259
|
* <p>The details for a backend storage resource.</p>
|
|
1608
1260
|
*/
|
|
@@ -1624,12 +1276,6 @@ export interface GetBackendStorageResourceConfig {
|
|
|
1624
1276
|
*/
|
|
1625
1277
|
ServiceName: ServiceName | string | undefined;
|
|
1626
1278
|
}
|
|
1627
|
-
export declare namespace GetBackendStorageResourceConfig {
|
|
1628
|
-
/**
|
|
1629
|
-
* @internal
|
|
1630
|
-
*/
|
|
1631
|
-
const filterSensitiveLog: (obj: GetBackendStorageResourceConfig) => any;
|
|
1632
|
-
}
|
|
1633
1279
|
export interface GetBackendStorageResponse {
|
|
1634
1280
|
/**
|
|
1635
1281
|
* <p>The app ID.</p>
|
|
@@ -1648,12 +1294,6 @@ export interface GetBackendStorageResponse {
|
|
|
1648
1294
|
*/
|
|
1649
1295
|
ResourceName?: string;
|
|
1650
1296
|
}
|
|
1651
|
-
export declare namespace GetBackendStorageResponse {
|
|
1652
|
-
/**
|
|
1653
|
-
* @internal
|
|
1654
|
-
*/
|
|
1655
|
-
const filterSensitiveLog: (obj: GetBackendStorageResponse) => any;
|
|
1656
|
-
}
|
|
1657
1297
|
export interface GetTokenRequest {
|
|
1658
1298
|
/**
|
|
1659
1299
|
* <p>The app ID.</p>
|
|
@@ -1664,12 +1304,6 @@ export interface GetTokenRequest {
|
|
|
1664
1304
|
*/
|
|
1665
1305
|
SessionId: string | undefined;
|
|
1666
1306
|
}
|
|
1667
|
-
export declare namespace GetTokenRequest {
|
|
1668
|
-
/**
|
|
1669
|
-
* @internal
|
|
1670
|
-
*/
|
|
1671
|
-
const filterSensitiveLog: (obj: GetTokenRequest) => any;
|
|
1672
|
-
}
|
|
1673
1307
|
export interface GetTokenResponse {
|
|
1674
1308
|
/**
|
|
1675
1309
|
* <p>The app ID.</p>
|
|
@@ -1688,12 +1322,6 @@ export interface GetTokenResponse {
|
|
|
1688
1322
|
*/
|
|
1689
1323
|
Ttl?: string;
|
|
1690
1324
|
}
|
|
1691
|
-
export declare namespace GetTokenResponse {
|
|
1692
|
-
/**
|
|
1693
|
-
* @internal
|
|
1694
|
-
*/
|
|
1695
|
-
const filterSensitiveLog: (obj: GetTokenResponse) => any;
|
|
1696
|
-
}
|
|
1697
1325
|
/**
|
|
1698
1326
|
* <p>The request body for ImportBackendAuth.</p>
|
|
1699
1327
|
*/
|
|
@@ -1723,12 +1351,6 @@ export interface ImportBackendAuthRequest {
|
|
|
1723
1351
|
*/
|
|
1724
1352
|
WebClientId: string | undefined;
|
|
1725
1353
|
}
|
|
1726
|
-
export declare namespace ImportBackendAuthRequest {
|
|
1727
|
-
/**
|
|
1728
|
-
* @internal
|
|
1729
|
-
*/
|
|
1730
|
-
const filterSensitiveLog: (obj: ImportBackendAuthRequest) => any;
|
|
1731
|
-
}
|
|
1732
1354
|
export interface ImportBackendAuthResponse {
|
|
1733
1355
|
/**
|
|
1734
1356
|
* <p>The app ID.</p>
|
|
@@ -1755,12 +1377,6 @@ export interface ImportBackendAuthResponse {
|
|
|
1755
1377
|
*/
|
|
1756
1378
|
Status?: string;
|
|
1757
1379
|
}
|
|
1758
|
-
export declare namespace ImportBackendAuthResponse {
|
|
1759
|
-
/**
|
|
1760
|
-
* @internal
|
|
1761
|
-
*/
|
|
1762
|
-
const filterSensitiveLog: (obj: ImportBackendAuthResponse) => any;
|
|
1763
|
-
}
|
|
1764
1380
|
/**
|
|
1765
1381
|
* <p>The request body for ImportBackendStorage.</p>
|
|
1766
1382
|
*/
|
|
@@ -1782,12 +1398,6 @@ export interface ImportBackendStorageRequest {
|
|
|
1782
1398
|
*/
|
|
1783
1399
|
ServiceName: ServiceName | string | undefined;
|
|
1784
1400
|
}
|
|
1785
|
-
export declare namespace ImportBackendStorageRequest {
|
|
1786
|
-
/**
|
|
1787
|
-
* @internal
|
|
1788
|
-
*/
|
|
1789
|
-
const filterSensitiveLog: (obj: ImportBackendStorageRequest) => any;
|
|
1790
|
-
}
|
|
1791
1401
|
export interface ImportBackendStorageResponse {
|
|
1792
1402
|
/**
|
|
1793
1403
|
* <p>The app ID.</p>
|
|
@@ -1806,12 +1416,6 @@ export interface ImportBackendStorageResponse {
|
|
|
1806
1416
|
*/
|
|
1807
1417
|
Status?: string;
|
|
1808
1418
|
}
|
|
1809
|
-
export declare namespace ImportBackendStorageResponse {
|
|
1810
|
-
/**
|
|
1811
|
-
* @internal
|
|
1812
|
-
*/
|
|
1813
|
-
const filterSensitiveLog: (obj: ImportBackendStorageResponse) => any;
|
|
1814
|
-
}
|
|
1815
1419
|
/**
|
|
1816
1420
|
* <p>The request body for ListBackendJobs.</p>
|
|
1817
1421
|
*/
|
|
@@ -1845,12 +1449,6 @@ export interface ListBackendJobsRequest {
|
|
|
1845
1449
|
*/
|
|
1846
1450
|
Status?: string;
|
|
1847
1451
|
}
|
|
1848
|
-
export declare namespace ListBackendJobsRequest {
|
|
1849
|
-
/**
|
|
1850
|
-
* @internal
|
|
1851
|
-
*/
|
|
1852
|
-
const filterSensitiveLog: (obj: ListBackendJobsRequest) => any;
|
|
1853
|
-
}
|
|
1854
1452
|
/**
|
|
1855
1453
|
* <p>The response object for this operation.</p>
|
|
1856
1454
|
*/
|
|
@@ -1888,12 +1486,6 @@ export interface BackendJobRespObj {
|
|
|
1888
1486
|
*/
|
|
1889
1487
|
UpdateTime?: string;
|
|
1890
1488
|
}
|
|
1891
|
-
export declare namespace BackendJobRespObj {
|
|
1892
|
-
/**
|
|
1893
|
-
* @internal
|
|
1894
|
-
*/
|
|
1895
|
-
const filterSensitiveLog: (obj: BackendJobRespObj) => any;
|
|
1896
|
-
}
|
|
1897
1489
|
export interface ListBackendJobsResponse {
|
|
1898
1490
|
/**
|
|
1899
1491
|
* <p>An array of jobs and their properties.</p>
|
|
@@ -1904,12 +1496,6 @@ export interface ListBackendJobsResponse {
|
|
|
1904
1496
|
*/
|
|
1905
1497
|
NextToken?: string;
|
|
1906
1498
|
}
|
|
1907
|
-
export declare namespace ListBackendJobsResponse {
|
|
1908
|
-
/**
|
|
1909
|
-
* @internal
|
|
1910
|
-
*/
|
|
1911
|
-
const filterSensitiveLog: (obj: ListBackendJobsResponse) => any;
|
|
1912
|
-
}
|
|
1913
1499
|
/**
|
|
1914
1500
|
* <p>The request body for S3Buckets.</p>
|
|
1915
1501
|
*/
|
|
@@ -1919,12 +1505,6 @@ export interface ListS3BucketsRequest {
|
|
|
1919
1505
|
*/
|
|
1920
1506
|
NextToken?: string;
|
|
1921
1507
|
}
|
|
1922
|
-
export declare namespace ListS3BucketsRequest {
|
|
1923
|
-
/**
|
|
1924
|
-
* @internal
|
|
1925
|
-
*/
|
|
1926
|
-
const filterSensitiveLog: (obj: ListS3BucketsRequest) => any;
|
|
1927
|
-
}
|
|
1928
1508
|
/**
|
|
1929
1509
|
* <p>Describes the metadata of the S3 bucket.</p>
|
|
1930
1510
|
*/
|
|
@@ -1938,12 +1518,6 @@ export interface S3BucketInfo {
|
|
|
1938
1518
|
*/
|
|
1939
1519
|
Name?: string;
|
|
1940
1520
|
}
|
|
1941
|
-
export declare namespace S3BucketInfo {
|
|
1942
|
-
/**
|
|
1943
|
-
* @internal
|
|
1944
|
-
*/
|
|
1945
|
-
const filterSensitiveLog: (obj: S3BucketInfo) => any;
|
|
1946
|
-
}
|
|
1947
1521
|
export interface ListS3BucketsResponse {
|
|
1948
1522
|
/**
|
|
1949
1523
|
* <p>The list of S3 buckets.</p>
|
|
@@ -1954,12 +1528,6 @@ export interface ListS3BucketsResponse {
|
|
|
1954
1528
|
*/
|
|
1955
1529
|
NextToken?: string;
|
|
1956
1530
|
}
|
|
1957
|
-
export declare namespace ListS3BucketsResponse {
|
|
1958
|
-
/**
|
|
1959
|
-
* @internal
|
|
1960
|
-
*/
|
|
1961
|
-
const filterSensitiveLog: (obj: ListS3BucketsResponse) => any;
|
|
1962
|
-
}
|
|
1963
1531
|
/**
|
|
1964
1532
|
* <p>The request body for RemoveAllBackends.</p>
|
|
1965
1533
|
*/
|
|
@@ -1973,12 +1541,6 @@ export interface RemoveAllBackendsRequest {
|
|
|
1973
1541
|
*/
|
|
1974
1542
|
CleanAmplifyApp?: boolean;
|
|
1975
1543
|
}
|
|
1976
|
-
export declare namespace RemoveAllBackendsRequest {
|
|
1977
|
-
/**
|
|
1978
|
-
* @internal
|
|
1979
|
-
*/
|
|
1980
|
-
const filterSensitiveLog: (obj: RemoveAllBackendsRequest) => any;
|
|
1981
|
-
}
|
|
1982
1544
|
export interface RemoveAllBackendsResponse {
|
|
1983
1545
|
/**
|
|
1984
1546
|
* <p>The app ID.</p>
|
|
@@ -2001,36 +1563,18 @@ export interface RemoveAllBackendsResponse {
|
|
|
2001
1563
|
*/
|
|
2002
1564
|
Status?: string;
|
|
2003
1565
|
}
|
|
2004
|
-
export declare namespace RemoveAllBackendsResponse {
|
|
2005
|
-
/**
|
|
2006
|
-
* @internal
|
|
2007
|
-
*/
|
|
2008
|
-
const filterSensitiveLog: (obj: RemoveAllBackendsResponse) => any;
|
|
2009
|
-
}
|
|
2010
1566
|
export interface RemoveBackendConfigRequest {
|
|
2011
1567
|
/**
|
|
2012
1568
|
* <p>The app ID.</p>
|
|
2013
1569
|
*/
|
|
2014
1570
|
AppId: string | undefined;
|
|
2015
1571
|
}
|
|
2016
|
-
export declare namespace RemoveBackendConfigRequest {
|
|
2017
|
-
/**
|
|
2018
|
-
* @internal
|
|
2019
|
-
*/
|
|
2020
|
-
const filterSensitiveLog: (obj: RemoveBackendConfigRequest) => any;
|
|
2021
|
-
}
|
|
2022
1572
|
export interface RemoveBackendConfigResponse {
|
|
2023
1573
|
/**
|
|
2024
1574
|
* <p>If the request fails, this error is returned.</p>
|
|
2025
1575
|
*/
|
|
2026
1576
|
Error?: string;
|
|
2027
1577
|
}
|
|
2028
|
-
export declare namespace RemoveBackendConfigResponse {
|
|
2029
|
-
/**
|
|
2030
|
-
* @internal
|
|
2031
|
-
*/
|
|
2032
|
-
const filterSensitiveLog: (obj: RemoveBackendConfigResponse) => any;
|
|
2033
|
-
}
|
|
2034
1578
|
/**
|
|
2035
1579
|
* <p>The request body for UpdateBackendAPI.</p>
|
|
2036
1580
|
*/
|
|
@@ -2052,12 +1596,6 @@ export interface UpdateBackendAPIRequest {
|
|
|
2052
1596
|
*/
|
|
2053
1597
|
ResourceName: string | undefined;
|
|
2054
1598
|
}
|
|
2055
|
-
export declare namespace UpdateBackendAPIRequest {
|
|
2056
|
-
/**
|
|
2057
|
-
* @internal
|
|
2058
|
-
*/
|
|
2059
|
-
const filterSensitiveLog: (obj: UpdateBackendAPIRequest) => any;
|
|
2060
|
-
}
|
|
2061
1599
|
export interface UpdateBackendAPIResponse {
|
|
2062
1600
|
/**
|
|
2063
1601
|
* <p>The app ID.</p>
|
|
@@ -2084,12 +1622,6 @@ export interface UpdateBackendAPIResponse {
|
|
|
2084
1622
|
*/
|
|
2085
1623
|
Status?: string;
|
|
2086
1624
|
}
|
|
2087
|
-
export declare namespace UpdateBackendAPIResponse {
|
|
2088
|
-
/**
|
|
2089
|
-
* @internal
|
|
2090
|
-
*/
|
|
2091
|
-
const filterSensitiveLog: (obj: UpdateBackendAPIResponse) => any;
|
|
2092
|
-
}
|
|
2093
1625
|
/**
|
|
2094
1626
|
* <p>Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.</p>
|
|
2095
1627
|
*/
|
|
@@ -2099,12 +1631,6 @@ export interface UpdateBackendAuthIdentityPoolConfig {
|
|
|
2099
1631
|
*/
|
|
2100
1632
|
UnauthenticatedLogin?: boolean;
|
|
2101
1633
|
}
|
|
2102
|
-
export declare namespace UpdateBackendAuthIdentityPoolConfig {
|
|
2103
|
-
/**
|
|
2104
|
-
* @internal
|
|
2105
|
-
*/
|
|
2106
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthIdentityPoolConfig) => any;
|
|
2107
|
-
}
|
|
2108
1634
|
/**
|
|
2109
1635
|
* <p><b>(DEPRECATED)</b> Describes the forgot password policy for authenticating into the Amplify app.</p>
|
|
2110
1636
|
*/
|
|
@@ -2122,12 +1648,6 @@ export interface UpdateBackendAuthForgotPasswordConfig {
|
|
|
2122
1648
|
*/
|
|
2123
1649
|
SmsSettings?: SmsSettings;
|
|
2124
1650
|
}
|
|
2125
|
-
export declare namespace UpdateBackendAuthForgotPasswordConfig {
|
|
2126
|
-
/**
|
|
2127
|
-
* @internal
|
|
2128
|
-
*/
|
|
2129
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthForgotPasswordConfig) => any;
|
|
2130
|
-
}
|
|
2131
1651
|
/**
|
|
2132
1652
|
* <p>Updates the multi-factor authentication (MFA) configuration for the backend of your Amplify project.</p>
|
|
2133
1653
|
*/
|
|
@@ -2141,12 +1661,6 @@ export interface UpdateBackendAuthMFAConfig {
|
|
|
2141
1661
|
*/
|
|
2142
1662
|
Settings?: Settings;
|
|
2143
1663
|
}
|
|
2144
|
-
export declare namespace UpdateBackendAuthMFAConfig {
|
|
2145
|
-
/**
|
|
2146
|
-
* @internal
|
|
2147
|
-
*/
|
|
2148
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthMFAConfig) => any;
|
|
2149
|
-
}
|
|
2150
1664
|
/**
|
|
2151
1665
|
* <p>The OAuth configurations for authenticating users into your Amplify app.</p>
|
|
2152
1666
|
*/
|
|
@@ -2176,12 +1690,6 @@ export interface UpdateBackendAuthOAuthConfig {
|
|
|
2176
1690
|
*/
|
|
2177
1691
|
SocialProviderSettings?: SocialProviderSettings;
|
|
2178
1692
|
}
|
|
2179
|
-
export declare namespace UpdateBackendAuthOAuthConfig {
|
|
2180
|
-
/**
|
|
2181
|
-
* @internal
|
|
2182
|
-
*/
|
|
2183
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthOAuthConfig) => any;
|
|
2184
|
-
}
|
|
2185
1693
|
/**
|
|
2186
1694
|
* <p>Describes the password policy for your Amazon Cognito user pool configured as a part of your Amplify project.</p>
|
|
2187
1695
|
*/
|
|
@@ -2195,12 +1703,6 @@ export interface UpdateBackendAuthPasswordPolicyConfig {
|
|
|
2195
1703
|
*/
|
|
2196
1704
|
MinimumLength?: number;
|
|
2197
1705
|
}
|
|
2198
|
-
export declare namespace UpdateBackendAuthPasswordPolicyConfig {
|
|
2199
|
-
/**
|
|
2200
|
-
* @internal
|
|
2201
|
-
*/
|
|
2202
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthPasswordPolicyConfig) => any;
|
|
2203
|
-
}
|
|
2204
1706
|
/**
|
|
2205
1707
|
* <p>Updates the configuration of the email or SMS message for the auth resource configured for your Amplify project.</p>
|
|
2206
1708
|
*/
|
|
@@ -2218,12 +1720,6 @@ export interface UpdateBackendAuthVerificationMessageConfig {
|
|
|
2218
1720
|
*/
|
|
2219
1721
|
SmsSettings?: SmsSettings;
|
|
2220
1722
|
}
|
|
2221
|
-
export declare namespace UpdateBackendAuthVerificationMessageConfig {
|
|
2222
|
-
/**
|
|
2223
|
-
* @internal
|
|
2224
|
-
*/
|
|
2225
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthVerificationMessageConfig) => any;
|
|
2226
|
-
}
|
|
2227
1723
|
/**
|
|
2228
1724
|
* <p>Describes the Amazon Cognito user pool configuration for the authorization resource to be configured for your Amplify project on an update.</p>
|
|
2229
1725
|
*/
|
|
@@ -2249,12 +1745,6 @@ export interface UpdateBackendAuthUserPoolConfig {
|
|
|
2249
1745
|
*/
|
|
2250
1746
|
VerificationMessage?: UpdateBackendAuthVerificationMessageConfig;
|
|
2251
1747
|
}
|
|
2252
|
-
export declare namespace UpdateBackendAuthUserPoolConfig {
|
|
2253
|
-
/**
|
|
2254
|
-
* @internal
|
|
2255
|
-
*/
|
|
2256
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthUserPoolConfig) => any;
|
|
2257
|
-
}
|
|
2258
1748
|
/**
|
|
2259
1749
|
* <p>Defines the resource configuration when updating an authentication resource in your Amplify project.</p>
|
|
2260
1750
|
*/
|
|
@@ -2276,12 +1766,6 @@ export interface UpdateBackendAuthResourceConfig {
|
|
|
2276
1766
|
*/
|
|
2277
1767
|
UserPoolConfigs: UpdateBackendAuthUserPoolConfig | undefined;
|
|
2278
1768
|
}
|
|
2279
|
-
export declare namespace UpdateBackendAuthResourceConfig {
|
|
2280
|
-
/**
|
|
2281
|
-
* @internal
|
|
2282
|
-
*/
|
|
2283
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthResourceConfig) => any;
|
|
2284
|
-
}
|
|
2285
1769
|
/**
|
|
2286
1770
|
* <p>The request body for UpdateBackendAuth.</p>
|
|
2287
1771
|
*/
|
|
@@ -2303,12 +1787,6 @@ export interface UpdateBackendAuthRequest {
|
|
|
2303
1787
|
*/
|
|
2304
1788
|
ResourceName: string | undefined;
|
|
2305
1789
|
}
|
|
2306
|
-
export declare namespace UpdateBackendAuthRequest {
|
|
2307
|
-
/**
|
|
2308
|
-
* @internal
|
|
2309
|
-
*/
|
|
2310
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthRequest) => any;
|
|
2311
|
-
}
|
|
2312
1790
|
export interface UpdateBackendAuthResponse {
|
|
2313
1791
|
/**
|
|
2314
1792
|
* <p>The app ID.</p>
|
|
@@ -2335,12 +1813,6 @@ export interface UpdateBackendAuthResponse {
|
|
|
2335
1813
|
*/
|
|
2336
1814
|
Status?: string;
|
|
2337
1815
|
}
|
|
2338
|
-
export declare namespace UpdateBackendAuthResponse {
|
|
2339
|
-
/**
|
|
2340
|
-
* @internal
|
|
2341
|
-
*/
|
|
2342
|
-
const filterSensitiveLog: (obj: UpdateBackendAuthResponse) => any;
|
|
2343
|
-
}
|
|
2344
1816
|
/**
|
|
2345
1817
|
* <p>The request object for this operation.</p>
|
|
2346
1818
|
*/
|
|
@@ -2362,12 +1834,6 @@ export interface LoginAuthConfigReqObj {
|
|
|
2362
1834
|
*/
|
|
2363
1835
|
AwsUserPoolsWebClientId?: string;
|
|
2364
1836
|
}
|
|
2365
|
-
export declare namespace LoginAuthConfigReqObj {
|
|
2366
|
-
/**
|
|
2367
|
-
* @internal
|
|
2368
|
-
*/
|
|
2369
|
-
const filterSensitiveLog: (obj: LoginAuthConfigReqObj) => any;
|
|
2370
|
-
}
|
|
2371
1837
|
/**
|
|
2372
1838
|
* <p>The request body for UpdateBackendConfig.</p>
|
|
2373
1839
|
*/
|
|
@@ -2381,12 +1847,6 @@ export interface UpdateBackendConfigRequest {
|
|
|
2381
1847
|
*/
|
|
2382
1848
|
LoginAuthConfig?: LoginAuthConfigReqObj;
|
|
2383
1849
|
}
|
|
2384
|
-
export declare namespace UpdateBackendConfigRequest {
|
|
2385
|
-
/**
|
|
2386
|
-
* @internal
|
|
2387
|
-
*/
|
|
2388
|
-
const filterSensitiveLog: (obj: UpdateBackendConfigRequest) => any;
|
|
2389
|
-
}
|
|
2390
1850
|
export interface UpdateBackendConfigResponse {
|
|
2391
1851
|
/**
|
|
2392
1852
|
* <p>The app ID.</p>
|
|
@@ -2405,12 +1865,6 @@ export interface UpdateBackendConfigResponse {
|
|
|
2405
1865
|
*/
|
|
2406
1866
|
LoginAuthConfig?: LoginAuthConfigReqObj;
|
|
2407
1867
|
}
|
|
2408
|
-
export declare namespace UpdateBackendConfigResponse {
|
|
2409
|
-
/**
|
|
2410
|
-
* @internal
|
|
2411
|
-
*/
|
|
2412
|
-
const filterSensitiveLog: (obj: UpdateBackendConfigResponse) => any;
|
|
2413
|
-
}
|
|
2414
1868
|
/**
|
|
2415
1869
|
* <p>The request body for GetBackendJob.</p>
|
|
2416
1870
|
*/
|
|
@@ -2436,12 +1890,6 @@ export interface UpdateBackendJobRequest {
|
|
|
2436
1890
|
*/
|
|
2437
1891
|
Status?: string;
|
|
2438
1892
|
}
|
|
2439
|
-
export declare namespace UpdateBackendJobRequest {
|
|
2440
|
-
/**
|
|
2441
|
-
* @internal
|
|
2442
|
-
*/
|
|
2443
|
-
const filterSensitiveLog: (obj: UpdateBackendJobRequest) => any;
|
|
2444
|
-
}
|
|
2445
1893
|
export interface UpdateBackendJobResponse {
|
|
2446
1894
|
/**
|
|
2447
1895
|
* <p>The app ID.</p>
|
|
@@ -2476,12 +1924,6 @@ export interface UpdateBackendJobResponse {
|
|
|
2476
1924
|
*/
|
|
2477
1925
|
UpdateTime?: string;
|
|
2478
1926
|
}
|
|
2479
|
-
export declare namespace UpdateBackendJobResponse {
|
|
2480
|
-
/**
|
|
2481
|
-
* @internal
|
|
2482
|
-
*/
|
|
2483
|
-
const filterSensitiveLog: (obj: UpdateBackendJobResponse) => any;
|
|
2484
|
-
}
|
|
2485
1927
|
/**
|
|
2486
1928
|
* <p>The resource configuration for updating backend storage.</p>
|
|
2487
1929
|
*/
|
|
@@ -2495,12 +1937,6 @@ export interface UpdateBackendStorageResourceConfig {
|
|
|
2495
1937
|
*/
|
|
2496
1938
|
ServiceName: ServiceName | string | undefined;
|
|
2497
1939
|
}
|
|
2498
|
-
export declare namespace UpdateBackendStorageResourceConfig {
|
|
2499
|
-
/**
|
|
2500
|
-
* @internal
|
|
2501
|
-
*/
|
|
2502
|
-
const filterSensitiveLog: (obj: UpdateBackendStorageResourceConfig) => any;
|
|
2503
|
-
}
|
|
2504
1940
|
/**
|
|
2505
1941
|
* <p>The request body for UpdateBackendStorage.</p>
|
|
2506
1942
|
*/
|
|
@@ -2522,12 +1958,6 @@ export interface UpdateBackendStorageRequest {
|
|
|
2522
1958
|
*/
|
|
2523
1959
|
ResourceName: string | undefined;
|
|
2524
1960
|
}
|
|
2525
|
-
export declare namespace UpdateBackendStorageRequest {
|
|
2526
|
-
/**
|
|
2527
|
-
* @internal
|
|
2528
|
-
*/
|
|
2529
|
-
const filterSensitiveLog: (obj: UpdateBackendStorageRequest) => any;
|
|
2530
|
-
}
|
|
2531
1961
|
export interface UpdateBackendStorageResponse {
|
|
2532
1962
|
/**
|
|
2533
1963
|
* <p>The app ID.</p>
|
|
@@ -2546,9 +1976,387 @@ export interface UpdateBackendStorageResponse {
|
|
|
2546
1976
|
*/
|
|
2547
1977
|
Status?: string;
|
|
2548
1978
|
}
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
1979
|
+
/**
|
|
1980
|
+
* @internal
|
|
1981
|
+
*/
|
|
1982
|
+
export declare const CloneBackendRequestFilterSensitiveLog: (obj: CloneBackendRequest) => any;
|
|
1983
|
+
/**
|
|
1984
|
+
* @internal
|
|
1985
|
+
*/
|
|
1986
|
+
export declare const CloneBackendResponseFilterSensitiveLog: (obj: CloneBackendResponse) => any;
|
|
1987
|
+
/**
|
|
1988
|
+
* @internal
|
|
1989
|
+
*/
|
|
1990
|
+
export declare const ResourceConfigFilterSensitiveLog: (obj: ResourceConfig) => any;
|
|
1991
|
+
/**
|
|
1992
|
+
* @internal
|
|
1993
|
+
*/
|
|
1994
|
+
export declare const CreateBackendRequestFilterSensitiveLog: (obj: CreateBackendRequest) => any;
|
|
1995
|
+
/**
|
|
1996
|
+
* @internal
|
|
1997
|
+
*/
|
|
1998
|
+
export declare const CreateBackendResponseFilterSensitiveLog: (obj: CreateBackendResponse) => any;
|
|
1999
|
+
/**
|
|
2000
|
+
* @internal
|
|
2001
|
+
*/
|
|
2002
|
+
export declare const BackendAPIAppSyncAuthSettingsFilterSensitiveLog: (obj: BackendAPIAppSyncAuthSettings) => any;
|
|
2003
|
+
/**
|
|
2004
|
+
* @internal
|
|
2005
|
+
*/
|
|
2006
|
+
export declare const BackendAPIAuthTypeFilterSensitiveLog: (obj: BackendAPIAuthType) => any;
|
|
2007
|
+
/**
|
|
2008
|
+
* @internal
|
|
2009
|
+
*/
|
|
2010
|
+
export declare const BackendAPIConflictResolutionFilterSensitiveLog: (obj: BackendAPIConflictResolution) => any;
|
|
2011
|
+
/**
|
|
2012
|
+
* @internal
|
|
2013
|
+
*/
|
|
2014
|
+
export declare const BackendAPIResourceConfigFilterSensitiveLog: (obj: BackendAPIResourceConfig) => any;
|
|
2015
|
+
/**
|
|
2016
|
+
* @internal
|
|
2017
|
+
*/
|
|
2018
|
+
export declare const CreateBackendAPIRequestFilterSensitiveLog: (obj: CreateBackendAPIRequest) => any;
|
|
2019
|
+
/**
|
|
2020
|
+
* @internal
|
|
2021
|
+
*/
|
|
2022
|
+
export declare const CreateBackendAPIResponseFilterSensitiveLog: (obj: CreateBackendAPIResponse) => any;
|
|
2023
|
+
/**
|
|
2024
|
+
* @internal
|
|
2025
|
+
*/
|
|
2026
|
+
export declare const CreateBackendAuthIdentityPoolConfigFilterSensitiveLog: (obj: CreateBackendAuthIdentityPoolConfig) => any;
|
|
2027
|
+
/**
|
|
2028
|
+
* @internal
|
|
2029
|
+
*/
|
|
2030
|
+
export declare const EmailSettingsFilterSensitiveLog: (obj: EmailSettings) => any;
|
|
2031
|
+
/**
|
|
2032
|
+
* @internal
|
|
2033
|
+
*/
|
|
2034
|
+
export declare const SmsSettingsFilterSensitiveLog: (obj: SmsSettings) => any;
|
|
2035
|
+
/**
|
|
2036
|
+
* @internal
|
|
2037
|
+
*/
|
|
2038
|
+
export declare const CreateBackendAuthForgotPasswordConfigFilterSensitiveLog: (obj: CreateBackendAuthForgotPasswordConfig) => any;
|
|
2039
|
+
/**
|
|
2040
|
+
* @internal
|
|
2041
|
+
*/
|
|
2042
|
+
export declare const SettingsFilterSensitiveLog: (obj: Settings) => any;
|
|
2043
|
+
/**
|
|
2044
|
+
* @internal
|
|
2045
|
+
*/
|
|
2046
|
+
export declare const CreateBackendAuthMFAConfigFilterSensitiveLog: (obj: CreateBackendAuthMFAConfig) => any;
|
|
2047
|
+
/**
|
|
2048
|
+
* @internal
|
|
2049
|
+
*/
|
|
2050
|
+
export declare const BackendAuthSocialProviderConfigFilterSensitiveLog: (obj: BackendAuthSocialProviderConfig) => any;
|
|
2051
|
+
/**
|
|
2052
|
+
* @internal
|
|
2053
|
+
*/
|
|
2054
|
+
export declare const BackendAuthAppleProviderConfigFilterSensitiveLog: (obj: BackendAuthAppleProviderConfig) => any;
|
|
2055
|
+
/**
|
|
2056
|
+
* @internal
|
|
2057
|
+
*/
|
|
2058
|
+
export declare const SocialProviderSettingsFilterSensitiveLog: (obj: SocialProviderSettings) => any;
|
|
2059
|
+
/**
|
|
2060
|
+
* @internal
|
|
2061
|
+
*/
|
|
2062
|
+
export declare const CreateBackendAuthOAuthConfigFilterSensitiveLog: (obj: CreateBackendAuthOAuthConfig) => any;
|
|
2063
|
+
/**
|
|
2064
|
+
* @internal
|
|
2065
|
+
*/
|
|
2066
|
+
export declare const CreateBackendAuthPasswordPolicyConfigFilterSensitiveLog: (obj: CreateBackendAuthPasswordPolicyConfig) => any;
|
|
2067
|
+
/**
|
|
2068
|
+
* @internal
|
|
2069
|
+
*/
|
|
2070
|
+
export declare const CreateBackendAuthVerificationMessageConfigFilterSensitiveLog: (obj: CreateBackendAuthVerificationMessageConfig) => any;
|
|
2071
|
+
/**
|
|
2072
|
+
* @internal
|
|
2073
|
+
*/
|
|
2074
|
+
export declare const CreateBackendAuthUserPoolConfigFilterSensitiveLog: (obj: CreateBackendAuthUserPoolConfig) => any;
|
|
2075
|
+
/**
|
|
2076
|
+
* @internal
|
|
2077
|
+
*/
|
|
2078
|
+
export declare const CreateBackendAuthResourceConfigFilterSensitiveLog: (obj: CreateBackendAuthResourceConfig) => any;
|
|
2079
|
+
/**
|
|
2080
|
+
* @internal
|
|
2081
|
+
*/
|
|
2082
|
+
export declare const CreateBackendAuthRequestFilterSensitiveLog: (obj: CreateBackendAuthRequest) => any;
|
|
2083
|
+
/**
|
|
2084
|
+
* @internal
|
|
2085
|
+
*/
|
|
2086
|
+
export declare const CreateBackendAuthResponseFilterSensitiveLog: (obj: CreateBackendAuthResponse) => any;
|
|
2087
|
+
/**
|
|
2088
|
+
* @internal
|
|
2089
|
+
*/
|
|
2090
|
+
export declare const CreateBackendConfigRequestFilterSensitiveLog: (obj: CreateBackendConfigRequest) => any;
|
|
2091
|
+
/**
|
|
2092
|
+
* @internal
|
|
2093
|
+
*/
|
|
2094
|
+
export declare const CreateBackendConfigResponseFilterSensitiveLog: (obj: CreateBackendConfigResponse) => any;
|
|
2095
|
+
/**
|
|
2096
|
+
* @internal
|
|
2097
|
+
*/
|
|
2098
|
+
export declare const BackendStoragePermissionsFilterSensitiveLog: (obj: BackendStoragePermissions) => any;
|
|
2099
|
+
/**
|
|
2100
|
+
* @internal
|
|
2101
|
+
*/
|
|
2102
|
+
export declare const CreateBackendStorageResourceConfigFilterSensitiveLog: (obj: CreateBackendStorageResourceConfig) => any;
|
|
2103
|
+
/**
|
|
2104
|
+
* @internal
|
|
2105
|
+
*/
|
|
2106
|
+
export declare const CreateBackendStorageRequestFilterSensitiveLog: (obj: CreateBackendStorageRequest) => any;
|
|
2107
|
+
/**
|
|
2108
|
+
* @internal
|
|
2109
|
+
*/
|
|
2110
|
+
export declare const CreateBackendStorageResponseFilterSensitiveLog: (obj: CreateBackendStorageResponse) => any;
|
|
2111
|
+
/**
|
|
2112
|
+
* @internal
|
|
2113
|
+
*/
|
|
2114
|
+
export declare const CreateTokenRequestFilterSensitiveLog: (obj: CreateTokenRequest) => any;
|
|
2115
|
+
/**
|
|
2116
|
+
* @internal
|
|
2117
|
+
*/
|
|
2118
|
+
export declare const CreateTokenResponseFilterSensitiveLog: (obj: CreateTokenResponse) => any;
|
|
2119
|
+
/**
|
|
2120
|
+
* @internal
|
|
2121
|
+
*/
|
|
2122
|
+
export declare const DeleteBackendRequestFilterSensitiveLog: (obj: DeleteBackendRequest) => any;
|
|
2123
|
+
/**
|
|
2124
|
+
* @internal
|
|
2125
|
+
*/
|
|
2126
|
+
export declare const DeleteBackendResponseFilterSensitiveLog: (obj: DeleteBackendResponse) => any;
|
|
2127
|
+
/**
|
|
2128
|
+
* @internal
|
|
2129
|
+
*/
|
|
2130
|
+
export declare const DeleteBackendAPIRequestFilterSensitiveLog: (obj: DeleteBackendAPIRequest) => any;
|
|
2131
|
+
/**
|
|
2132
|
+
* @internal
|
|
2133
|
+
*/
|
|
2134
|
+
export declare const DeleteBackendAPIResponseFilterSensitiveLog: (obj: DeleteBackendAPIResponse) => any;
|
|
2135
|
+
/**
|
|
2136
|
+
* @internal
|
|
2137
|
+
*/
|
|
2138
|
+
export declare const DeleteBackendAuthRequestFilterSensitiveLog: (obj: DeleteBackendAuthRequest) => any;
|
|
2139
|
+
/**
|
|
2140
|
+
* @internal
|
|
2141
|
+
*/
|
|
2142
|
+
export declare const DeleteBackendAuthResponseFilterSensitiveLog: (obj: DeleteBackendAuthResponse) => any;
|
|
2143
|
+
/**
|
|
2144
|
+
* @internal
|
|
2145
|
+
*/
|
|
2146
|
+
export declare const DeleteBackendStorageRequestFilterSensitiveLog: (obj: DeleteBackendStorageRequest) => any;
|
|
2147
|
+
/**
|
|
2148
|
+
* @internal
|
|
2149
|
+
*/
|
|
2150
|
+
export declare const DeleteBackendStorageResponseFilterSensitiveLog: (obj: DeleteBackendStorageResponse) => any;
|
|
2151
|
+
/**
|
|
2152
|
+
* @internal
|
|
2153
|
+
*/
|
|
2154
|
+
export declare const DeleteTokenRequestFilterSensitiveLog: (obj: DeleteTokenRequest) => any;
|
|
2155
|
+
/**
|
|
2156
|
+
* @internal
|
|
2157
|
+
*/
|
|
2158
|
+
export declare const DeleteTokenResponseFilterSensitiveLog: (obj: DeleteTokenResponse) => any;
|
|
2159
|
+
/**
|
|
2160
|
+
* @internal
|
|
2161
|
+
*/
|
|
2162
|
+
export declare const GenerateBackendAPIModelsRequestFilterSensitiveLog: (obj: GenerateBackendAPIModelsRequest) => any;
|
|
2163
|
+
/**
|
|
2164
|
+
* @internal
|
|
2165
|
+
*/
|
|
2166
|
+
export declare const GenerateBackendAPIModelsResponseFilterSensitiveLog: (obj: GenerateBackendAPIModelsResponse) => any;
|
|
2167
|
+
/**
|
|
2168
|
+
* @internal
|
|
2169
|
+
*/
|
|
2170
|
+
export declare const GetBackendRequestFilterSensitiveLog: (obj: GetBackendRequest) => any;
|
|
2171
|
+
/**
|
|
2172
|
+
* @internal
|
|
2173
|
+
*/
|
|
2174
|
+
export declare const GetBackendResponseFilterSensitiveLog: (obj: GetBackendResponse) => any;
|
|
2175
|
+
/**
|
|
2176
|
+
* @internal
|
|
2177
|
+
*/
|
|
2178
|
+
export declare const GetBackendAPIRequestFilterSensitiveLog: (obj: GetBackendAPIRequest) => any;
|
|
2179
|
+
/**
|
|
2180
|
+
* @internal
|
|
2181
|
+
*/
|
|
2182
|
+
export declare const GetBackendAPIResponseFilterSensitiveLog: (obj: GetBackendAPIResponse) => any;
|
|
2183
|
+
/**
|
|
2184
|
+
* @internal
|
|
2185
|
+
*/
|
|
2186
|
+
export declare const GetBackendAPIModelsRequestFilterSensitiveLog: (obj: GetBackendAPIModelsRequest) => any;
|
|
2187
|
+
/**
|
|
2188
|
+
* @internal
|
|
2189
|
+
*/
|
|
2190
|
+
export declare const GetBackendAPIModelsResponseFilterSensitiveLog: (obj: GetBackendAPIModelsResponse) => any;
|
|
2191
|
+
/**
|
|
2192
|
+
* @internal
|
|
2193
|
+
*/
|
|
2194
|
+
export declare const GetBackendAuthRequestFilterSensitiveLog: (obj: GetBackendAuthRequest) => any;
|
|
2195
|
+
/**
|
|
2196
|
+
* @internal
|
|
2197
|
+
*/
|
|
2198
|
+
export declare const GetBackendAuthResponseFilterSensitiveLog: (obj: GetBackendAuthResponse) => any;
|
|
2199
|
+
/**
|
|
2200
|
+
* @internal
|
|
2201
|
+
*/
|
|
2202
|
+
export declare const GetBackendJobRequestFilterSensitiveLog: (obj: GetBackendJobRequest) => any;
|
|
2203
|
+
/**
|
|
2204
|
+
* @internal
|
|
2205
|
+
*/
|
|
2206
|
+
export declare const GetBackendJobResponseFilterSensitiveLog: (obj: GetBackendJobResponse) => any;
|
|
2207
|
+
/**
|
|
2208
|
+
* @internal
|
|
2209
|
+
*/
|
|
2210
|
+
export declare const GetBackendStorageRequestFilterSensitiveLog: (obj: GetBackendStorageRequest) => any;
|
|
2211
|
+
/**
|
|
2212
|
+
* @internal
|
|
2213
|
+
*/
|
|
2214
|
+
export declare const GetBackendStorageResourceConfigFilterSensitiveLog: (obj: GetBackendStorageResourceConfig) => any;
|
|
2215
|
+
/**
|
|
2216
|
+
* @internal
|
|
2217
|
+
*/
|
|
2218
|
+
export declare const GetBackendStorageResponseFilterSensitiveLog: (obj: GetBackendStorageResponse) => any;
|
|
2219
|
+
/**
|
|
2220
|
+
* @internal
|
|
2221
|
+
*/
|
|
2222
|
+
export declare const GetTokenRequestFilterSensitiveLog: (obj: GetTokenRequest) => any;
|
|
2223
|
+
/**
|
|
2224
|
+
* @internal
|
|
2225
|
+
*/
|
|
2226
|
+
export declare const GetTokenResponseFilterSensitiveLog: (obj: GetTokenResponse) => any;
|
|
2227
|
+
/**
|
|
2228
|
+
* @internal
|
|
2229
|
+
*/
|
|
2230
|
+
export declare const ImportBackendAuthRequestFilterSensitiveLog: (obj: ImportBackendAuthRequest) => any;
|
|
2231
|
+
/**
|
|
2232
|
+
* @internal
|
|
2233
|
+
*/
|
|
2234
|
+
export declare const ImportBackendAuthResponseFilterSensitiveLog: (obj: ImportBackendAuthResponse) => any;
|
|
2235
|
+
/**
|
|
2236
|
+
* @internal
|
|
2237
|
+
*/
|
|
2238
|
+
export declare const ImportBackendStorageRequestFilterSensitiveLog: (obj: ImportBackendStorageRequest) => any;
|
|
2239
|
+
/**
|
|
2240
|
+
* @internal
|
|
2241
|
+
*/
|
|
2242
|
+
export declare const ImportBackendStorageResponseFilterSensitiveLog: (obj: ImportBackendStorageResponse) => any;
|
|
2243
|
+
/**
|
|
2244
|
+
* @internal
|
|
2245
|
+
*/
|
|
2246
|
+
export declare const ListBackendJobsRequestFilterSensitiveLog: (obj: ListBackendJobsRequest) => any;
|
|
2247
|
+
/**
|
|
2248
|
+
* @internal
|
|
2249
|
+
*/
|
|
2250
|
+
export declare const BackendJobRespObjFilterSensitiveLog: (obj: BackendJobRespObj) => any;
|
|
2251
|
+
/**
|
|
2252
|
+
* @internal
|
|
2253
|
+
*/
|
|
2254
|
+
export declare const ListBackendJobsResponseFilterSensitiveLog: (obj: ListBackendJobsResponse) => any;
|
|
2255
|
+
/**
|
|
2256
|
+
* @internal
|
|
2257
|
+
*/
|
|
2258
|
+
export declare const ListS3BucketsRequestFilterSensitiveLog: (obj: ListS3BucketsRequest) => any;
|
|
2259
|
+
/**
|
|
2260
|
+
* @internal
|
|
2261
|
+
*/
|
|
2262
|
+
export declare const S3BucketInfoFilterSensitiveLog: (obj: S3BucketInfo) => any;
|
|
2263
|
+
/**
|
|
2264
|
+
* @internal
|
|
2265
|
+
*/
|
|
2266
|
+
export declare const ListS3BucketsResponseFilterSensitiveLog: (obj: ListS3BucketsResponse) => any;
|
|
2267
|
+
/**
|
|
2268
|
+
* @internal
|
|
2269
|
+
*/
|
|
2270
|
+
export declare const RemoveAllBackendsRequestFilterSensitiveLog: (obj: RemoveAllBackendsRequest) => any;
|
|
2271
|
+
/**
|
|
2272
|
+
* @internal
|
|
2273
|
+
*/
|
|
2274
|
+
export declare const RemoveAllBackendsResponseFilterSensitiveLog: (obj: RemoveAllBackendsResponse) => any;
|
|
2275
|
+
/**
|
|
2276
|
+
* @internal
|
|
2277
|
+
*/
|
|
2278
|
+
export declare const RemoveBackendConfigRequestFilterSensitiveLog: (obj: RemoveBackendConfigRequest) => any;
|
|
2279
|
+
/**
|
|
2280
|
+
* @internal
|
|
2281
|
+
*/
|
|
2282
|
+
export declare const RemoveBackendConfigResponseFilterSensitiveLog: (obj: RemoveBackendConfigResponse) => any;
|
|
2283
|
+
/**
|
|
2284
|
+
* @internal
|
|
2285
|
+
*/
|
|
2286
|
+
export declare const UpdateBackendAPIRequestFilterSensitiveLog: (obj: UpdateBackendAPIRequest) => any;
|
|
2287
|
+
/**
|
|
2288
|
+
* @internal
|
|
2289
|
+
*/
|
|
2290
|
+
export declare const UpdateBackendAPIResponseFilterSensitiveLog: (obj: UpdateBackendAPIResponse) => any;
|
|
2291
|
+
/**
|
|
2292
|
+
* @internal
|
|
2293
|
+
*/
|
|
2294
|
+
export declare const UpdateBackendAuthIdentityPoolConfigFilterSensitiveLog: (obj: UpdateBackendAuthIdentityPoolConfig) => any;
|
|
2295
|
+
/**
|
|
2296
|
+
* @internal
|
|
2297
|
+
*/
|
|
2298
|
+
export declare const UpdateBackendAuthForgotPasswordConfigFilterSensitiveLog: (obj: UpdateBackendAuthForgotPasswordConfig) => any;
|
|
2299
|
+
/**
|
|
2300
|
+
* @internal
|
|
2301
|
+
*/
|
|
2302
|
+
export declare const UpdateBackendAuthMFAConfigFilterSensitiveLog: (obj: UpdateBackendAuthMFAConfig) => any;
|
|
2303
|
+
/**
|
|
2304
|
+
* @internal
|
|
2305
|
+
*/
|
|
2306
|
+
export declare const UpdateBackendAuthOAuthConfigFilterSensitiveLog: (obj: UpdateBackendAuthOAuthConfig) => any;
|
|
2307
|
+
/**
|
|
2308
|
+
* @internal
|
|
2309
|
+
*/
|
|
2310
|
+
export declare const UpdateBackendAuthPasswordPolicyConfigFilterSensitiveLog: (obj: UpdateBackendAuthPasswordPolicyConfig) => any;
|
|
2311
|
+
/**
|
|
2312
|
+
* @internal
|
|
2313
|
+
*/
|
|
2314
|
+
export declare const UpdateBackendAuthVerificationMessageConfigFilterSensitiveLog: (obj: UpdateBackendAuthVerificationMessageConfig) => any;
|
|
2315
|
+
/**
|
|
2316
|
+
* @internal
|
|
2317
|
+
*/
|
|
2318
|
+
export declare const UpdateBackendAuthUserPoolConfigFilterSensitiveLog: (obj: UpdateBackendAuthUserPoolConfig) => any;
|
|
2319
|
+
/**
|
|
2320
|
+
* @internal
|
|
2321
|
+
*/
|
|
2322
|
+
export declare const UpdateBackendAuthResourceConfigFilterSensitiveLog: (obj: UpdateBackendAuthResourceConfig) => any;
|
|
2323
|
+
/**
|
|
2324
|
+
* @internal
|
|
2325
|
+
*/
|
|
2326
|
+
export declare const UpdateBackendAuthRequestFilterSensitiveLog: (obj: UpdateBackendAuthRequest) => any;
|
|
2327
|
+
/**
|
|
2328
|
+
* @internal
|
|
2329
|
+
*/
|
|
2330
|
+
export declare const UpdateBackendAuthResponseFilterSensitiveLog: (obj: UpdateBackendAuthResponse) => any;
|
|
2331
|
+
/**
|
|
2332
|
+
* @internal
|
|
2333
|
+
*/
|
|
2334
|
+
export declare const LoginAuthConfigReqObjFilterSensitiveLog: (obj: LoginAuthConfigReqObj) => any;
|
|
2335
|
+
/**
|
|
2336
|
+
* @internal
|
|
2337
|
+
*/
|
|
2338
|
+
export declare const UpdateBackendConfigRequestFilterSensitiveLog: (obj: UpdateBackendConfigRequest) => any;
|
|
2339
|
+
/**
|
|
2340
|
+
* @internal
|
|
2341
|
+
*/
|
|
2342
|
+
export declare const UpdateBackendConfigResponseFilterSensitiveLog: (obj: UpdateBackendConfigResponse) => any;
|
|
2343
|
+
/**
|
|
2344
|
+
* @internal
|
|
2345
|
+
*/
|
|
2346
|
+
export declare const UpdateBackendJobRequestFilterSensitiveLog: (obj: UpdateBackendJobRequest) => any;
|
|
2347
|
+
/**
|
|
2348
|
+
* @internal
|
|
2349
|
+
*/
|
|
2350
|
+
export declare const UpdateBackendJobResponseFilterSensitiveLog: (obj: UpdateBackendJobResponse) => any;
|
|
2351
|
+
/**
|
|
2352
|
+
* @internal
|
|
2353
|
+
*/
|
|
2354
|
+
export declare const UpdateBackendStorageResourceConfigFilterSensitiveLog: (obj: UpdateBackendStorageResourceConfig) => any;
|
|
2355
|
+
/**
|
|
2356
|
+
* @internal
|
|
2357
|
+
*/
|
|
2358
|
+
export declare const UpdateBackendStorageRequestFilterSensitiveLog: (obj: UpdateBackendStorageRequest) => any;
|
|
2359
|
+
/**
|
|
2360
|
+
* @internal
|
|
2361
|
+
*/
|
|
2362
|
+
export declare const UpdateBackendStorageResponseFilterSensitiveLog: (obj: UpdateBackendStorageResponse) => any;
|