@aws-sdk/client-amplifybackend 3.428.0 → 3.429.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.
|
@@ -289,7 +289,7 @@ export interface BackendAPIAuthType {
|
|
|
289
289
|
* @public
|
|
290
290
|
* <p>Describes the authentication mode.</p>
|
|
291
291
|
*/
|
|
292
|
-
Mode?: Mode
|
|
292
|
+
Mode?: Mode;
|
|
293
293
|
/**
|
|
294
294
|
* @public
|
|
295
295
|
* <p>Describes settings for the authentication mode.</p>
|
|
@@ -319,7 +319,7 @@ export interface BackendAPIConflictResolution {
|
|
|
319
319
|
* @public
|
|
320
320
|
* <p>The strategy for conflict resolution.</p>
|
|
321
321
|
*/
|
|
322
|
-
ResolutionStrategy?: ResolutionStrategy
|
|
322
|
+
ResolutionStrategy?: ResolutionStrategy;
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
325
325
|
* @public
|
|
@@ -505,7 +505,7 @@ export interface CreateBackendAuthForgotPasswordConfig {
|
|
|
505
505
|
* @public
|
|
506
506
|
* <p><b>(DEPRECATED)</b> Describes which mode to use (either SMS or email) to deliver messages to app users who want to recover their password.</p>
|
|
507
507
|
*/
|
|
508
|
-
DeliveryMethod: DeliveryMethod |
|
|
508
|
+
DeliveryMethod: DeliveryMethod | undefined;
|
|
509
509
|
/**
|
|
510
510
|
* @public
|
|
511
511
|
* <p><b>(DEPRECATED)</b> The configuration for the email sent when an app user forgets their password.</p>
|
|
@@ -551,7 +551,7 @@ export interface Settings {
|
|
|
551
551
|
* @public
|
|
552
552
|
* <p>The supported MFA types.</p>
|
|
553
553
|
*/
|
|
554
|
-
MfaTypes?:
|
|
554
|
+
MfaTypes?: MfaTypesElement[];
|
|
555
555
|
/**
|
|
556
556
|
* @public
|
|
557
557
|
* <p>The body of the SMS message.</p>
|
|
@@ -567,7 +567,7 @@ export interface CreateBackendAuthMFAConfig {
|
|
|
567
567
|
* @public
|
|
568
568
|
* <p>Describes whether MFA should be [ON, OFF, or OPTIONAL] for authentication in your Amplify project.</p>
|
|
569
569
|
*/
|
|
570
|
-
MFAMode: MFAMode |
|
|
570
|
+
MFAMode: MFAMode | undefined;
|
|
571
571
|
/**
|
|
572
572
|
* @public
|
|
573
573
|
* <p>Describes the configuration settings and methods for your Amplify app users to use MFA.</p>
|
|
@@ -683,12 +683,12 @@ export interface CreateBackendAuthOAuthConfig {
|
|
|
683
683
|
* @public
|
|
684
684
|
* <p>The OAuth grant type that you use to allow app users to authenticate from your Amplify app.</p>
|
|
685
685
|
*/
|
|
686
|
-
OAuthGrantType: OAuthGrantType |
|
|
686
|
+
OAuthGrantType: OAuthGrantType | undefined;
|
|
687
687
|
/**
|
|
688
688
|
* @public
|
|
689
689
|
* <p>List of OAuth-related flows used to allow your app users to authenticate from your Amplify app.</p>
|
|
690
690
|
*/
|
|
691
|
-
OAuthScopes:
|
|
691
|
+
OAuthScopes: OAuthScopesElement[] | undefined;
|
|
692
692
|
/**
|
|
693
693
|
* @public
|
|
694
694
|
* <p>The redirected URI for signing in to your Amplify app.</p>
|
|
@@ -714,7 +714,7 @@ export interface CreateBackendAuthPasswordPolicyConfig {
|
|
|
714
714
|
* @public
|
|
715
715
|
* <p>Additional constraints for the password used to access the backend of your Amplify project.</p>
|
|
716
716
|
*/
|
|
717
|
-
AdditionalConstraints?:
|
|
717
|
+
AdditionalConstraints?: AdditionalConstraintsElement[];
|
|
718
718
|
/**
|
|
719
719
|
* @public
|
|
720
720
|
* <p>The minimum length of the password used to access the backend of your Amplify project.</p>
|
|
@@ -771,7 +771,7 @@ export interface CreateBackendAuthVerificationMessageConfig {
|
|
|
771
771
|
* @public
|
|
772
772
|
* <p>The type of verification message to send.</p>
|
|
773
773
|
*/
|
|
774
|
-
DeliveryMethod: DeliveryMethod |
|
|
774
|
+
DeliveryMethod: DeliveryMethod | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* @public
|
|
777
777
|
* <p>The settings for the email message.</p>
|
|
@@ -812,12 +812,12 @@ export interface CreateBackendAuthUserPoolConfig {
|
|
|
812
812
|
* @public
|
|
813
813
|
* <p>The required attributes to sign up new users in the user pool.</p>
|
|
814
814
|
*/
|
|
815
|
-
RequiredSignUpAttributes:
|
|
815
|
+
RequiredSignUpAttributes: RequiredSignUpAttributesElement[] | undefined;
|
|
816
816
|
/**
|
|
817
817
|
* @public
|
|
818
818
|
* <p>Describes the sign-in methods that your Amplify app users use to log in using the Amazon Cognito user pool, configured as a part of your Amplify project.</p>
|
|
819
819
|
*/
|
|
820
|
-
SignInMethod: SignInMethod |
|
|
820
|
+
SignInMethod: SignInMethod | undefined;
|
|
821
821
|
/**
|
|
822
822
|
* @public
|
|
823
823
|
* <p>The Amazon Cognito user pool name.</p>
|
|
@@ -838,7 +838,7 @@ export interface CreateBackendAuthResourceConfig {
|
|
|
838
838
|
* @public
|
|
839
839
|
* <p>Defines whether you want to configure only authentication or both authentication and authorization settings.</p>
|
|
840
840
|
*/
|
|
841
|
-
AuthResources: AuthResources |
|
|
841
|
+
AuthResources: AuthResources | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* @public
|
|
844
844
|
* <p>Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.</p>
|
|
@@ -848,7 +848,7 @@ export interface CreateBackendAuthResourceConfig {
|
|
|
848
848
|
* @public
|
|
849
849
|
* <p>Defines the service name to use when configuring an authentication resource in your Amplify project.</p>
|
|
850
850
|
*/
|
|
851
|
-
Service: Service |
|
|
851
|
+
Service: Service | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* @public
|
|
854
854
|
* <p>Describes authentication configuration for the Amazon Cognito user pool, provisioned as a part of your auth resource in the Amplify project.</p>
|
|
@@ -992,12 +992,12 @@ export interface BackendStoragePermissions {
|
|
|
992
992
|
* @public
|
|
993
993
|
* <p>Lists all authenticated user read, write, and delete permissions for your S3 bucket.</p>
|
|
994
994
|
*/
|
|
995
|
-
Authenticated:
|
|
995
|
+
Authenticated: AuthenticatedElement[] | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* @public
|
|
998
998
|
* <p>Lists all unauthenticated user read, write, and delete permissions for your S3 bucket.</p>
|
|
999
999
|
*/
|
|
1000
|
-
UnAuthenticated?:
|
|
1000
|
+
UnAuthenticated?: UnAuthenticatedElement[];
|
|
1001
1001
|
}
|
|
1002
1002
|
/**
|
|
1003
1003
|
* @public
|
|
@@ -1029,7 +1029,7 @@ export interface CreateBackendStorageResourceConfig {
|
|
|
1029
1029
|
* @public
|
|
1030
1030
|
* <p>The name of the storage service.</p>
|
|
1031
1031
|
*/
|
|
1032
|
-
ServiceName: ServiceName |
|
|
1032
|
+
ServiceName: ServiceName | undefined;
|
|
1033
1033
|
}
|
|
1034
1034
|
/**
|
|
1035
1035
|
* @public
|
|
@@ -1308,7 +1308,7 @@ export interface DeleteBackendStorageRequest {
|
|
|
1308
1308
|
* @public
|
|
1309
1309
|
* <p>The name of the storage service.</p>
|
|
1310
1310
|
*/
|
|
1311
|
-
ServiceName: ServiceName |
|
|
1311
|
+
ServiceName: ServiceName | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
/**
|
|
1314
1314
|
* @public
|
|
@@ -1574,7 +1574,7 @@ export interface GetBackendAPIModelsResponse {
|
|
|
1574
1574
|
* @public
|
|
1575
1575
|
* <p>The current status of the request.</p>
|
|
1576
1576
|
*/
|
|
1577
|
-
Status?: Status
|
|
1577
|
+
Status?: Status;
|
|
1578
1578
|
/**
|
|
1579
1579
|
* @public
|
|
1580
1580
|
* <p>Stringified JSON of the model introspection schema for an existing backend API resource.</p>
|
|
@@ -1742,7 +1742,7 @@ export interface GetBackendStorageResourceConfig {
|
|
|
1742
1742
|
* @public
|
|
1743
1743
|
* <p>The name of the storage service.</p>
|
|
1744
1744
|
*/
|
|
1745
|
-
ServiceName: ServiceName |
|
|
1745
|
+
ServiceName: ServiceName | undefined;
|
|
1746
1746
|
}
|
|
1747
1747
|
/**
|
|
1748
1748
|
* @public
|
|
@@ -1904,7 +1904,7 @@ export interface ImportBackendStorageRequest {
|
|
|
1904
1904
|
* @public
|
|
1905
1905
|
* <p>The name of the storage service.</p>
|
|
1906
1906
|
*/
|
|
1907
|
-
ServiceName: ServiceName |
|
|
1907
|
+
ServiceName: ServiceName | undefined;
|
|
1908
1908
|
}
|
|
1909
1909
|
/**
|
|
1910
1910
|
* @public
|
|
@@ -2222,7 +2222,7 @@ export interface UpdateBackendAuthForgotPasswordConfig {
|
|
|
2222
2222
|
* @public
|
|
2223
2223
|
* <p><b>(DEPRECATED)</b> Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.</p>
|
|
2224
2224
|
*/
|
|
2225
|
-
DeliveryMethod?: DeliveryMethod
|
|
2225
|
+
DeliveryMethod?: DeliveryMethod;
|
|
2226
2226
|
/**
|
|
2227
2227
|
* @public
|
|
2228
2228
|
* <p><b>(DEPRECATED)</b> The configuration for the email sent when an app user forgets their password.</p>
|
|
@@ -2243,7 +2243,7 @@ export interface UpdateBackendAuthMFAConfig {
|
|
|
2243
2243
|
* @public
|
|
2244
2244
|
* <p>The MFA mode for the backend of your Amplify project.</p>
|
|
2245
2245
|
*/
|
|
2246
|
-
MFAMode?: MFAMode
|
|
2246
|
+
MFAMode?: MFAMode;
|
|
2247
2247
|
/**
|
|
2248
2248
|
* @public
|
|
2249
2249
|
* <p>The settings of your MFA configuration for the backend of your Amplify project.</p>
|
|
@@ -2264,12 +2264,12 @@ export interface UpdateBackendAuthOAuthConfig {
|
|
|
2264
2264
|
* @public
|
|
2265
2265
|
* <p>The OAuth grant type to allow app users to authenticate from your Amplify app.</p>
|
|
2266
2266
|
*/
|
|
2267
|
-
OAuthGrantType?: OAuthGrantType
|
|
2267
|
+
OAuthGrantType?: OAuthGrantType;
|
|
2268
2268
|
/**
|
|
2269
2269
|
* @public
|
|
2270
2270
|
* <p>The list of OAuth-related flows that can allow users to authenticate from your Amplify app.</p>
|
|
2271
2271
|
*/
|
|
2272
|
-
OAuthScopes?:
|
|
2272
|
+
OAuthScopes?: OAuthScopesElement[];
|
|
2273
2273
|
/**
|
|
2274
2274
|
* @public
|
|
2275
2275
|
* <p>Redirect URLs that OAuth uses when a user signs in to an Amplify app.</p>
|
|
@@ -2295,7 +2295,7 @@ export interface UpdateBackendAuthPasswordPolicyConfig {
|
|
|
2295
2295
|
* @public
|
|
2296
2296
|
* <p>Describes additional constraints on password requirements to sign in to the auth resource, configured as a part of your Amplify project.</p>
|
|
2297
2297
|
*/
|
|
2298
|
-
AdditionalConstraints?:
|
|
2298
|
+
AdditionalConstraints?: AdditionalConstraintsElement[];
|
|
2299
2299
|
/**
|
|
2300
2300
|
* @public
|
|
2301
2301
|
* <p>Describes the minimum length of the password required to sign in to the auth resource, configured as a part of your Amplify project.</p>
|
|
@@ -2311,7 +2311,7 @@ export interface UpdateBackendAuthVerificationMessageConfig {
|
|
|
2311
2311
|
* @public
|
|
2312
2312
|
* <p>The type of verification message to send.</p>
|
|
2313
2313
|
*/
|
|
2314
|
-
DeliveryMethod: DeliveryMethod |
|
|
2314
|
+
DeliveryMethod: DeliveryMethod | undefined;
|
|
2315
2315
|
/**
|
|
2316
2316
|
* @public
|
|
2317
2317
|
* <p>The settings for the email message.</p>
|
|
@@ -2363,7 +2363,7 @@ export interface UpdateBackendAuthResourceConfig {
|
|
|
2363
2363
|
* @public
|
|
2364
2364
|
* <p>Defines the service name to use when configuring an authentication resource in your Amplify project.</p>
|
|
2365
2365
|
*/
|
|
2366
|
-
AuthResources: AuthResources |
|
|
2366
|
+
AuthResources: AuthResources | undefined;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* @public
|
|
2369
2369
|
* <p>Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.</p>
|
|
@@ -2373,7 +2373,7 @@ export interface UpdateBackendAuthResourceConfig {
|
|
|
2373
2373
|
* @public
|
|
2374
2374
|
* <p>Defines the service name to use when configuring an authentication resource in your Amplify project.</p>
|
|
2375
2375
|
*/
|
|
2376
|
-
Service: Service |
|
|
2376
|
+
Service: Service | undefined;
|
|
2377
2377
|
/**
|
|
2378
2378
|
* @public
|
|
2379
2379
|
* <p>Describes the authentication configuration for the Amazon Cognito user pool, provisioned as a part of your auth resource in the Amplify project.</p>
|
|
@@ -2598,7 +2598,7 @@ export interface UpdateBackendStorageResourceConfig {
|
|
|
2598
2598
|
* @public
|
|
2599
2599
|
* <p>The name of the storage service.</p>
|
|
2600
2600
|
*/
|
|
2601
|
-
ServiceName: ServiceName |
|
|
2601
|
+
ServiceName: ServiceName | undefined;
|
|
2602
2602
|
}
|
|
2603
2603
|
/**
|
|
2604
2604
|
* @public
|
|
@@ -87,7 +87,7 @@ export interface BackendAPIAppSyncAuthSettings {
|
|
|
87
87
|
OpenIDProviderName?: string;
|
|
88
88
|
}
|
|
89
89
|
export interface BackendAPIAuthType {
|
|
90
|
-
Mode?: Mode
|
|
90
|
+
Mode?: Mode;
|
|
91
91
|
Settings?: BackendAPIAppSyncAuthSettings;
|
|
92
92
|
}
|
|
93
93
|
export declare const ResolutionStrategy: {
|
|
@@ -99,7 +99,7 @@ export declare const ResolutionStrategy: {
|
|
|
99
99
|
export type ResolutionStrategy =
|
|
100
100
|
(typeof ResolutionStrategy)[keyof typeof ResolutionStrategy];
|
|
101
101
|
export interface BackendAPIConflictResolution {
|
|
102
|
-
ResolutionStrategy?: ResolutionStrategy
|
|
102
|
+
ResolutionStrategy?: ResolutionStrategy;
|
|
103
103
|
}
|
|
104
104
|
export interface BackendAPIResourceConfig {
|
|
105
105
|
AdditionalAuthTypes?: BackendAPIAuthType[];
|
|
@@ -150,7 +150,7 @@ export interface SmsSettings {
|
|
|
150
150
|
SmsMessage?: string;
|
|
151
151
|
}
|
|
152
152
|
export interface CreateBackendAuthForgotPasswordConfig {
|
|
153
|
-
DeliveryMethod: DeliveryMethod |
|
|
153
|
+
DeliveryMethod: DeliveryMethod | undefined;
|
|
154
154
|
EmailSettings?: EmailSettings;
|
|
155
155
|
SmsSettings?: SmsSettings;
|
|
156
156
|
}
|
|
@@ -167,11 +167,11 @@ export declare const MfaTypesElement: {
|
|
|
167
167
|
export type MfaTypesElement =
|
|
168
168
|
(typeof MfaTypesElement)[keyof typeof MfaTypesElement];
|
|
169
169
|
export interface Settings {
|
|
170
|
-
MfaTypes?:
|
|
170
|
+
MfaTypes?: MfaTypesElement[];
|
|
171
171
|
SmsMessage?: string;
|
|
172
172
|
}
|
|
173
173
|
export interface CreateBackendAuthMFAConfig {
|
|
174
|
-
MFAMode: MFAMode |
|
|
174
|
+
MFAMode: MFAMode | undefined;
|
|
175
175
|
Settings?: Settings;
|
|
176
176
|
}
|
|
177
177
|
export declare const OAuthGrantType: {
|
|
@@ -207,14 +207,14 @@ export interface SocialProviderSettings {
|
|
|
207
207
|
}
|
|
208
208
|
export interface CreateBackendAuthOAuthConfig {
|
|
209
209
|
DomainPrefix?: string;
|
|
210
|
-
OAuthGrantType: OAuthGrantType |
|
|
211
|
-
OAuthScopes:
|
|
210
|
+
OAuthGrantType: OAuthGrantType | undefined;
|
|
211
|
+
OAuthScopes: OAuthScopesElement[] | undefined;
|
|
212
212
|
RedirectSignInURIs: string[] | undefined;
|
|
213
213
|
RedirectSignOutURIs: string[] | undefined;
|
|
214
214
|
SocialProviderSettings?: SocialProviderSettings;
|
|
215
215
|
}
|
|
216
216
|
export interface CreateBackendAuthPasswordPolicyConfig {
|
|
217
|
-
AdditionalConstraints?:
|
|
217
|
+
AdditionalConstraints?: AdditionalConstraintsElement[];
|
|
218
218
|
MinimumLength: number | undefined;
|
|
219
219
|
}
|
|
220
220
|
export declare const RequiredSignUpAttributesElement: {
|
|
@@ -246,7 +246,7 @@ export declare const SignInMethod: {
|
|
|
246
246
|
};
|
|
247
247
|
export type SignInMethod = (typeof SignInMethod)[keyof typeof SignInMethod];
|
|
248
248
|
export interface CreateBackendAuthVerificationMessageConfig {
|
|
249
|
-
DeliveryMethod: DeliveryMethod |
|
|
249
|
+
DeliveryMethod: DeliveryMethod | undefined;
|
|
250
250
|
EmailSettings?: EmailSettings;
|
|
251
251
|
SmsSettings?: SmsSettings;
|
|
252
252
|
}
|
|
@@ -255,17 +255,15 @@ export interface CreateBackendAuthUserPoolConfig {
|
|
|
255
255
|
Mfa?: CreateBackendAuthMFAConfig;
|
|
256
256
|
OAuth?: CreateBackendAuthOAuthConfig;
|
|
257
257
|
PasswordPolicy?: CreateBackendAuthPasswordPolicyConfig;
|
|
258
|
-
RequiredSignUpAttributes:
|
|
259
|
-
|
|
260
|
-
| undefined;
|
|
261
|
-
SignInMethod: SignInMethod | string | undefined;
|
|
258
|
+
RequiredSignUpAttributes: RequiredSignUpAttributesElement[] | undefined;
|
|
259
|
+
SignInMethod: SignInMethod | undefined;
|
|
262
260
|
UserPoolName: string | undefined;
|
|
263
261
|
VerificationMessage?: CreateBackendAuthVerificationMessageConfig;
|
|
264
262
|
}
|
|
265
263
|
export interface CreateBackendAuthResourceConfig {
|
|
266
|
-
AuthResources: AuthResources |
|
|
264
|
+
AuthResources: AuthResources | undefined;
|
|
267
265
|
IdentityPoolConfigs?: CreateBackendAuthIdentityPoolConfig;
|
|
268
|
-
Service: Service |
|
|
266
|
+
Service: Service | undefined;
|
|
269
267
|
UserPoolConfigs: CreateBackendAuthUserPoolConfig | undefined;
|
|
270
268
|
}
|
|
271
269
|
export interface CreateBackendAuthRequest {
|
|
@@ -307,8 +305,8 @@ export declare const UnAuthenticatedElement: {
|
|
|
307
305
|
export type UnAuthenticatedElement =
|
|
308
306
|
(typeof UnAuthenticatedElement)[keyof typeof UnAuthenticatedElement];
|
|
309
307
|
export interface BackendStoragePermissions {
|
|
310
|
-
Authenticated:
|
|
311
|
-
UnAuthenticated?:
|
|
308
|
+
Authenticated: AuthenticatedElement[] | undefined;
|
|
309
|
+
UnAuthenticated?: UnAuthenticatedElement[];
|
|
312
310
|
}
|
|
313
311
|
export declare const ServiceName: {
|
|
314
312
|
readonly S3: "S3";
|
|
@@ -317,7 +315,7 @@ export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
|
|
|
317
315
|
export interface CreateBackendStorageResourceConfig {
|
|
318
316
|
BucketName?: string;
|
|
319
317
|
Permissions: BackendStoragePermissions | undefined;
|
|
320
|
-
ServiceName: ServiceName |
|
|
318
|
+
ServiceName: ServiceName | undefined;
|
|
321
319
|
}
|
|
322
320
|
export interface CreateBackendStorageRequest {
|
|
323
321
|
AppId: string | undefined;
|
|
@@ -383,7 +381,7 @@ export interface DeleteBackendStorageRequest {
|
|
|
383
381
|
AppId: string | undefined;
|
|
384
382
|
BackendEnvironmentName: string | undefined;
|
|
385
383
|
ResourceName: string | undefined;
|
|
386
|
-
ServiceName: ServiceName |
|
|
384
|
+
ServiceName: ServiceName | undefined;
|
|
387
385
|
}
|
|
388
386
|
export interface DeleteBackendStorageResponse {
|
|
389
387
|
AppId?: string;
|
|
@@ -449,7 +447,7 @@ export declare const Status: {
|
|
|
449
447
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
450
448
|
export interface GetBackendAPIModelsResponse {
|
|
451
449
|
Models?: string;
|
|
452
|
-
Status?: Status
|
|
450
|
+
Status?: Status;
|
|
453
451
|
ModelIntrospectionSchema?: string;
|
|
454
452
|
}
|
|
455
453
|
export interface GetBackendAuthRequest {
|
|
@@ -488,7 +486,7 @@ export interface GetBackendStorageResourceConfig {
|
|
|
488
486
|
BucketName?: string;
|
|
489
487
|
Imported: boolean | undefined;
|
|
490
488
|
Permissions?: BackendStoragePermissions;
|
|
491
|
-
ServiceName: ServiceName |
|
|
489
|
+
ServiceName: ServiceName | undefined;
|
|
492
490
|
}
|
|
493
491
|
export interface GetBackendStorageResponse {
|
|
494
492
|
AppId?: string;
|
|
@@ -526,7 +524,7 @@ export interface ImportBackendStorageRequest {
|
|
|
526
524
|
AppId: string | undefined;
|
|
527
525
|
BackendEnvironmentName: string | undefined;
|
|
528
526
|
BucketName?: string;
|
|
529
|
-
ServiceName: ServiceName |
|
|
527
|
+
ServiceName: ServiceName | undefined;
|
|
530
528
|
}
|
|
531
529
|
export interface ImportBackendStorageResponse {
|
|
532
530
|
AppId?: string;
|
|
@@ -603,28 +601,28 @@ export interface UpdateBackendAuthIdentityPoolConfig {
|
|
|
603
601
|
UnauthenticatedLogin?: boolean;
|
|
604
602
|
}
|
|
605
603
|
export interface UpdateBackendAuthForgotPasswordConfig {
|
|
606
|
-
DeliveryMethod?: DeliveryMethod
|
|
604
|
+
DeliveryMethod?: DeliveryMethod;
|
|
607
605
|
EmailSettings?: EmailSettings;
|
|
608
606
|
SmsSettings?: SmsSettings;
|
|
609
607
|
}
|
|
610
608
|
export interface UpdateBackendAuthMFAConfig {
|
|
611
|
-
MFAMode?: MFAMode
|
|
609
|
+
MFAMode?: MFAMode;
|
|
612
610
|
Settings?: Settings;
|
|
613
611
|
}
|
|
614
612
|
export interface UpdateBackendAuthOAuthConfig {
|
|
615
613
|
DomainPrefix?: string;
|
|
616
|
-
OAuthGrantType?: OAuthGrantType
|
|
617
|
-
OAuthScopes?:
|
|
614
|
+
OAuthGrantType?: OAuthGrantType;
|
|
615
|
+
OAuthScopes?: OAuthScopesElement[];
|
|
618
616
|
RedirectSignInURIs?: string[];
|
|
619
617
|
RedirectSignOutURIs?: string[];
|
|
620
618
|
SocialProviderSettings?: SocialProviderSettings;
|
|
621
619
|
}
|
|
622
620
|
export interface UpdateBackendAuthPasswordPolicyConfig {
|
|
623
|
-
AdditionalConstraints?:
|
|
621
|
+
AdditionalConstraints?: AdditionalConstraintsElement[];
|
|
624
622
|
MinimumLength?: number;
|
|
625
623
|
}
|
|
626
624
|
export interface UpdateBackendAuthVerificationMessageConfig {
|
|
627
|
-
DeliveryMethod: DeliveryMethod |
|
|
625
|
+
DeliveryMethod: DeliveryMethod | undefined;
|
|
628
626
|
EmailSettings?: EmailSettings;
|
|
629
627
|
SmsSettings?: SmsSettings;
|
|
630
628
|
}
|
|
@@ -636,9 +634,9 @@ export interface UpdateBackendAuthUserPoolConfig {
|
|
|
636
634
|
VerificationMessage?: UpdateBackendAuthVerificationMessageConfig;
|
|
637
635
|
}
|
|
638
636
|
export interface UpdateBackendAuthResourceConfig {
|
|
639
|
-
AuthResources: AuthResources |
|
|
637
|
+
AuthResources: AuthResources | undefined;
|
|
640
638
|
IdentityPoolConfigs?: UpdateBackendAuthIdentityPoolConfig;
|
|
641
|
-
Service: Service |
|
|
639
|
+
Service: Service | undefined;
|
|
642
640
|
UserPoolConfigs: UpdateBackendAuthUserPoolConfig | undefined;
|
|
643
641
|
}
|
|
644
642
|
export interface UpdateBackendAuthRequest {
|
|
@@ -690,7 +688,7 @@ export interface UpdateBackendJobResponse {
|
|
|
690
688
|
}
|
|
691
689
|
export interface UpdateBackendStorageResourceConfig {
|
|
692
690
|
Permissions: BackendStoragePermissions | undefined;
|
|
693
|
-
ServiceName: ServiceName |
|
|
691
|
+
ServiceName: ServiceName | undefined;
|
|
694
692
|
}
|
|
695
693
|
export interface UpdateBackendStorageRequest {
|
|
696
694
|
AppId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifybackend",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifybackend Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|