@aws-sdk/client-cloudformation 3.282.0 → 3.288.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 (35) hide show
  1. package/dist-cjs/pagination/DescribeAccountLimitsPaginator.js +1 -8
  2. package/dist-cjs/pagination/DescribeStackEventsPaginator.js +1 -8
  3. package/dist-cjs/pagination/DescribeStackResourceDriftsPaginator.js +1 -8
  4. package/dist-cjs/pagination/DescribeStacksPaginator.js +1 -8
  5. package/dist-cjs/pagination/ListChangeSetsPaginator.js +1 -8
  6. package/dist-cjs/pagination/ListExportsPaginator.js +1 -8
  7. package/dist-cjs/pagination/ListImportsPaginator.js +1 -8
  8. package/dist-cjs/pagination/ListStackInstancesPaginator.js +1 -8
  9. package/dist-cjs/pagination/ListStackResourcesPaginator.js +1 -8
  10. package/dist-cjs/pagination/ListStackSetOperationResultsPaginator.js +1 -8
  11. package/dist-cjs/pagination/ListStackSetOperationsPaginator.js +1 -8
  12. package/dist-cjs/pagination/ListStackSetsPaginator.js +1 -8
  13. package/dist-cjs/pagination/ListStacksPaginator.js +1 -8
  14. package/dist-cjs/pagination/ListTypeRegistrationsPaginator.js +1 -8
  15. package/dist-cjs/pagination/ListTypeVersionsPaginator.js +1 -8
  16. package/dist-cjs/pagination/ListTypesPaginator.js +1 -8
  17. package/dist-es/pagination/DescribeAccountLimitsPaginator.js +1 -8
  18. package/dist-es/pagination/DescribeStackEventsPaginator.js +1 -8
  19. package/dist-es/pagination/DescribeStackResourceDriftsPaginator.js +1 -8
  20. package/dist-es/pagination/DescribeStacksPaginator.js +1 -8
  21. package/dist-es/pagination/ListChangeSetsPaginator.js +1 -8
  22. package/dist-es/pagination/ListExportsPaginator.js +1 -8
  23. package/dist-es/pagination/ListImportsPaginator.js +1 -8
  24. package/dist-es/pagination/ListStackInstancesPaginator.js +1 -8
  25. package/dist-es/pagination/ListStackResourcesPaginator.js +1 -8
  26. package/dist-es/pagination/ListStackSetOperationResultsPaginator.js +1 -8
  27. package/dist-es/pagination/ListStackSetOperationsPaginator.js +1 -8
  28. package/dist-es/pagination/ListStackSetsPaginator.js +1 -8
  29. package/dist-es/pagination/ListStacksPaginator.js +1 -8
  30. package/dist-es/pagination/ListTypeRegistrationsPaginator.js +1 -8
  31. package/dist-es/pagination/ListTypeVersionsPaginator.js +1 -8
  32. package/dist-es/pagination/ListTypesPaginator.js +1 -8
  33. package/dist-types/pagination/Interfaces.d.ts +1 -2
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  35. package/package.json +9 -9
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateDescribeAccountLimits = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const DescribeAccountLimitsCommand_1 = require("../commands/DescribeAccountLimitsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new DescribeAccountLimitsCommand_1.DescribeAccountLimitsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.describeAccountLimits(input, ...args);
12
- };
13
9
  async function* paginateDescribeAccountLimits(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateDescribeStackEvents = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const DescribeStackEventsCommand_1 = require("../commands/DescribeStackEventsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new DescribeStackEventsCommand_1.DescribeStackEventsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.describeStackEvents(input, ...args);
12
- };
13
9
  async function* paginateDescribeStackEvents(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateDescribeStackResourceDrifts = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const DescribeStackResourceDriftsCommand_1 = require("../commands/DescribeStackResourceDriftsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new DescribeStackResourceDriftsCommand_1.DescribeStackResourceDriftsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.describeStackResourceDrifts(input, ...args);
12
- };
13
9
  async function* paginateDescribeStackResourceDrifts(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateDescribeStackResourceDrifts(config, input, ...additional
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateDescribeStacks = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const DescribeStacksCommand_1 = require("../commands/DescribeStacksCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new DescribeStacksCommand_1.DescribeStacksCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.describeStacks(input, ...args);
12
- };
13
9
  async function* paginateDescribeStacks(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListChangeSets = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListChangeSetsCommand_1 = require("../commands/ListChangeSetsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListChangeSetsCommand_1.ListChangeSetsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listChangeSets(input, ...args);
12
- };
13
9
  async function* paginateListChangeSets(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListExports = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListExportsCommand_1 = require("../commands/ListExportsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListExportsCommand_1.ListExportsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listExports(input, ...args);
12
- };
13
9
  async function* paginateListExports(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListImports = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListImportsCommand_1 = require("../commands/ListImportsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListImportsCommand_1.ListImportsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listImports(input, ...args);
12
- };
13
9
  async function* paginateListImports(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStackInstances = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListStackInstancesCommand_1 = require("../commands/ListStackInstancesCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListStackInstancesCommand_1.ListStackInstancesCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listStackInstances(input, ...args);
12
- };
13
9
  async function* paginateListStackInstances(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListStackInstances(config, input, ...additionalArguments
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStackResources = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListStackResourcesCommand_1 = require("../commands/ListStackResourcesCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListStackResourcesCommand_1.ListStackResourcesCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listStackResources(input, ...args);
12
- };
13
9
  async function* paginateListStackResources(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStackSetOperationResults = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListStackSetOperationResultsCommand_1 = require("../commands/ListStackSetOperationResultsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListStackSetOperationResultsCommand_1.ListStackSetOperationResultsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listStackSetOperationResults(input, ...args);
12
- };
13
9
  async function* paginateListStackSetOperationResults(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListStackSetOperationResults(config, input, ...additiona
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStackSetOperations = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListStackSetOperationsCommand_1 = require("../commands/ListStackSetOperationsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListStackSetOperationsCommand_1.ListStackSetOperationsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listStackSetOperations(input, ...args);
12
- };
13
9
  async function* paginateListStackSetOperations(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListStackSetOperations(config, input, ...additionalArgum
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStackSets = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListStackSetsCommand_1 = require("../commands/ListStackSetsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListStackSetsCommand_1.ListStackSetsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listStackSets(input, ...args);
12
- };
13
9
  async function* paginateListStackSets(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListStackSets(config, input, ...additionalArguments) {
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,25 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStacks = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListStacksCommand_1 = require("../commands/ListStacksCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListStacksCommand_1.ListStacksCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listStacks(input, ...args);
12
- };
13
9
  async function* paginateListStacks(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
16
12
  let page;
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
- if (config.client instanceof CloudFormation_1.CloudFormation) {
20
- page = await makePagedRequest(config.client, input, ...additionalArguments);
21
- }
22
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
15
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
23
16
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
24
17
  }
25
18
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListTypeRegistrations = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListTypeRegistrationsCommand_1 = require("../commands/ListTypeRegistrationsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListTypeRegistrationsCommand_1.ListTypeRegistrationsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listTypeRegistrations(input, ...args);
12
- };
13
9
  async function* paginateListTypeRegistrations(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListTypeRegistrations(config, input, ...additionalArgume
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListTypeVersions = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListTypeVersionsCommand_1 = require("../commands/ListTypeVersionsCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListTypeVersionsCommand_1.ListTypeVersionsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listTypeVersions(input, ...args);
12
- };
13
9
  async function* paginateListTypeVersions(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListTypeVersions(config, input, ...additionalArguments)
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListTypes = void 0;
4
- const CloudFormation_1 = require("../CloudFormation");
5
4
  const CloudFormationClient_1 = require("../CloudFormationClient");
6
5
  const ListTypesCommand_1 = require("../commands/ListTypesCommand");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListTypesCommand_1.ListTypesCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listTypes(input, ...args);
12
- };
13
9
  async function* paginateListTypes(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListTypes(config, input, ...additionalArguments) {
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof CloudFormation_1.CloudFormation) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
16
+ if (config.client instanceof CloudFormationClient_1.CloudFormationClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { DescribeAccountLimitsCommand, } from "../commands/DescribeAccountLimitsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new DescribeAccountLimitsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.describeAccountLimits(input, ...args);
9
- };
10
6
  export async function* paginateDescribeAccountLimits(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { DescribeStackEventsCommand, } from "../commands/DescribeStackEventsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new DescribeStackEventsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.describeStackEvents(input, ...args);
9
- };
10
6
  export async function* paginateDescribeStackEvents(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { DescribeStackResourceDriftsCommand, } from "../commands/DescribeStackResourceDriftsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new DescribeStackResourceDriftsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.describeStackResourceDrifts(input, ...args);
9
- };
10
6
  export async function* paginateDescribeStackResourceDrifts(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateDescribeStackResourceDrifts(config, input, ...add
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new DescribeStacksCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.describeStacks(input, ...args);
9
- };
10
6
  export async function* paginateDescribeStacks(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListChangeSetsCommand, } from "../commands/ListChangeSetsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListChangeSetsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listChangeSets(input, ...args);
9
- };
10
6
  export async function* paginateListChangeSets(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListExportsCommand } from "../commands/ListExportsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListExportsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listExports(input, ...args);
9
- };
10
6
  export async function* paginateListExports(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListImportsCommand } from "../commands/ListImportsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListImportsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listImports(input, ...args);
9
- };
10
6
  export async function* paginateListImports(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListStackInstancesCommand, } from "../commands/ListStackInstancesCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListStackInstancesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listStackInstances(input, ...args);
9
- };
10
6
  export async function* paginateListStackInstances(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListStackInstances(config, input, ...additionalAr
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListStackResourcesCommand, } from "../commands/ListStackResourcesCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListStackResourcesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listStackResources(input, ...args);
9
- };
10
6
  export async function* paginateListStackResources(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListStackSetOperationResultsCommand, } from "../commands/ListStackSetOperationResultsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListStackSetOperationResultsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listStackSetOperationResults(input, ...args);
9
- };
10
6
  export async function* paginateListStackSetOperationResults(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListStackSetOperationResults(config, input, ...ad
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListStackSetOperationsCommand, } from "../commands/ListStackSetOperationsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListStackSetOperationsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listStackSetOperations(input, ...args);
9
- };
10
6
  export async function* paginateListStackSetOperations(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListStackSetOperations(config, input, ...addition
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListStackSetsCommand, } from "../commands/ListStackSetsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListStackSetsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listStackSets(input, ...args);
9
- };
10
6
  export async function* paginateListStackSets(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListStackSets(config, input, ...additionalArgumen
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,22 +1,15 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListStacksCommand } from "../commands/ListStacksCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListStacksCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listStacks(input, ...args);
9
- };
10
6
  export async function* paginateListStacks(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
13
9
  let page;
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
- if (config.client instanceof CloudFormation) {
17
- page = await makePagedRequest(config.client, input, ...additionalArguments);
18
- }
19
- else if (config.client instanceof CloudFormationClient) {
12
+ if (config.client instanceof CloudFormationClient) {
20
13
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
21
14
  }
22
15
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListTypeRegistrationsCommand, } from "../commands/ListTypeRegistrationsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListTypeRegistrationsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listTypeRegistrations(input, ...args);
9
- };
10
6
  export async function* paginateListTypeRegistrations(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListTypeRegistrations(config, input, ...additiona
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListTypeVersionsCommand, } from "../commands/ListTypeVersionsCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListTypeVersionsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listTypeVersions(input, ...args);
9
- };
10
6
  export async function* paginateListTypeVersions(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListTypeVersions(config, input, ...additionalArgu
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
- import { CloudFormation } from "../CloudFormation";
2
1
  import { CloudFormationClient } from "../CloudFormationClient";
3
2
  import { ListTypesCommand } from "../commands/ListTypesCommand";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListTypesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listTypes(input, ...args);
9
- };
10
6
  export async function* paginateListTypes(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListTypes(config, input, ...additionalArguments)
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof CloudFormation) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof CloudFormationClient) {
13
+ if (config.client instanceof CloudFormationClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { CloudFormation } from "../CloudFormation";
3
2
  import { CloudFormationClient } from "../CloudFormationClient";
4
3
  export interface CloudFormationPaginationConfiguration extends PaginationConfiguration {
5
- client: CloudFormation | CloudFormationClient;
4
+ client: CloudFormationClient;
6
5
  }
@@ -1,7 +1,6 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { CloudFormation } from "../CloudFormation";
3
2
  import { CloudFormationClient } from "../CloudFormationClient";
4
3
  export interface CloudFormationPaginationConfiguration
5
4
  extends PaginationConfiguration {
6
- client: CloudFormation | CloudFormationClient;
5
+ client: CloudFormationClient;
7
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.282.0",
4
+ "version": "3.288.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",
@@ -20,23 +20,23 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.282.0",
24
- "@aws-sdk/config-resolver": "3.282.0",
25
- "@aws-sdk/credential-provider-node": "3.282.0",
23
+ "@aws-sdk/client-sts": "3.288.0",
24
+ "@aws-sdk/config-resolver": "3.287.0",
25
+ "@aws-sdk/credential-provider-node": "3.288.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.282.0",
27
27
  "@aws-sdk/hash-node": "3.272.0",
28
28
  "@aws-sdk/invalid-dependency": "3.272.0",
29
29
  "@aws-sdk/middleware-content-length": "3.282.0",
30
30
  "@aws-sdk/middleware-endpoint": "3.282.0",
31
31
  "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.272.0",
32
+ "@aws-sdk/middleware-logger": "3.288.0",
33
33
  "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.282.0",
34
+ "@aws-sdk/middleware-retry": "3.287.0",
35
35
  "@aws-sdk/middleware-serde": "3.272.0",
36
36
  "@aws-sdk/middleware-signing": "3.282.0",
37
37
  "@aws-sdk/middleware-stack": "3.272.0",
38
38
  "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.272.0",
39
+ "@aws-sdk/node-config-provider": "3.287.0",
40
40
  "@aws-sdk/node-http-handler": "3.282.0",
41
41
  "@aws-sdk/protocol-http": "3.282.0",
42
42
  "@aws-sdk/smithy-client": "3.279.0",
@@ -46,11 +46,11 @@
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
48
  "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.282.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
50
  "@aws-sdk/util-endpoints": "3.272.0",
51
51
  "@aws-sdk/util-retry": "3.272.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.282.0",
53
+ "@aws-sdk/util-user-agent-node": "3.287.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "@aws-sdk/util-waiter": "3.272.0",
56
56
  "fast-xml-parser": "4.1.2",