@aws-sdk/client-amplifybackend 3.300.0 → 3.301.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 (32) hide show
  1. package/dist-types/commands/CloneBackendCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateBackendAPICommand.d.ts +6 -6
  3. package/dist-types/commands/CreateBackendAuthCommand.d.ts +20 -20
  4. package/dist-types/commands/CreateBackendCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateBackendConfigCommand.d.ts +1 -1
  6. package/dist-types/commands/CreateBackendStorageCommand.d.ts +5 -5
  7. package/dist-types/commands/CreateTokenCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteBackendAPICommand.d.ts +6 -6
  9. package/dist-types/commands/DeleteBackendAuthCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteBackendCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteBackendStorageCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteTokenCommand.d.ts +1 -1
  13. package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +1 -1
  14. package/dist-types/commands/GetBackendAPICommand.d.ts +6 -6
  15. package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +1 -1
  16. package/dist-types/commands/GetBackendAuthCommand.d.ts +1 -1
  17. package/dist-types/commands/GetBackendCommand.d.ts +1 -1
  18. package/dist-types/commands/GetBackendJobCommand.d.ts +1 -1
  19. package/dist-types/commands/GetBackendStorageCommand.d.ts +1 -1
  20. package/dist-types/commands/GetTokenCommand.d.ts +1 -1
  21. package/dist-types/commands/ImportBackendAuthCommand.d.ts +1 -1
  22. package/dist-types/commands/ImportBackendStorageCommand.d.ts +1 -1
  23. package/dist-types/commands/ListBackendJobsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListS3BucketsCommand.d.ts +1 -1
  25. package/dist-types/commands/RemoveAllBackendsCommand.d.ts +1 -1
  26. package/dist-types/commands/RemoveBackendConfigCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateBackendAPICommand.d.ts +6 -6
  28. package/dist-types/commands/UpdateBackendAuthCommand.d.ts +19 -19
  29. package/dist-types/commands/UpdateBackendConfigCommand.d.ts +2 -2
  30. package/dist-types/commands/UpdateBackendJobCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateBackendStorageCommand.d.ts +5 -5
  32. package/package.json +3 -3
@@ -26,7 +26,7 @@ export interface CloneBackendCommandOutput extends CloneBackendResponse, __Metad
26
26
  * import { AmplifyBackendClient, CloneBackendCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CloneBackendCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CloneBackendRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * TargetEnvironmentName: "STRING_VALUE", // required
@@ -26,14 +26,14 @@ export interface CreateBackendAPICommandOutput extends CreateBackendAPIResponse,
26
26
  * import { AmplifyBackendClient, CreateBackendAPICommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CreateBackendAPICommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CreateBackendAPIRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
33
- * AdditionalAuthTypes: [
34
- * {
32
+ * ResourceConfig: { // BackendAPIResourceConfig
33
+ * AdditionalAuthTypes: [ // ListOfBackendAPIAuthType
34
+ * { // BackendAPIAuthType
35
35
  * Mode: "API_KEY" || "AWS_IAM" || "AMAZON_COGNITO_USER_POOLS" || "OPENID_CONNECT",
36
- * Settings: {
36
+ * Settings: { // BackendAPIAppSyncAuthSettings
37
37
  * CognitoUserPoolId: "STRING_VALUE",
38
38
  * Description: "STRING_VALUE",
39
39
  * ExpirationTime: Number("double"),
@@ -46,7 +46,7 @@ export interface CreateBackendAPICommandOutput extends CreateBackendAPIResponse,
46
46
  * },
47
47
  * ],
48
48
  * ApiName: "STRING_VALUE",
49
- * ConflictResolution: {
49
+ * ConflictResolution: { // BackendAPIConflictResolution
50
50
  * ResolutionStrategy: "OPTIMISTIC_CONCURRENCY" || "LAMBDA" || "AUTOMERGE" || "NONE",
51
51
  * },
52
52
  * DefaultAuthType: {
@@ -26,50 +26,50 @@ export interface CreateBackendAuthCommandOutput extends CreateBackendAuthRespons
26
26
  * import { AmplifyBackendClient, CreateBackendAuthCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CreateBackendAuthCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CreateBackendAuthRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
32
+ * ResourceConfig: { // CreateBackendAuthResourceConfig
33
33
  * AuthResources: "USER_POOL_ONLY" || "IDENTITY_POOL_AND_USER_POOL", // required
34
- * IdentityPoolConfigs: {
34
+ * IdentityPoolConfigs: { // CreateBackendAuthIdentityPoolConfig
35
35
  * IdentityPoolName: "STRING_VALUE", // required
36
36
  * UnauthenticatedLogin: true || false, // required
37
37
  * },
38
38
  * Service: "COGNITO", // required
39
- * UserPoolConfigs: {
40
- * ForgotPassword: {
39
+ * UserPoolConfigs: { // CreateBackendAuthUserPoolConfig
40
+ * ForgotPassword: { // CreateBackendAuthForgotPasswordConfig
41
41
  * DeliveryMethod: "EMAIL" || "SMS", // required
42
- * EmailSettings: {
42
+ * EmailSettings: { // EmailSettings
43
43
  * EmailMessage: "STRING_VALUE",
44
44
  * EmailSubject: "STRING_VALUE",
45
45
  * },
46
- * SmsSettings: {
46
+ * SmsSettings: { // SmsSettings
47
47
  * SmsMessage: "STRING_VALUE",
48
48
  * },
49
49
  * },
50
- * Mfa: {
50
+ * Mfa: { // CreateBackendAuthMFAConfig
51
51
  * MFAMode: "ON" || "OFF" || "OPTIONAL", // required
52
- * Settings: {
53
- * MfaTypes: [
52
+ * Settings: { // Settings
53
+ * MfaTypes: [ // ListOfMfaTypesElement
54
54
  * "SMS" || "TOTP",
55
55
  * ],
56
56
  * SmsMessage: "STRING_VALUE",
57
57
  * },
58
58
  * },
59
- * OAuth: {
59
+ * OAuth: { // CreateBackendAuthOAuthConfig
60
60
  * DomainPrefix: "STRING_VALUE",
61
61
  * OAuthGrantType: "CODE" || "IMPLICIT", // required
62
- * OAuthScopes: [ // required
62
+ * OAuthScopes: [ // ListOfOAuthScopesElement // required
63
63
  * "PHONE" || "EMAIL" || "OPENID" || "PROFILE" || "AWS_COGNITO_SIGNIN_USER_ADMIN",
64
64
  * ],
65
- * RedirectSignInURIs: [ // required
65
+ * RedirectSignInURIs: [ // ListOf__string // required
66
66
  * "STRING_VALUE",
67
67
  * ],
68
68
  * RedirectSignOutURIs: [ // required
69
69
  * "STRING_VALUE",
70
70
  * ],
71
- * SocialProviderSettings: {
72
- * Facebook: {
71
+ * SocialProviderSettings: { // SocialProviderSettings
72
+ * Facebook: { // BackendAuthSocialProviderConfig
73
73
  * ClientId: "STRING_VALUE",
74
74
  * ClientSecret: "STRING_VALUE",
75
75
  * },
@@ -81,7 +81,7 @@ export interface CreateBackendAuthCommandOutput extends CreateBackendAuthRespons
81
81
  * ClientId: "STRING_VALUE",
82
82
  * ClientSecret: "STRING_VALUE",
83
83
  * },
84
- * SignInWithApple: {
84
+ * SignInWithApple: { // BackendAuthAppleProviderConfig
85
85
  * ClientId: "STRING_VALUE",
86
86
  * KeyId: "STRING_VALUE",
87
87
  * PrivateKey: "STRING_VALUE",
@@ -89,18 +89,18 @@ export interface CreateBackendAuthCommandOutput extends CreateBackendAuthRespons
89
89
  * },
90
90
  * },
91
91
  * },
92
- * PasswordPolicy: {
93
- * AdditionalConstraints: [
92
+ * PasswordPolicy: { // CreateBackendAuthPasswordPolicyConfig
93
+ * AdditionalConstraints: [ // ListOfAdditionalConstraintsElement
94
94
  * "REQUIRE_DIGIT" || "REQUIRE_LOWERCASE" || "REQUIRE_SYMBOL" || "REQUIRE_UPPERCASE",
95
95
  * ],
96
96
  * MinimumLength: Number("double"), // required
97
97
  * },
98
- * RequiredSignUpAttributes: [ // required
98
+ * RequiredSignUpAttributes: [ // ListOfRequiredSignUpAttributesElement // required
99
99
  * "ADDRESS" || "BIRTHDATE" || "EMAIL" || "FAMILY_NAME" || "GENDER" || "GIVEN_NAME" || "LOCALE" || "MIDDLE_NAME" || "NAME" || "NICKNAME" || "PHONE_NUMBER" || "PICTURE" || "PREFERRED_USERNAME" || "PROFILE" || "UPDATED_AT" || "WEBSITE" || "ZONE_INFO",
100
100
  * ],
101
101
  * SignInMethod: "EMAIL" || "EMAIL_AND_PHONE_NUMBER" || "PHONE_NUMBER" || "USERNAME", // required
102
102
  * UserPoolName: "STRING_VALUE", // required
103
- * VerificationMessage: {
103
+ * VerificationMessage: { // CreateBackendAuthVerificationMessageConfig
104
104
  * DeliveryMethod: "EMAIL" || "SMS", // required
105
105
  * EmailSettings: {
106
106
  * EmailMessage: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface CreateBackendCommandOutput extends CreateBackendResponse, __Met
26
26
  * import { AmplifyBackendClient, CreateBackendCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CreateBackendCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CreateBackendRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * AppName: "STRING_VALUE", // required
32
32
  * BackendEnvironmentName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface CreateBackendConfigCommandOutput extends CreateBackendConfigRes
26
26
  * import { AmplifyBackendClient, CreateBackendConfigCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CreateBackendConfigCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CreateBackendConfigRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendManagerAppId: "STRING_VALUE",
32
32
  * };
@@ -26,16 +26,16 @@ export interface CreateBackendStorageCommandOutput extends CreateBackendStorageR
26
26
  * import { AmplifyBackendClient, CreateBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CreateBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CreateBackendStorageRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
32
+ * ResourceConfig: { // CreateBackendStorageResourceConfig
33
33
  * BucketName: "STRING_VALUE",
34
- * Permissions: {
35
- * Authenticated: [ // required
34
+ * Permissions: { // BackendStoragePermissions
35
+ * Authenticated: [ // ListOfAuthenticatedElement // required
36
36
  * "READ" || "CREATE_AND_UPDATE" || "DELETE",
37
37
  * ],
38
- * UnAuthenticated: [
38
+ * UnAuthenticated: [ // ListOfUnAuthenticatedElement
39
39
  * "READ" || "CREATE_AND_UPDATE" || "DELETE",
40
40
  * ],
41
41
  * },
@@ -26,7 +26,7 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
26
26
  * import { AmplifyBackendClient, CreateTokenCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, CreateTokenCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // CreateTokenRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CreateTokenCommand(input);
@@ -26,14 +26,14 @@ export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse,
26
26
  * import { AmplifyBackendClient, DeleteBackendAPICommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, DeleteBackendAPICommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // DeleteBackendAPIRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
33
- * AdditionalAuthTypes: [
34
- * {
32
+ * ResourceConfig: { // BackendAPIResourceConfig
33
+ * AdditionalAuthTypes: [ // ListOfBackendAPIAuthType
34
+ * { // BackendAPIAuthType
35
35
  * Mode: "API_KEY" || "AWS_IAM" || "AMAZON_COGNITO_USER_POOLS" || "OPENID_CONNECT",
36
- * Settings: {
36
+ * Settings: { // BackendAPIAppSyncAuthSettings
37
37
  * CognitoUserPoolId: "STRING_VALUE",
38
38
  * Description: "STRING_VALUE",
39
39
  * ExpirationTime: Number("double"),
@@ -46,7 +46,7 @@ export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse,
46
46
  * },
47
47
  * ],
48
48
  * ApiName: "STRING_VALUE",
49
- * ConflictResolution: {
49
+ * ConflictResolution: { // BackendAPIConflictResolution
50
50
  * ResolutionStrategy: "OPTIMISTIC_CONCURRENCY" || "LAMBDA" || "AUTOMERGE" || "NONE",
51
51
  * },
52
52
  * DefaultAuthType: {
@@ -26,7 +26,7 @@ export interface DeleteBackendAuthCommandOutput extends DeleteBackendAuthRespons
26
26
  * import { AmplifyBackendClient, DeleteBackendAuthCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, DeleteBackendAuthCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // DeleteBackendAuthRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * ResourceName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteBackendCommandOutput extends DeleteBackendResponse, __Met
26
26
  * import { AmplifyBackendClient, DeleteBackendCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, DeleteBackendCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // DeleteBackendRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteBackendStorageCommandOutput extends DeleteBackendStorageR
26
26
  * import { AmplifyBackendClient, DeleteBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, DeleteBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // DeleteBackendStorageRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * ResourceName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
26
26
  * import { AmplifyBackendClient, DeleteTokenCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, DeleteTokenCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // DeleteTokenRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * SessionId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GenerateBackendAPIModelsCommandOutput extends GenerateBackendAP
26
26
  * import { AmplifyBackendClient, GenerateBackendAPIModelsCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GenerateBackendAPIModelsCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GenerateBackendAPIModelsRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * ResourceName: "STRING_VALUE", // required
@@ -26,14 +26,14 @@ export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met
26
26
  * import { AmplifyBackendClient, GetBackendAPICommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetBackendAPICommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendAPIRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
33
- * AdditionalAuthTypes: [
34
- * {
32
+ * ResourceConfig: { // BackendAPIResourceConfig
33
+ * AdditionalAuthTypes: [ // ListOfBackendAPIAuthType
34
+ * { // BackendAPIAuthType
35
35
  * Mode: "API_KEY" || "AWS_IAM" || "AMAZON_COGNITO_USER_POOLS" || "OPENID_CONNECT",
36
- * Settings: {
36
+ * Settings: { // BackendAPIAppSyncAuthSettings
37
37
  * CognitoUserPoolId: "STRING_VALUE",
38
38
  * Description: "STRING_VALUE",
39
39
  * ExpirationTime: Number("double"),
@@ -46,7 +46,7 @@ export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met
46
46
  * },
47
47
  * ],
48
48
  * ApiName: "STRING_VALUE",
49
- * ConflictResolution: {
49
+ * ConflictResolution: { // BackendAPIConflictResolution
50
50
  * ResolutionStrategy: "OPTIMISTIC_CONCURRENCY" || "LAMBDA" || "AUTOMERGE" || "NONE",
51
51
  * },
52
52
  * DefaultAuthType: {
@@ -26,7 +26,7 @@ export interface GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsRes
26
26
  * import { AmplifyBackendClient, GetBackendAPIModelsCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetBackendAPIModelsCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendAPIModelsRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * ResourceName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __M
26
26
  * import { AmplifyBackendClient, GetBackendAuthCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetBackendAuthCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendAuthRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * ResourceName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataB
26
26
  * import { AmplifyBackendClient, GetBackendCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetBackendCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __Met
26
26
  * import { AmplifyBackendClient, GetBackendJobCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetBackendJobCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendJobRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * JobId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetBackendStorageCommandOutput extends GetBackendStorageRespons
26
26
  * import { AmplifyBackendClient, GetBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendStorageRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * ResourceName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBeare
26
26
  * import { AmplifyBackendClient, GetTokenCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, GetTokenCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // GetTokenRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * SessionId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface ImportBackendAuthCommandOutput extends ImportBackendAuthRespons
26
26
  * import { AmplifyBackendClient, ImportBackendAuthCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, ImportBackendAuthCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // ImportBackendAuthRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * IdentityPoolId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ImportBackendStorageCommandOutput extends ImportBackendStorageR
26
26
  * import { AmplifyBackendClient, ImportBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, ImportBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // ImportBackendStorageRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * BucketName: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, _
26
26
  * import { AmplifyBackendClient, ListBackendJobsCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, ListBackendJobsCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // ListBackendJobsRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * JobId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __Met
26
26
  * import { AmplifyBackendClient, ListS3BucketsCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, ListS3BucketsCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // ListS3BucketsRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new ListS3BucketsCommand(input);
@@ -26,7 +26,7 @@ export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsRespons
26
26
  * import { AmplifyBackendClient, RemoveAllBackendsCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, RemoveAllBackendsCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // RemoveAllBackendsRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * CleanAmplifyApp: true || false,
32
32
  * };
@@ -26,7 +26,7 @@ export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigRes
26
26
  * import { AmplifyBackendClient, RemoveBackendConfigCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, RemoveBackendConfigCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // RemoveBackendConfigRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new RemoveBackendConfigCommand(input);
@@ -26,14 +26,14 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse,
26
26
  * import { AmplifyBackendClient, UpdateBackendAPICommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, UpdateBackendAPICommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // UpdateBackendAPIRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
33
- * AdditionalAuthTypes: [
34
- * {
32
+ * ResourceConfig: { // BackendAPIResourceConfig
33
+ * AdditionalAuthTypes: [ // ListOfBackendAPIAuthType
34
+ * { // BackendAPIAuthType
35
35
  * Mode: "API_KEY" || "AWS_IAM" || "AMAZON_COGNITO_USER_POOLS" || "OPENID_CONNECT",
36
- * Settings: {
36
+ * Settings: { // BackendAPIAppSyncAuthSettings
37
37
  * CognitoUserPoolId: "STRING_VALUE",
38
38
  * Description: "STRING_VALUE",
39
39
  * ExpirationTime: Number("double"),
@@ -46,7 +46,7 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse,
46
46
  * },
47
47
  * ],
48
48
  * ApiName: "STRING_VALUE",
49
- * ConflictResolution: {
49
+ * ConflictResolution: { // BackendAPIConflictResolution
50
50
  * ResolutionStrategy: "OPTIMISTIC_CONCURRENCY" || "LAMBDA" || "AUTOMERGE" || "NONE",
51
51
  * },
52
52
  * DefaultAuthType: {
@@ -26,49 +26,49 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
26
26
  * import { AmplifyBackendClient, UpdateBackendAuthCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, UpdateBackendAuthCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // UpdateBackendAuthRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
32
+ * ResourceConfig: { // UpdateBackendAuthResourceConfig
33
33
  * AuthResources: "USER_POOL_ONLY" || "IDENTITY_POOL_AND_USER_POOL", // required
34
- * IdentityPoolConfigs: {
34
+ * IdentityPoolConfigs: { // UpdateBackendAuthIdentityPoolConfig
35
35
  * UnauthenticatedLogin: true || false,
36
36
  * },
37
37
  * Service: "COGNITO", // required
38
- * UserPoolConfigs: {
39
- * ForgotPassword: {
38
+ * UserPoolConfigs: { // UpdateBackendAuthUserPoolConfig
39
+ * ForgotPassword: { // UpdateBackendAuthForgotPasswordConfig
40
40
  * DeliveryMethod: "EMAIL" || "SMS",
41
- * EmailSettings: {
41
+ * EmailSettings: { // EmailSettings
42
42
  * EmailMessage: "STRING_VALUE",
43
43
  * EmailSubject: "STRING_VALUE",
44
44
  * },
45
- * SmsSettings: {
45
+ * SmsSettings: { // SmsSettings
46
46
  * SmsMessage: "STRING_VALUE",
47
47
  * },
48
48
  * },
49
- * Mfa: {
49
+ * Mfa: { // UpdateBackendAuthMFAConfig
50
50
  * MFAMode: "ON" || "OFF" || "OPTIONAL",
51
- * Settings: {
52
- * MfaTypes: [
51
+ * Settings: { // Settings
52
+ * MfaTypes: [ // ListOfMfaTypesElement
53
53
  * "SMS" || "TOTP",
54
54
  * ],
55
55
  * SmsMessage: "STRING_VALUE",
56
56
  * },
57
57
  * },
58
- * OAuth: {
58
+ * OAuth: { // UpdateBackendAuthOAuthConfig
59
59
  * DomainPrefix: "STRING_VALUE",
60
60
  * OAuthGrantType: "CODE" || "IMPLICIT",
61
- * OAuthScopes: [
61
+ * OAuthScopes: [ // ListOfOAuthScopesElement
62
62
  * "PHONE" || "EMAIL" || "OPENID" || "PROFILE" || "AWS_COGNITO_SIGNIN_USER_ADMIN",
63
63
  * ],
64
- * RedirectSignInURIs: [
64
+ * RedirectSignInURIs: [ // ListOf__string
65
65
  * "STRING_VALUE",
66
66
  * ],
67
67
  * RedirectSignOutURIs: [
68
68
  * "STRING_VALUE",
69
69
  * ],
70
- * SocialProviderSettings: {
71
- * Facebook: {
70
+ * SocialProviderSettings: { // SocialProviderSettings
71
+ * Facebook: { // BackendAuthSocialProviderConfig
72
72
  * ClientId: "STRING_VALUE",
73
73
  * ClientSecret: "STRING_VALUE",
74
74
  * },
@@ -80,7 +80,7 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
80
80
  * ClientId: "STRING_VALUE",
81
81
  * ClientSecret: "STRING_VALUE",
82
82
  * },
83
- * SignInWithApple: {
83
+ * SignInWithApple: { // BackendAuthAppleProviderConfig
84
84
  * ClientId: "STRING_VALUE",
85
85
  * KeyId: "STRING_VALUE",
86
86
  * PrivateKey: "STRING_VALUE",
@@ -88,13 +88,13 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
88
88
  * },
89
89
  * },
90
90
  * },
91
- * PasswordPolicy: {
92
- * AdditionalConstraints: [
91
+ * PasswordPolicy: { // UpdateBackendAuthPasswordPolicyConfig
92
+ * AdditionalConstraints: [ // ListOfAdditionalConstraintsElement
93
93
  * "REQUIRE_DIGIT" || "REQUIRE_LOWERCASE" || "REQUIRE_SYMBOL" || "REQUIRE_UPPERCASE",
94
94
  * ],
95
95
  * MinimumLength: Number("double"),
96
96
  * },
97
- * VerificationMessage: {
97
+ * VerificationMessage: { // UpdateBackendAuthVerificationMessageConfig
98
98
  * DeliveryMethod: "EMAIL" || "SMS", // required
99
99
  * EmailSettings: {
100
100
  * EmailMessage: "STRING_VALUE",
@@ -26,9 +26,9 @@ export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigRes
26
26
  * import { AmplifyBackendClient, UpdateBackendConfigCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, UpdateBackendConfigCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // UpdateBackendConfigRequest
30
30
  * AppId: "STRING_VALUE", // required
31
- * LoginAuthConfig: {
31
+ * LoginAuthConfig: { // LoginAuthConfigReqObj
32
32
  * AwsCognitoIdentityPoolId: "STRING_VALUE",
33
33
  * AwsCognitoRegion: "STRING_VALUE",
34
34
  * AwsUserPoolsId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse,
26
26
  * import { AmplifyBackendClient, UpdateBackendJobCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, UpdateBackendJobCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // UpdateBackendJobRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
32
  * JobId: "STRING_VALUE", // required
@@ -26,15 +26,15 @@ export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageR
26
26
  * import { AmplifyBackendClient, UpdateBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
27
27
  * // const { AmplifyBackendClient, UpdateBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
28
28
  * const client = new AmplifyBackendClient(config);
29
- * const input = {
29
+ * const input = { // UpdateBackendStorageRequest
30
30
  * AppId: "STRING_VALUE", // required
31
31
  * BackendEnvironmentName: "STRING_VALUE", // required
32
- * ResourceConfig: {
33
- * Permissions: {
34
- * Authenticated: [ // required
32
+ * ResourceConfig: { // UpdateBackendStorageResourceConfig
33
+ * Permissions: { // BackendStoragePermissions
34
+ * Authenticated: [ // ListOfAuthenticatedElement // required
35
35
  * "READ" || "CREATE_AND_UPDATE" || "DELETE",
36
36
  * ],
37
- * UnAuthenticated: [
37
+ * UnAuthenticated: [ // ListOfUnAuthenticatedElement
38
38
  * "READ" || "CREATE_AND_UPDATE" || "DELETE",
39
39
  * ],
40
40
  * },
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.300.0",
4
+ "version": "3.301.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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",