@aws-sdk/client-amplifybackend 3.300.0 → 3.303.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 (36) hide show
  1. package/dist-cjs/models/models_0.js +91 -107
  2. package/dist-es/models/models_0.js +91 -107
  3. package/dist-types/commands/CloneBackendCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateBackendAPICommand.d.ts +6 -6
  5. package/dist-types/commands/CreateBackendAuthCommand.d.ts +20 -20
  6. package/dist-types/commands/CreateBackendCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateBackendConfigCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateBackendStorageCommand.d.ts +5 -5
  9. package/dist-types/commands/CreateTokenCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteBackendAPICommand.d.ts +6 -6
  11. package/dist-types/commands/DeleteBackendAuthCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteBackendCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteBackendStorageCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteTokenCommand.d.ts +1 -1
  15. package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +1 -1
  16. package/dist-types/commands/GetBackendAPICommand.d.ts +6 -6
  17. package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +1 -1
  18. package/dist-types/commands/GetBackendAuthCommand.d.ts +1 -1
  19. package/dist-types/commands/GetBackendCommand.d.ts +1 -1
  20. package/dist-types/commands/GetBackendJobCommand.d.ts +1 -1
  21. package/dist-types/commands/GetBackendStorageCommand.d.ts +1 -1
  22. package/dist-types/commands/GetTokenCommand.d.ts +1 -1
  23. package/dist-types/commands/ImportBackendAuthCommand.d.ts +1 -1
  24. package/dist-types/commands/ImportBackendStorageCommand.d.ts +1 -1
  25. package/dist-types/commands/ListBackendJobsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListS3BucketsCommand.d.ts +1 -1
  27. package/dist-types/commands/RemoveAllBackendsCommand.d.ts +1 -1
  28. package/dist-types/commands/RemoveBackendConfigCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateBackendAPICommand.d.ts +6 -6
  30. package/dist-types/commands/UpdateBackendAuthCommand.d.ts +19 -19
  31. package/dist-types/commands/UpdateBackendConfigCommand.d.ts +2 -2
  32. package/dist-types/commands/UpdateBackendJobCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateBackendStorageCommand.d.ts +5 -5
  34. package/dist-types/models/models_0.d.ts +171 -91
  35. package/dist-types/ts3.4/models/models_0.d.ts +116 -91
  36. package/package.json +34 -34
@@ -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
  * },