@aws-sdk/client-amplify 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 (38) hide show
  1. package/dist-types/commands/CreateAppCommand.d.ts +7 -7
  2. package/dist-types/commands/CreateBackendEnvironmentCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateBranchCommand.d.ts +3 -3
  4. package/dist-types/commands/CreateDeploymentCommand.d.ts +2 -2
  5. package/dist-types/commands/CreateDomainAssociationCommand.d.ts +4 -4
  6. package/dist-types/commands/CreateWebhookCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteBackendEnvironmentCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteBranchCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteDomainAssociationCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteWebhookCommand.d.ts +1 -1
  13. package/dist-types/commands/GenerateAccessLogsCommand.d.ts +1 -1
  14. package/dist-types/commands/GetAppCommand.d.ts +1 -1
  15. package/dist-types/commands/GetArtifactUrlCommand.d.ts +1 -1
  16. package/dist-types/commands/GetBackendEnvironmentCommand.d.ts +1 -1
  17. package/dist-types/commands/GetBranchCommand.d.ts +1 -1
  18. package/dist-types/commands/GetDomainAssociationCommand.d.ts +1 -1
  19. package/dist-types/commands/GetJobCommand.d.ts +1 -1
  20. package/dist-types/commands/GetWebhookCommand.d.ts +1 -1
  21. package/dist-types/commands/ListAppsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListArtifactsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListBackendEnvironmentsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListBranchesCommand.d.ts +1 -1
  25. package/dist-types/commands/ListDomainAssociationsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListJobsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  28. package/dist-types/commands/ListWebhooksCommand.d.ts +1 -1
  29. package/dist-types/commands/StartDeploymentCommand.d.ts +1 -1
  30. package/dist-types/commands/StartJobCommand.d.ts +1 -1
  31. package/dist-types/commands/StopJobCommand.d.ts +1 -1
  32. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  33. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  34. package/dist-types/commands/UpdateAppCommand.d.ts +6 -6
  35. package/dist-types/commands/UpdateBranchCommand.d.ts +2 -2
  36. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +4 -4
  37. package/dist-types/commands/UpdateWebhookCommand.d.ts +1 -1
  38. package/package.json +3 -3
@@ -26,7 +26,7 @@ export interface CreateAppCommandOutput extends CreateAppResult, __MetadataBeare
26
26
  * import { AmplifyClient, CreateAppCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, CreateAppCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // CreateAppRequest
30
30
  * name: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
32
  * repository: "STRING_VALUE",
@@ -34,31 +34,31 @@ export interface CreateAppCommandOutput extends CreateAppResult, __MetadataBeare
34
34
  * iamServiceRoleArn: "STRING_VALUE",
35
35
  * oauthToken: "STRING_VALUE",
36
36
  * accessToken: "STRING_VALUE",
37
- * environmentVariables: {
37
+ * environmentVariables: { // EnvironmentVariables
38
38
  * "<keys>": "STRING_VALUE",
39
39
  * },
40
40
  * enableBranchAutoBuild: true || false,
41
41
  * enableBranchAutoDeletion: true || false,
42
42
  * enableBasicAuth: true || false,
43
43
  * basicAuthCredentials: "STRING_VALUE",
44
- * customRules: [
45
- * {
44
+ * customRules: [ // CustomRules
45
+ * { // CustomRule
46
46
  * source: "STRING_VALUE", // required
47
47
  * target: "STRING_VALUE", // required
48
48
  * status: "STRING_VALUE",
49
49
  * condition: "STRING_VALUE",
50
50
  * },
51
51
  * ],
52
- * tags: {
52
+ * tags: { // TagMap
53
53
  * "<keys>": "STRING_VALUE",
54
54
  * },
55
55
  * buildSpec: "STRING_VALUE",
56
56
  * customHeaders: "STRING_VALUE",
57
57
  * enableAutoBranchCreation: true || false,
58
- * autoBranchCreationPatterns: [
58
+ * autoBranchCreationPatterns: [ // AutoBranchCreationPatterns
59
59
  * "STRING_VALUE",
60
60
  * ],
61
- * autoBranchCreationConfig: {
61
+ * autoBranchCreationConfig: { // AutoBranchCreationConfig
62
62
  * stage: "PRODUCTION" || "BETA" || "DEVELOPMENT" || "EXPERIMENTAL" || "PULL_REQUEST",
63
63
  * framework: "STRING_VALUE",
64
64
  * enableAutoBuild: true || false,
@@ -26,7 +26,7 @@ export interface CreateBackendEnvironmentCommandOutput extends CreateBackendEnvi
26
26
  * import { AmplifyClient, CreateBackendEnvironmentCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, CreateBackendEnvironmentCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // CreateBackendEnvironmentRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * environmentName: "STRING_VALUE", // required
32
32
  * stackName: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface CreateBranchCommandOutput extends CreateBranchResult, __Metadat
26
26
  * import { AmplifyClient, CreateBranchCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, CreateBranchCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // CreateBranchRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
@@ -34,13 +34,13 @@ export interface CreateBranchCommandOutput extends CreateBranchResult, __Metadat
34
34
  * framework: "STRING_VALUE",
35
35
  * enableNotification: true || false,
36
36
  * enableAutoBuild: true || false,
37
- * environmentVariables: {
37
+ * environmentVariables: { // EnvironmentVariables
38
38
  * "<keys>": "STRING_VALUE",
39
39
  * },
40
40
  * basicAuthCredentials: "STRING_VALUE",
41
41
  * enableBasicAuth: true || false,
42
42
  * enablePerformanceMode: true || false,
43
- * tags: {
43
+ * tags: { // TagMap
44
44
  * "<keys>": "STRING_VALUE",
45
45
  * },
46
46
  * buildSpec: "STRING_VALUE",
@@ -27,10 +27,10 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResult, _
27
27
  * import { AmplifyClient, CreateDeploymentCommand } from "@aws-sdk/client-amplify"; // ES Modules import
28
28
  * // const { AmplifyClient, CreateDeploymentCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
29
29
  * const client = new AmplifyClient(config);
30
- * const input = {
30
+ * const input = { // CreateDeploymentRequest
31
31
  * appId: "STRING_VALUE", // required
32
32
  * branchName: "STRING_VALUE", // required
33
- * fileMap: {
33
+ * fileMap: { // FileMap
34
34
  * "<keys>": "STRING_VALUE",
35
35
  * },
36
36
  * };
@@ -27,17 +27,17 @@ export interface CreateDomainAssociationCommandOutput extends CreateDomainAssoci
27
27
  * import { AmplifyClient, CreateDomainAssociationCommand } from "@aws-sdk/client-amplify"; // ES Modules import
28
28
  * // const { AmplifyClient, CreateDomainAssociationCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
29
29
  * const client = new AmplifyClient(config);
30
- * const input = {
30
+ * const input = { // CreateDomainAssociationRequest
31
31
  * appId: "STRING_VALUE", // required
32
32
  * domainName: "STRING_VALUE", // required
33
33
  * enableAutoSubDomain: true || false,
34
- * subDomainSettings: [ // required
35
- * {
34
+ * subDomainSettings: [ // SubDomainSettings // required
35
+ * { // SubDomainSetting
36
36
  * prefix: "STRING_VALUE", // required
37
37
  * branchName: "STRING_VALUE", // required
38
38
  * },
39
39
  * ],
40
- * autoSubDomainCreationPatterns: [
40
+ * autoSubDomainCreationPatterns: [ // AutoSubDomainCreationPatterns
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * autoSubDomainIAMRole: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface CreateWebhookCommandOutput extends CreateWebhookResult, __Metad
26
26
  * import { AmplifyClient, CreateWebhookCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, CreateWebhookCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // CreateWebhookRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DeleteAppCommandOutput extends DeleteAppResult, __MetadataBeare
26
26
  * import { AmplifyClient, DeleteAppCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, DeleteAppCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // DeleteAppRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteAppCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteBackendEnvironmentCommandOutput extends DeleteBackendEnvi
26
26
  * import { AmplifyClient, DeleteBackendEnvironmentCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, DeleteBackendEnvironmentCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // DeleteBackendEnvironmentRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * environmentName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteBranchCommandOutput extends DeleteBranchResult, __Metadat
26
26
  * import { AmplifyClient, DeleteBranchCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, DeleteBranchCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // DeleteBranchRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteDomainAssociationCommandOutput extends DeleteDomainAssoci
26
26
  * import { AmplifyClient, DeleteDomainAssociationCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, DeleteDomainAssociationCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // DeleteDomainAssociationRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * domainName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResult, __MetadataBeare
26
26
  * import { AmplifyClient, DeleteJobCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, DeleteJobCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // DeleteJobRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * jobId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookResult, __Metad
26
26
  * import { AmplifyClient, DeleteWebhookCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, DeleteWebhookCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // DeleteWebhookRequest
30
30
  * webhookId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteWebhookCommand(input);
@@ -27,7 +27,7 @@ export interface GenerateAccessLogsCommandOutput extends GenerateAccessLogsResul
27
27
  * import { AmplifyClient, GenerateAccessLogsCommand } from "@aws-sdk/client-amplify"; // ES Modules import
28
28
  * // const { AmplifyClient, GenerateAccessLogsCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
29
29
  * const client = new AmplifyClient(config);
30
- * const input = {
30
+ * const input = { // GenerateAccessLogsRequest
31
31
  * startTime: new Date("TIMESTAMP"),
32
32
  * endTime: new Date("TIMESTAMP"),
33
33
  * domainName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {
26
26
  * import { AmplifyClient, GetAppCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetAppCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetAppRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetAppCommand(input);
@@ -26,7 +26,7 @@ export interface GetArtifactUrlCommandOutput extends GetArtifactUrlResult, __Met
26
26
  * import { AmplifyClient, GetArtifactUrlCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetArtifactUrlCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetArtifactUrlRequest
30
30
  * artifactId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetArtifactUrlCommand(input);
@@ -26,7 +26,7 @@ export interface GetBackendEnvironmentCommandOutput extends GetBackendEnvironmen
26
26
  * import { AmplifyClient, GetBackendEnvironmentCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetBackendEnvironmentCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetBackendEnvironmentRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * environmentName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetBranchCommandOutput extends GetBranchResult, __MetadataBeare
26
26
  * import { AmplifyClient, GetBranchCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetBranchCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetBranchRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetDomainAssociationCommandOutput extends GetDomainAssociationR
26
26
  * import { AmplifyClient, GetDomainAssociationCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetDomainAssociationCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetDomainAssociationRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * domainName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {
26
26
  * import { AmplifyClient, GetJobCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetJobCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetJobRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * jobId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetWebhookCommandOutput extends GetWebhookResult, __MetadataBea
26
26
  * import { AmplifyClient, GetWebhookCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, GetWebhookCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // GetWebhookRequest
30
30
  * webhookId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetWebhookCommand(input);
@@ -26,7 +26,7 @@ export interface ListAppsCommandOutput extends ListAppsResult, __MetadataBearer
26
26
  * import { AmplifyClient, ListAppsCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListAppsCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListAppsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResult, __Metad
26
26
  * import { AmplifyClient, ListArtifactsCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListArtifactsCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListArtifactsRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * jobId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListBackendEnvironmentsCommandOutput extends ListBackendEnviron
26
26
  * import { AmplifyClient, ListBackendEnvironmentsCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListBackendEnvironmentsCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListBackendEnvironmentsRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * environmentName: "STRING_VALUE",
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListBranchesCommandOutput extends ListBranchesResult, __Metadat
26
26
  * import { AmplifyClient, ListBranchesCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListBranchesCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListBranchesRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListDomainAssociationsCommandOutput extends ListDomainAssociati
26
26
  * import { AmplifyClient, ListDomainAssociationsCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListDomainAssociationsCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListDomainAssociationsRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer
26
26
  * import { AmplifyClient, ListJobsCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListJobsCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListJobsRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { AmplifyClient, ListTagsForResourceCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListTagsForResourceCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface ListWebhooksCommandOutput extends ListWebhooksResult, __Metadat
26
26
  * import { AmplifyClient, ListWebhooksCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, ListWebhooksCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // ListWebhooksRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResult, __M
27
27
  * import { AmplifyClient, StartDeploymentCommand } from "@aws-sdk/client-amplify"; // ES Modules import
28
28
  * // const { AmplifyClient, StartDeploymentCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
29
29
  * const client = new AmplifyClient(config);
30
- * const input = {
30
+ * const input = { // StartDeploymentRequest
31
31
  * appId: "STRING_VALUE", // required
32
32
  * branchName: "STRING_VALUE", // required
33
33
  * jobId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface StartJobCommandOutput extends StartJobResult, __MetadataBearer
26
26
  * import { AmplifyClient, StartJobCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, StartJobCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // StartJobRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * jobId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {
26
26
  * import { AmplifyClient, StopJobCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, StopJobCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // StopJobRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * jobId: "STRING_VALUE", // required
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { AmplifyClient, TagResourceCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, TagResourceCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { AmplifyClient, UntagResourceCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, UntagResourceCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,21 +26,21 @@ export interface UpdateAppCommandOutput extends UpdateAppResult, __MetadataBeare
26
26
  * import { AmplifyClient, UpdateAppCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, UpdateAppCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // UpdateAppRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE",
32
32
  * description: "STRING_VALUE",
33
33
  * platform: "WEB" || "WEB_DYNAMIC" || "WEB_COMPUTE",
34
34
  * iamServiceRoleArn: "STRING_VALUE",
35
- * environmentVariables: {
35
+ * environmentVariables: { // EnvironmentVariables
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * enableBranchAutoBuild: true || false,
39
39
  * enableBranchAutoDeletion: true || false,
40
40
  * enableBasicAuth: true || false,
41
41
  * basicAuthCredentials: "STRING_VALUE",
42
- * customRules: [
43
- * {
42
+ * customRules: [ // CustomRules
43
+ * { // CustomRule
44
44
  * source: "STRING_VALUE", // required
45
45
  * target: "STRING_VALUE", // required
46
46
  * status: "STRING_VALUE",
@@ -50,10 +50,10 @@ export interface UpdateAppCommandOutput extends UpdateAppResult, __MetadataBeare
50
50
  * buildSpec: "STRING_VALUE",
51
51
  * customHeaders: "STRING_VALUE",
52
52
  * enableAutoBranchCreation: true || false,
53
- * autoBranchCreationPatterns: [
53
+ * autoBranchCreationPatterns: [ // AutoBranchCreationPatterns
54
54
  * "STRING_VALUE",
55
55
  * ],
56
- * autoBranchCreationConfig: {
56
+ * autoBranchCreationConfig: { // AutoBranchCreationConfig
57
57
  * stage: "PRODUCTION" || "BETA" || "DEVELOPMENT" || "EXPERIMENTAL" || "PULL_REQUEST",
58
58
  * framework: "STRING_VALUE",
59
59
  * enableAutoBuild: true || false,
@@ -26,7 +26,7 @@ export interface UpdateBranchCommandOutput extends UpdateBranchResult, __Metadat
26
26
  * import { AmplifyClient, UpdateBranchCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, UpdateBranchCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // UpdateBranchRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
@@ -34,7 +34,7 @@ export interface UpdateBranchCommandOutput extends UpdateBranchResult, __Metadat
34
34
  * stage: "PRODUCTION" || "BETA" || "DEVELOPMENT" || "EXPERIMENTAL" || "PULL_REQUEST",
35
35
  * enableNotification: true || false,
36
36
  * enableAutoBuild: true || false,
37
- * environmentVariables: {
37
+ * environmentVariables: { // EnvironmentVariables
38
38
  * "<keys>": "STRING_VALUE",
39
39
  * },
40
40
  * basicAuthCredentials: "STRING_VALUE",
@@ -26,17 +26,17 @@ export interface UpdateDomainAssociationCommandOutput extends UpdateDomainAssoci
26
26
  * import { AmplifyClient, UpdateDomainAssociationCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, UpdateDomainAssociationCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // UpdateDomainAssociationRequest
30
30
  * appId: "STRING_VALUE", // required
31
31
  * domainName: "STRING_VALUE", // required
32
32
  * enableAutoSubDomain: true || false,
33
- * subDomainSettings: [
34
- * {
33
+ * subDomainSettings: [ // SubDomainSettings
34
+ * { // SubDomainSetting
35
35
  * prefix: "STRING_VALUE", // required
36
36
  * branchName: "STRING_VALUE", // required
37
37
  * },
38
38
  * ],
39
- * autoSubDomainCreationPatterns: [
39
+ * autoSubDomainCreationPatterns: [ // AutoSubDomainCreationPatterns
40
40
  * "STRING_VALUE",
41
41
  * ],
42
42
  * autoSubDomainIAMRole: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookResult, __Metad
26
26
  * import { AmplifyClient, UpdateWebhookCommand } from "@aws-sdk/client-amplify"; // ES Modules import
27
27
  * // const { AmplifyClient, UpdateWebhookCommand } = require("@aws-sdk/client-amplify"); // CommonJS import
28
28
  * const client = new AmplifyClient(config);
29
- * const input = {
29
+ * const input = { // UpdateWebhookRequest
30
30
  * webhookId: "STRING_VALUE", // required
31
31
  * branchName: "STRING_VALUE",
32
32
  * description: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplify",
3
3
  "description": "AWS SDK for JavaScript Amplify 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",