@aws-sdk/client-redshift-serverless 3.476.0 → 3.478.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 (41) hide show
  1. package/dist-cjs/pagination/ListCustomDomainAssociationsPaginator.js +2 -24
  2. package/dist-cjs/pagination/ListEndpointAccessPaginator.js +2 -24
  3. package/dist-cjs/pagination/ListNamespacesPaginator.js +2 -24
  4. package/dist-cjs/pagination/ListRecoveryPointsPaginator.js +2 -24
  5. package/dist-cjs/pagination/ListScheduledActionsPaginator.js +2 -24
  6. package/dist-cjs/pagination/ListSnapshotCopyConfigurationsPaginator.js +2 -24
  7. package/dist-cjs/pagination/ListSnapshotsPaginator.js +2 -24
  8. package/dist-cjs/pagination/ListTableRestoreStatusPaginator.js +2 -24
  9. package/dist-cjs/pagination/ListUsageLimitsPaginator.js +2 -24
  10. package/dist-cjs/pagination/ListWorkgroupsPaginator.js +2 -24
  11. package/dist-es/pagination/ListCustomDomainAssociationsPaginator.js +2 -23
  12. package/dist-es/pagination/ListEndpointAccessPaginator.js +2 -23
  13. package/dist-es/pagination/ListNamespacesPaginator.js +2 -23
  14. package/dist-es/pagination/ListRecoveryPointsPaginator.js +2 -23
  15. package/dist-es/pagination/ListScheduledActionsPaginator.js +2 -23
  16. package/dist-es/pagination/ListSnapshotCopyConfigurationsPaginator.js +2 -23
  17. package/dist-es/pagination/ListSnapshotsPaginator.js +2 -23
  18. package/dist-es/pagination/ListTableRestoreStatusPaginator.js +2 -23
  19. package/dist-es/pagination/ListUsageLimitsPaginator.js +2 -23
  20. package/dist-es/pagination/ListWorkgroupsPaginator.js +2 -23
  21. package/dist-types/pagination/ListCustomDomainAssociationsPaginator.d.ts +1 -1
  22. package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +1 -1
  23. package/dist-types/pagination/ListNamespacesPaginator.d.ts +1 -1
  24. package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +1 -1
  25. package/dist-types/pagination/ListScheduledActionsPaginator.d.ts +1 -1
  26. package/dist-types/pagination/ListSnapshotCopyConfigurationsPaginator.d.ts +1 -1
  27. package/dist-types/pagination/ListSnapshotsPaginator.d.ts +1 -1
  28. package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +1 -1
  29. package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +1 -1
  30. package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +1 -1
  31. package/dist-types/ts3.4/pagination/ListCustomDomainAssociationsPaginator.d.ts +3 -3
  32. package/dist-types/ts3.4/pagination/ListEndpointAccessPaginator.d.ts +3 -3
  33. package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +3 -3
  34. package/dist-types/ts3.4/pagination/ListRecoveryPointsPaginator.d.ts +3 -3
  35. package/dist-types/ts3.4/pagination/ListScheduledActionsPaginator.d.ts +3 -3
  36. package/dist-types/ts3.4/pagination/ListSnapshotCopyConfigurationsPaginator.d.ts +3 -3
  37. package/dist-types/ts3.4/pagination/ListSnapshotsPaginator.d.ts +3 -3
  38. package/dist-types/ts3.4/pagination/ListTableRestoreStatusPaginator.d.ts +3 -3
  39. package/dist-types/ts3.4/pagination/ListUsageLimitsPaginator.d.ts +3 -3
  40. package/dist-types/ts3.4/pagination/ListWorkgroupsPaginator.d.ts +3 -3
  41. package/package.json +7 -6
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListCustomDomainAssociations = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListCustomDomainAssociationsCommand_1 = require("../commands/ListCustomDomainAssociationsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListCustomDomainAssociationsCommand_1.ListCustomDomainAssociationsCommand(input), ...args);
8
- };
9
- async function* paginateListCustomDomainAssociations(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListCustomDomainAssociations = paginateListCustomDomainAssociations;
7
+ exports.paginateListCustomDomainAssociations = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListCustomDomainAssociationsCommand_1.ListCustomDomainAssociationsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListEndpointAccess = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListEndpointAccessCommand_1 = require("../commands/ListEndpointAccessCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListEndpointAccessCommand_1.ListEndpointAccessCommand(input), ...args);
8
- };
9
- async function* paginateListEndpointAccess(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListEndpointAccess = paginateListEndpointAccess;
7
+ exports.paginateListEndpointAccess = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListEndpointAccessCommand_1.ListEndpointAccessCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListNamespaces = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListNamespacesCommand_1 = require("../commands/ListNamespacesCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListNamespacesCommand_1.ListNamespacesCommand(input), ...args);
8
- };
9
- async function* paginateListNamespaces(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListNamespaces = paginateListNamespaces;
7
+ exports.paginateListNamespaces = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListNamespacesCommand_1.ListNamespacesCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListRecoveryPoints = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListRecoveryPointsCommand_1 = require("../commands/ListRecoveryPointsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListRecoveryPointsCommand_1.ListRecoveryPointsCommand(input), ...args);
8
- };
9
- async function* paginateListRecoveryPoints(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListRecoveryPoints = paginateListRecoveryPoints;
7
+ exports.paginateListRecoveryPoints = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListRecoveryPointsCommand_1.ListRecoveryPointsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListScheduledActions = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListScheduledActionsCommand_1 = require("../commands/ListScheduledActionsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListScheduledActionsCommand_1.ListScheduledActionsCommand(input), ...args);
8
- };
9
- async function* paginateListScheduledActions(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListScheduledActions = paginateListScheduledActions;
7
+ exports.paginateListScheduledActions = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListScheduledActionsCommand_1.ListScheduledActionsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListSnapshotCopyConfigurations = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListSnapshotCopyConfigurationsCommand_1 = require("../commands/ListSnapshotCopyConfigurationsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListSnapshotCopyConfigurationsCommand_1.ListSnapshotCopyConfigurationsCommand(input), ...args);
8
- };
9
- async function* paginateListSnapshotCopyConfigurations(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListSnapshotCopyConfigurations = paginateListSnapshotCopyConfigurations;
7
+ exports.paginateListSnapshotCopyConfigurations = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListSnapshotCopyConfigurationsCommand_1.ListSnapshotCopyConfigurationsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListSnapshots = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListSnapshotsCommand_1 = require("../commands/ListSnapshotsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListSnapshotsCommand_1.ListSnapshotsCommand(input), ...args);
8
- };
9
- async function* paginateListSnapshots(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListSnapshots = paginateListSnapshots;
7
+ exports.paginateListSnapshots = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListSnapshotsCommand_1.ListSnapshotsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListTableRestoreStatus = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListTableRestoreStatusCommand_1 = require("../commands/ListTableRestoreStatusCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListTableRestoreStatusCommand_1.ListTableRestoreStatusCommand(input), ...args);
8
- };
9
- async function* paginateListTableRestoreStatus(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListTableRestoreStatus = paginateListTableRestoreStatus;
7
+ exports.paginateListTableRestoreStatus = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListTableRestoreStatusCommand_1.ListTableRestoreStatusCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListUsageLimits = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListUsageLimitsCommand_1 = require("../commands/ListUsageLimitsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListUsageLimitsCommand_1.ListUsageLimitsCommand(input), ...args);
8
- };
9
- async function* paginateListUsageLimits(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListUsageLimits = paginateListUsageLimits;
7
+ exports.paginateListUsageLimits = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListUsageLimitsCommand_1.ListUsageLimitsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListWorkgroups = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListWorkgroupsCommand_1 = require("../commands/ListWorkgroupsCommand");
5
6
  const RedshiftServerlessClient_1 = require("../RedshiftServerlessClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListWorkgroupsCommand_1.ListWorkgroupsCommand(input), ...args);
8
- };
9
- async function* paginateListWorkgroups(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof RedshiftServerlessClient_1.RedshiftServerlessClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListWorkgroups = paginateListWorkgroups;
7
+ exports.paginateListWorkgroups = (0, core_1.createPaginator)(RedshiftServerlessClient_1.RedshiftServerlessClient, ListWorkgroupsCommand_1.ListWorkgroupsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListCustomDomainAssociationsCommand, } from "../commands/ListCustomDomainAssociationsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListCustomDomainAssociationsCommand(input), ...args);
5
- };
6
- export async function* paginateListCustomDomainAssociations(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListCustomDomainAssociations = createPaginator(RedshiftServerlessClient, ListCustomDomainAssociationsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListEndpointAccessCommand, } from "../commands/ListEndpointAccessCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListEndpointAccessCommand(input), ...args);
5
- };
6
- export async function* paginateListEndpointAccess(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListEndpointAccess = createPaginator(RedshiftServerlessClient, ListEndpointAccessCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListNamespacesCommand, } from "../commands/ListNamespacesCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListNamespacesCommand(input), ...args);
5
- };
6
- export async function* paginateListNamespaces(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListNamespaces = createPaginator(RedshiftServerlessClient, ListNamespacesCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListRecoveryPointsCommand, } from "../commands/ListRecoveryPointsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListRecoveryPointsCommand(input), ...args);
5
- };
6
- export async function* paginateListRecoveryPoints(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListRecoveryPoints = createPaginator(RedshiftServerlessClient, ListRecoveryPointsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListScheduledActionsCommand, } from "../commands/ListScheduledActionsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListScheduledActionsCommand(input), ...args);
5
- };
6
- export async function* paginateListScheduledActions(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListScheduledActions = createPaginator(RedshiftServerlessClient, ListScheduledActionsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListSnapshotCopyConfigurationsCommand, } from "../commands/ListSnapshotCopyConfigurationsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListSnapshotCopyConfigurationsCommand(input), ...args);
5
- };
6
- export async function* paginateListSnapshotCopyConfigurations(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListSnapshotCopyConfigurations = createPaginator(RedshiftServerlessClient, ListSnapshotCopyConfigurationsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListSnapshotsCommand, } from "../commands/ListSnapshotsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListSnapshotsCommand(input), ...args);
5
- };
6
- export async function* paginateListSnapshots(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListSnapshots = createPaginator(RedshiftServerlessClient, ListSnapshotsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListTableRestoreStatusCommand, } from "../commands/ListTableRestoreStatusCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListTableRestoreStatusCommand(input), ...args);
5
- };
6
- export async function* paginateListTableRestoreStatus(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListTableRestoreStatus = createPaginator(RedshiftServerlessClient, ListTableRestoreStatusCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListUsageLimitsCommand, } from "../commands/ListUsageLimitsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListUsageLimitsCommand(input), ...args);
5
- };
6
- export async function* paginateListUsageLimits(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListUsageLimits = createPaginator(RedshiftServerlessClient, ListUsageLimitsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListWorkgroupsCommand, } from "../commands/ListWorkgroupsCommand";
2
3
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListWorkgroupsCommand(input), ...args);
5
- };
6
- export async function* paginateListWorkgroups(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.nextToken = token;
12
- input["maxResults"] = config.pageSize;
13
- if (config.client instanceof RedshiftServerlessClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected RedshiftServerless | RedshiftServerlessClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.nextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListWorkgroups = createPaginator(RedshiftServerlessClient, ListWorkgroupsCommand, "nextToken", "nextToken", "maxResults");
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListCustomDomainAssociations(config: RedshiftServerlessPaginationConfiguration, input: ListCustomDomainAssociationsCommandInput, ...additionalArguments: any): Paginator<ListCustomDomainAssociationsCommandOutput>;
7
+ export declare const paginateListCustomDomainAssociations: (config: RedshiftServerlessPaginationConfiguration, input: ListCustomDomainAssociationsCommandInput, ...rest: any[]) => Paginator<ListCustomDomainAssociationsCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListEndpointAccess(config: RedshiftServerlessPaginationConfiguration, input: ListEndpointAccessCommandInput, ...additionalArguments: any): Paginator<ListEndpointAccessCommandOutput>;
7
+ export declare const paginateListEndpointAccess: (config: RedshiftServerlessPaginationConfiguration, input: ListEndpointAccessCommandInput, ...rest: any[]) => Paginator<ListEndpointAccessCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListNamespaces(config: RedshiftServerlessPaginationConfiguration, input: ListNamespacesCommandInput, ...additionalArguments: any): Paginator<ListNamespacesCommandOutput>;
7
+ export declare const paginateListNamespaces: (config: RedshiftServerlessPaginationConfiguration, input: ListNamespacesCommandInput, ...rest: any[]) => Paginator<ListNamespacesCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListRecoveryPoints(config: RedshiftServerlessPaginationConfiguration, input: ListRecoveryPointsCommandInput, ...additionalArguments: any): Paginator<ListRecoveryPointsCommandOutput>;
7
+ export declare const paginateListRecoveryPoints: (config: RedshiftServerlessPaginationConfiguration, input: ListRecoveryPointsCommandInput, ...rest: any[]) => Paginator<ListRecoveryPointsCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListScheduledActions(config: RedshiftServerlessPaginationConfiguration, input: ListScheduledActionsCommandInput, ...additionalArguments: any): Paginator<ListScheduledActionsCommandOutput>;
7
+ export declare const paginateListScheduledActions: (config: RedshiftServerlessPaginationConfiguration, input: ListScheduledActionsCommandInput, ...rest: any[]) => Paginator<ListScheduledActionsCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListSnapshotCopyConfigurations(config: RedshiftServerlessPaginationConfiguration, input: ListSnapshotCopyConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListSnapshotCopyConfigurationsCommandOutput>;
7
+ export declare const paginateListSnapshotCopyConfigurations: (config: RedshiftServerlessPaginationConfiguration, input: ListSnapshotCopyConfigurationsCommandInput, ...rest: any[]) => Paginator<ListSnapshotCopyConfigurationsCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListSnapshots(config: RedshiftServerlessPaginationConfiguration, input: ListSnapshotsCommandInput, ...additionalArguments: any): Paginator<ListSnapshotsCommandOutput>;
7
+ export declare const paginateListSnapshots: (config: RedshiftServerlessPaginationConfiguration, input: ListSnapshotsCommandInput, ...rest: any[]) => Paginator<ListSnapshotsCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListTableRestoreStatus(config: RedshiftServerlessPaginationConfiguration, input: ListTableRestoreStatusCommandInput, ...additionalArguments: any): Paginator<ListTableRestoreStatusCommandOutput>;
7
+ export declare const paginateListTableRestoreStatus: (config: RedshiftServerlessPaginationConfiguration, input: ListTableRestoreStatusCommandInput, ...rest: any[]) => Paginator<ListTableRestoreStatusCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListUsageLimits(config: RedshiftServerlessPaginationConfiguration, input: ListUsageLimitsCommandInput, ...additionalArguments: any): Paginator<ListUsageLimitsCommandOutput>;
7
+ export declare const paginateListUsageLimits: (config: RedshiftServerlessPaginationConfiguration, input: ListUsageLimitsCommandInput, ...rest: any[]) => Paginator<ListUsageLimitsCommandOutput>;
@@ -4,4 +4,4 @@ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListWorkgroups(config: RedshiftServerlessPaginationConfiguration, input: ListWorkgroupsCommandInput, ...additionalArguments: any): Paginator<ListWorkgroupsCommandOutput>;
7
+ export declare const paginateListWorkgroups: (config: RedshiftServerlessPaginationConfiguration, input: ListWorkgroupsCommandInput, ...rest: any[]) => Paginator<ListWorkgroupsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListCustomDomainAssociationsCommandOutput,
5
5
  } from "../commands/ListCustomDomainAssociationsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListCustomDomainAssociations(
7
+ export declare const paginateListCustomDomainAssociations: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListCustomDomainAssociationsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListCustomDomainAssociationsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListCustomDomainAssociationsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListEndpointAccessCommandOutput,
5
5
  } from "../commands/ListEndpointAccessCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListEndpointAccess(
7
+ export declare const paginateListEndpointAccess: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListEndpointAccessCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListEndpointAccessCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListEndpointAccessCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListNamespacesCommandOutput,
5
5
  } from "../commands/ListNamespacesCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListNamespaces(
7
+ export declare const paginateListNamespaces: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListNamespacesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListNamespacesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListNamespacesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListRecoveryPointsCommandOutput,
5
5
  } from "../commands/ListRecoveryPointsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListRecoveryPoints(
7
+ export declare const paginateListRecoveryPoints: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListRecoveryPointsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListRecoveryPointsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListRecoveryPointsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListScheduledActionsCommandOutput,
5
5
  } from "../commands/ListScheduledActionsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListScheduledActions(
7
+ export declare const paginateListScheduledActions: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListScheduledActionsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListScheduledActionsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListScheduledActionsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListSnapshotCopyConfigurationsCommandOutput,
5
5
  } from "../commands/ListSnapshotCopyConfigurationsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListSnapshotCopyConfigurations(
7
+ export declare const paginateListSnapshotCopyConfigurations: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListSnapshotCopyConfigurationsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListSnapshotCopyConfigurationsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListSnapshotCopyConfigurationsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListSnapshotsCommandOutput,
5
5
  } from "../commands/ListSnapshotsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListSnapshots(
7
+ export declare const paginateListSnapshots: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListSnapshotsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListSnapshotsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListSnapshotsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListTableRestoreStatusCommandOutput,
5
5
  } from "../commands/ListTableRestoreStatusCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListTableRestoreStatus(
7
+ export declare const paginateListTableRestoreStatus: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListTableRestoreStatusCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListTableRestoreStatusCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListTableRestoreStatusCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListUsageLimitsCommandOutput,
5
5
  } from "../commands/ListUsageLimitsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListUsageLimits(
7
+ export declare const paginateListUsageLimits: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListUsageLimitsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListUsageLimitsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListUsageLimitsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListWorkgroupsCommandOutput,
5
5
  } from "../commands/ListWorkgroupsCommand";
6
6
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListWorkgroups(
7
+ export declare const paginateListWorkgroups: (
8
8
  config: RedshiftServerlessPaginationConfiguration,
9
9
  input: ListWorkgroupsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListWorkgroupsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListWorkgroupsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift-serverless",
3
3
  "description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native",
4
- "version": "3.476.0",
4
+ "version": "3.478.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,20 +20,21 @@
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.476.0",
24
- "@aws-sdk/core": "3.476.0",
25
- "@aws-sdk/credential-provider-node": "3.476.0",
23
+ "@aws-sdk/client-sts": "3.478.0",
24
+ "@aws-sdk/core": "3.477.0",
25
+ "@aws-sdk/credential-provider-node": "3.478.0",
26
26
  "@aws-sdk/middleware-host-header": "3.468.0",
27
27
  "@aws-sdk/middleware-logger": "3.468.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.468.0",
29
29
  "@aws-sdk/middleware-signing": "3.468.0",
30
- "@aws-sdk/middleware-user-agent": "3.470.0",
30
+ "@aws-sdk/middleware-user-agent": "3.478.0",
31
31
  "@aws-sdk/region-config-resolver": "3.470.0",
32
32
  "@aws-sdk/types": "3.468.0",
33
- "@aws-sdk/util-endpoints": "3.470.0",
33
+ "@aws-sdk/util-endpoints": "3.478.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.468.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.470.0",
36
36
  "@smithy/config-resolver": "^2.0.21",
37
+ "@smithy/core": "^1.2.0",
37
38
  "@smithy/fetch-http-handler": "^2.3.1",
38
39
  "@smithy/hash-node": "^2.0.17",
39
40
  "@smithy/invalid-dependency": "^2.0.15",