@aws-sdk/middleware-endpoint-discovery 3.489.0 → 3.495.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.
@@ -1,30 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS = void 0;
4
- const ENV_ENDPOINT_DISCOVERY = ["AWS_ENABLE_ENDPOINT_DISCOVERY", "AWS_ENDPOINT_DISCOVERY_ENABLED"];
5
- const CONFIG_ENDPOINT_DISCOVERY = "endpoint_discovery_enabled";
6
- const isFalsy = (value) => ["false", "0"].indexOf(value) >= 0;
7
- exports.NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS = {
8
- environmentVariableSelector: (env) => {
9
- for (let i = 0; i < ENV_ENDPOINT_DISCOVERY.length; i++) {
10
- const envKey = ENV_ENDPOINT_DISCOVERY[i];
11
- if (envKey in env) {
12
- const value = env[envKey];
13
- if (value === "") {
14
- throw Error(`Environment variable ${envKey} can't be empty of undefined, got "${value}"`);
15
- }
16
- return !isFalsy(value);
17
- }
18
- }
19
- },
20
- configFileSelector: (profile) => {
21
- if (CONFIG_ENDPOINT_DISCOVERY in profile) {
22
- const value = profile[CONFIG_ENDPOINT_DISCOVERY];
23
- if (value === undefined) {
24
- throw Error(`Shared config entry ${CONFIG_ENDPOINT_DISCOVERY} can't be undefined, got "${value}"`);
25
- }
26
- return !isFalsy(value);
27
- }
28
- },
29
- default: undefined,
30
- };
1
+ module.exports = require("./index.js");
@@ -1,49 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.endpointDiscoveryMiddleware = void 0;
4
- const protocol_http_1 = require("@smithy/protocol-http");
5
- const getCacheKey_1 = require("./getCacheKey");
6
- const updateDiscoveredEndpointInCache_1 = require("./updateDiscoveredEndpointInCache");
7
- const endpointDiscoveryMiddleware = (config, middlewareConfig) => (next, context) => async (args) => {
8
- if (config.isCustomEndpoint) {
9
- if (config.isClientEndpointDiscoveryEnabled) {
10
- throw new Error(`Custom endpoint is supplied; endpointDiscoveryEnabled must not be true.`);
11
- }
12
- return next(args);
13
- }
14
- const { endpointDiscoveryCommandCtor } = config;
15
- const { isDiscoveredEndpointRequired, identifiers } = middlewareConfig;
16
- const clientName = context.clientName;
17
- const commandName = context.commandName;
18
- const isEndpointDiscoveryEnabled = await config.endpointDiscoveryEnabled();
19
- const cacheKey = await (0, getCacheKey_1.getCacheKey)(commandName, config, { identifiers });
20
- if (isDiscoveredEndpointRequired) {
21
- if (isEndpointDiscoveryEnabled === false) {
22
- throw new Error(`Endpoint Discovery is disabled but ${commandName} on ${clientName} requires it.` +
23
- ` Please check your configurations.`);
24
- }
25
- await (0, updateDiscoveredEndpointInCache_1.updateDiscoveredEndpointInCache)(config, {
26
- ...middlewareConfig,
27
- commandName,
28
- cacheKey,
29
- endpointDiscoveryCommandCtor,
30
- });
31
- }
32
- else if (isEndpointDiscoveryEnabled) {
33
- (0, updateDiscoveredEndpointInCache_1.updateDiscoveredEndpointInCache)(config, {
34
- ...middlewareConfig,
35
- commandName,
36
- cacheKey,
37
- endpointDiscoveryCommandCtor,
38
- });
39
- }
40
- const { request } = args;
41
- if (cacheKey && protocol_http_1.HttpRequest.isInstance(request)) {
42
- const endpoint = config.endpointCache.getEndpoint(cacheKey);
43
- if (endpoint) {
44
- request.hostname = endpoint;
45
- }
46
- }
47
- return next(args);
48
- };
49
- exports.endpointDiscoveryMiddleware = endpointDiscoveryMiddleware;
1
+ module.exports = require("./index.js");
@@ -1,17 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getCacheKey = void 0;
4
- const getCacheKey = async (commandName, config, options) => {
5
- const { accessKeyId } = await config.credentials();
6
- const { identifiers } = options;
7
- return JSON.stringify({
8
- ...(accessKeyId && { accessKeyId }),
9
- ...(identifiers && {
10
- commandName,
11
- identifiers: Object.entries(identifiers)
12
- .sort()
13
- .reduce((acc, [key, value]) => ({ ...acc, [key]: value }), {}),
14
- }),
15
- });
16
- };
17
- exports.getCacheKey = getCacheKey;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getEndpointDiscoveryOptionalPlugin = exports.getEndpointDiscoveryRequiredPlugin = exports.getEndpointDiscoveryPlugin = exports.endpointDiscoveryMiddlewareOptions = void 0;
4
- const endpointDiscoveryMiddleware_1 = require("./endpointDiscoveryMiddleware");
5
- exports.endpointDiscoveryMiddlewareOptions = {
6
- name: "endpointDiscoveryMiddleware",
7
- step: "build",
8
- tags: ["ENDPOINT_DISCOVERY"],
9
- override: true,
10
- };
11
- const getEndpointDiscoveryPlugin = (pluginConfig, middlewareConfig) => ({
12
- applyToStack: (commandStack) => {
13
- commandStack.add((0, endpointDiscoveryMiddleware_1.endpointDiscoveryMiddleware)(pluginConfig, middlewareConfig), exports.endpointDiscoveryMiddlewareOptions);
14
- },
15
- });
16
- exports.getEndpointDiscoveryPlugin = getEndpointDiscoveryPlugin;
17
- const getEndpointDiscoveryRequiredPlugin = (pluginConfig, middlewareConfig) => ({
18
- applyToStack: (commandStack) => {
19
- commandStack.add((0, endpointDiscoveryMiddleware_1.endpointDiscoveryMiddleware)(pluginConfig, { ...middlewareConfig, isDiscoveredEndpointRequired: true }), exports.endpointDiscoveryMiddlewareOptions);
20
- },
21
- });
22
- exports.getEndpointDiscoveryRequiredPlugin = getEndpointDiscoveryRequiredPlugin;
23
- const getEndpointDiscoveryOptionalPlugin = (pluginConfig, middlewareConfig) => ({
24
- applyToStack: (commandStack) => {
25
- commandStack.add((0, endpointDiscoveryMiddleware_1.endpointDiscoveryMiddleware)(pluginConfig, { ...middlewareConfig, isDiscoveredEndpointRequired: false }), exports.endpointDiscoveryMiddlewareOptions);
26
- },
27
- });
28
- exports.getEndpointDiscoveryOptionalPlugin = getEndpointDiscoveryOptionalPlugin;
1
+ module.exports = require("./index.js");
package/dist-cjs/index.js CHANGED
@@ -1,6 +1,225 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./configurations"), exports);
5
- tslib_1.__exportStar(require("./getEndpointDiscoveryPlugin"), exports);
6
- tslib_1.__exportStar(require("./resolveEndpointDiscoveryConfig"), exports);
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS: () => NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS,
24
+ endpointDiscoveryMiddlewareOptions: () => endpointDiscoveryMiddlewareOptions,
25
+ getEndpointDiscoveryOptionalPlugin: () => getEndpointDiscoveryOptionalPlugin,
26
+ getEndpointDiscoveryPlugin: () => getEndpointDiscoveryPlugin,
27
+ getEndpointDiscoveryRequiredPlugin: () => getEndpointDiscoveryRequiredPlugin,
28
+ resolveEndpointDiscoveryConfig: () => resolveEndpointDiscoveryConfig
29
+ });
30
+ module.exports = __toCommonJS(src_exports);
31
+
32
+ // src/configurations.ts
33
+ var ENV_ENDPOINT_DISCOVERY = ["AWS_ENABLE_ENDPOINT_DISCOVERY", "AWS_ENDPOINT_DISCOVERY_ENABLED"];
34
+ var CONFIG_ENDPOINT_DISCOVERY = "endpoint_discovery_enabled";
35
+ var isFalsy = /* @__PURE__ */ __name((value) => ["false", "0"].indexOf(value) >= 0, "isFalsy");
36
+ var NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS = {
37
+ environmentVariableSelector: (env) => {
38
+ for (let i = 0; i < ENV_ENDPOINT_DISCOVERY.length; i++) {
39
+ const envKey = ENV_ENDPOINT_DISCOVERY[i];
40
+ if (envKey in env) {
41
+ const value = env[envKey];
42
+ if (value === "") {
43
+ throw Error(`Environment variable ${envKey} can't be empty of undefined, got "${value}"`);
44
+ }
45
+ return !isFalsy(value);
46
+ }
47
+ }
48
+ },
49
+ configFileSelector: (profile) => {
50
+ if (CONFIG_ENDPOINT_DISCOVERY in profile) {
51
+ const value = profile[CONFIG_ENDPOINT_DISCOVERY];
52
+ if (value === void 0) {
53
+ throw Error(`Shared config entry ${CONFIG_ENDPOINT_DISCOVERY} can't be undefined, got "${value}"`);
54
+ }
55
+ return !isFalsy(value);
56
+ }
57
+ },
58
+ default: void 0
59
+ };
60
+
61
+ // src/endpointDiscoveryMiddleware.ts
62
+ var import_protocol_http = require("@smithy/protocol-http");
63
+
64
+ // src/getCacheKey.ts
65
+ var getCacheKey = /* @__PURE__ */ __name(async (commandName, config, options) => {
66
+ const { accessKeyId } = await config.credentials();
67
+ const { identifiers } = options;
68
+ return JSON.stringify({
69
+ ...accessKeyId && { accessKeyId },
70
+ ...identifiers && {
71
+ commandName,
72
+ identifiers: Object.entries(identifiers).sort().reduce((acc, [key, value]) => ({ ...acc, [key]: value }), {})
73
+ }
74
+ });
75
+ }, "getCacheKey");
76
+
77
+ // src/updateDiscoveredEndpointInCache.ts
78
+ var requestQueue = {};
79
+ var updateDiscoveredEndpointInCache = /* @__PURE__ */ __name(async (config, options) => new Promise((resolve, reject) => {
80
+ const { endpointCache } = config;
81
+ const { cacheKey, commandName, identifiers } = options;
82
+ const endpoints = endpointCache.get(cacheKey);
83
+ if (endpoints && endpoints.length === 1 && endpoints[0].Address === "") {
84
+ if (options.isDiscoveredEndpointRequired) {
85
+ if (!requestQueue[cacheKey])
86
+ requestQueue[cacheKey] = [];
87
+ requestQueue[cacheKey].push({ resolve, reject });
88
+ } else {
89
+ resolve();
90
+ }
91
+ } else if (endpoints && endpoints.length > 0) {
92
+ resolve();
93
+ } else {
94
+ const placeholderEndpoints = [{ Address: "", CachePeriodInMinutes: 1 }];
95
+ endpointCache.set(cacheKey, placeholderEndpoints);
96
+ const command = new options.endpointDiscoveryCommandCtor({
97
+ Operation: commandName.slice(0, -7),
98
+ // strip "Command"
99
+ Identifiers: identifiers
100
+ });
101
+ const handler = command.resolveMiddleware(options.clientStack, config, options.options);
102
+ handler(command).then((result) => {
103
+ endpointCache.set(cacheKey, result.output.Endpoints);
104
+ if (requestQueue[cacheKey]) {
105
+ requestQueue[cacheKey].forEach(({ resolve: resolve2 }) => {
106
+ resolve2();
107
+ });
108
+ delete requestQueue[cacheKey];
109
+ }
110
+ resolve();
111
+ }).catch((error) => {
112
+ endpointCache.delete(cacheKey);
113
+ const errorToThrow = Object.assign(
114
+ new Error(
115
+ `The operation to discover endpoint failed. Please retry, or provide a custom endpoint and disable endpoint discovery to proceed.`
116
+ ),
117
+ { reason: error }
118
+ );
119
+ if (requestQueue[cacheKey]) {
120
+ requestQueue[cacheKey].forEach(({ reject: reject2 }) => {
121
+ reject2(errorToThrow);
122
+ });
123
+ delete requestQueue[cacheKey];
124
+ }
125
+ if (options.isDiscoveredEndpointRequired) {
126
+ reject(errorToThrow);
127
+ } else {
128
+ endpointCache.set(cacheKey, placeholderEndpoints);
129
+ resolve();
130
+ }
131
+ });
132
+ }
133
+ }), "updateDiscoveredEndpointInCache");
134
+
135
+ // src/endpointDiscoveryMiddleware.ts
136
+ var endpointDiscoveryMiddleware = /* @__PURE__ */ __name((config, middlewareConfig) => (next, context) => async (args) => {
137
+ if (config.isCustomEndpoint) {
138
+ if (config.isClientEndpointDiscoveryEnabled) {
139
+ throw new Error(`Custom endpoint is supplied; endpointDiscoveryEnabled must not be true.`);
140
+ }
141
+ return next(args);
142
+ }
143
+ const { endpointDiscoveryCommandCtor } = config;
144
+ const { isDiscoveredEndpointRequired, identifiers } = middlewareConfig;
145
+ const clientName = context.clientName;
146
+ const commandName = context.commandName;
147
+ const isEndpointDiscoveryEnabled = await config.endpointDiscoveryEnabled();
148
+ const cacheKey = await getCacheKey(commandName, config, { identifiers });
149
+ if (isDiscoveredEndpointRequired) {
150
+ if (isEndpointDiscoveryEnabled === false) {
151
+ throw new Error(
152
+ `Endpoint Discovery is disabled but ${commandName} on ${clientName} requires it. Please check your configurations.`
153
+ );
154
+ }
155
+ await updateDiscoveredEndpointInCache(config, {
156
+ ...middlewareConfig,
157
+ commandName,
158
+ cacheKey,
159
+ endpointDiscoveryCommandCtor
160
+ });
161
+ } else if (isEndpointDiscoveryEnabled) {
162
+ updateDiscoveredEndpointInCache(config, {
163
+ ...middlewareConfig,
164
+ commandName,
165
+ cacheKey,
166
+ endpointDiscoveryCommandCtor
167
+ });
168
+ }
169
+ const { request } = args;
170
+ if (cacheKey && import_protocol_http.HttpRequest.isInstance(request)) {
171
+ const endpoint = config.endpointCache.getEndpoint(cacheKey);
172
+ if (endpoint) {
173
+ request.hostname = endpoint;
174
+ }
175
+ }
176
+ return next(args);
177
+ }, "endpointDiscoveryMiddleware");
178
+
179
+ // src/getEndpointDiscoveryPlugin.ts
180
+ var endpointDiscoveryMiddlewareOptions = {
181
+ name: "endpointDiscoveryMiddleware",
182
+ step: "build",
183
+ tags: ["ENDPOINT_DISCOVERY"],
184
+ override: true
185
+ };
186
+ var getEndpointDiscoveryPlugin = /* @__PURE__ */ __name((pluginConfig, middlewareConfig) => ({
187
+ applyToStack: (commandStack) => {
188
+ commandStack.add(endpointDiscoveryMiddleware(pluginConfig, middlewareConfig), endpointDiscoveryMiddlewareOptions);
189
+ }
190
+ }), "getEndpointDiscoveryPlugin");
191
+ var getEndpointDiscoveryRequiredPlugin = /* @__PURE__ */ __name((pluginConfig, middlewareConfig) => ({
192
+ applyToStack: (commandStack) => {
193
+ commandStack.add(
194
+ endpointDiscoveryMiddleware(pluginConfig, { ...middlewareConfig, isDiscoveredEndpointRequired: true }),
195
+ endpointDiscoveryMiddlewareOptions
196
+ );
197
+ }
198
+ }), "getEndpointDiscoveryRequiredPlugin");
199
+ var getEndpointDiscoveryOptionalPlugin = /* @__PURE__ */ __name((pluginConfig, middlewareConfig) => ({
200
+ applyToStack: (commandStack) => {
201
+ commandStack.add(
202
+ endpointDiscoveryMiddleware(pluginConfig, { ...middlewareConfig, isDiscoveredEndpointRequired: false }),
203
+ endpointDiscoveryMiddlewareOptions
204
+ );
205
+ }
206
+ }), "getEndpointDiscoveryOptionalPlugin");
207
+
208
+ // src/resolveEndpointDiscoveryConfig.ts
209
+ var import_endpoint_cache = require("@aws-sdk/endpoint-cache");
210
+ var resolveEndpointDiscoveryConfig = /* @__PURE__ */ __name((input, { endpointDiscoveryCommandCtor }) => ({
211
+ ...input,
212
+ endpointDiscoveryCommandCtor,
213
+ endpointCache: new import_endpoint_cache.EndpointCache(input.endpointCacheSize ?? 1e3),
214
+ endpointDiscoveryEnabled: input.endpointDiscoveryEnabled !== void 0 ? () => Promise.resolve(input.endpointDiscoveryEnabled) : input.endpointDiscoveryEnabledProvider,
215
+ isClientEndpointDiscoveryEnabled: input.endpointDiscoveryEnabled !== void 0
216
+ }), "resolveEndpointDiscoveryConfig");
217
+ // Annotate the CommonJS export names for ESM import in node:
218
+ 0 && (module.exports = {
219
+ NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS,
220
+ endpointDiscoveryMiddlewareOptions,
221
+ getEndpointDiscoveryOptionalPlugin,
222
+ getEndpointDiscoveryPlugin,
223
+ getEndpointDiscoveryRequiredPlugin,
224
+ resolveEndpointDiscoveryConfig
225
+ });
@@ -1,17 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.resolveEndpointDiscoveryConfig = void 0;
4
- const endpoint_cache_1 = require("@aws-sdk/endpoint-cache");
5
- const resolveEndpointDiscoveryConfig = (input, { endpointDiscoveryCommandCtor }) => {
6
- var _a;
7
- return ({
8
- ...input,
9
- endpointDiscoveryCommandCtor,
10
- endpointCache: new endpoint_cache_1.EndpointCache((_a = input.endpointCacheSize) !== null && _a !== void 0 ? _a : 1000),
11
- endpointDiscoveryEnabled: input.endpointDiscoveryEnabled !== undefined
12
- ? () => Promise.resolve(input.endpointDiscoveryEnabled)
13
- : input.endpointDiscoveryEnabledProvider,
14
- isClientEndpointDiscoveryEnabled: input.endpointDiscoveryEnabled !== undefined,
15
- });
16
- };
17
- exports.resolveEndpointDiscoveryConfig = resolveEndpointDiscoveryConfig;
1
+ module.exports = require("./index.js");
@@ -1,61 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.updateDiscoveredEndpointInCache = void 0;
4
- const requestQueue = {};
5
- const updateDiscoveredEndpointInCache = async (config, options) => new Promise((resolve, reject) => {
6
- const { endpointCache } = config;
7
- const { cacheKey, commandName, identifiers } = options;
8
- const endpoints = endpointCache.get(cacheKey);
9
- if (endpoints && endpoints.length === 1 && endpoints[0].Address === "") {
10
- if (options.isDiscoveredEndpointRequired) {
11
- if (!requestQueue[cacheKey])
12
- requestQueue[cacheKey] = [];
13
- requestQueue[cacheKey].push({ resolve, reject });
14
- }
15
- else {
16
- resolve();
17
- }
18
- }
19
- else if (endpoints && endpoints.length > 0) {
20
- resolve();
21
- }
22
- else {
23
- const placeholderEndpoints = [{ Address: "", CachePeriodInMinutes: 1 }];
24
- endpointCache.set(cacheKey, placeholderEndpoints);
25
- const command = new options.endpointDiscoveryCommandCtor({
26
- Operation: commandName.slice(0, -7),
27
- Identifiers: identifiers,
28
- });
29
- const handler = command.resolveMiddleware(options.clientStack, config, options.options);
30
- handler(command)
31
- .then((result) => {
32
- endpointCache.set(cacheKey, result.output.Endpoints);
33
- if (requestQueue[cacheKey]) {
34
- requestQueue[cacheKey].forEach(({ resolve }) => {
35
- resolve();
36
- });
37
- delete requestQueue[cacheKey];
38
- }
39
- resolve();
40
- })
41
- .catch((error) => {
42
- endpointCache.delete(cacheKey);
43
- const errorToThrow = Object.assign(new Error(`The operation to discover endpoint failed.` +
44
- ` Please retry, or provide a custom endpoint and disable endpoint discovery to proceed.`), { reason: error });
45
- if (requestQueue[cacheKey]) {
46
- requestQueue[cacheKey].forEach(({ reject }) => {
47
- reject(errorToThrow);
48
- });
49
- delete requestQueue[cacheKey];
50
- }
51
- if (options.isDiscoveredEndpointRequired) {
52
- reject(errorToThrow);
53
- }
54
- else {
55
- endpointCache.set(cacheKey, placeholderEndpoints);
56
- resolve();
57
- }
58
- });
59
- }
60
- });
61
- exports.updateDiscoveredEndpointInCache = updateDiscoveredEndpointInCache;
1
+ module.exports = require("./index.js");
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-endpoint-discovery",
3
- "version": "3.489.0",
3
+ "version": "3.495.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
- "build:cjs": "tsc -p tsconfig.cjs.json",
6
+ "build:cjs": "node ../../scripts/compilation/inline middleware-endpoint-discovery",
7
7
  "build:es": "tsc -p tsconfig.es.json",
8
8
  "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
9
9
  "build:types": "tsc -p tsconfig.types.json",
@@ -28,11 +28,11 @@
28
28
  "typescript": "~4.9.5"
29
29
  },
30
30
  "dependencies": {
31
- "@aws-sdk/endpoint-cache": "3.465.0",
32
- "@aws-sdk/types": "3.489.0",
33
- "@smithy/node-config-provider": "^2.1.9",
34
- "@smithy/protocol-http": "^3.0.12",
35
- "@smithy/types": "^2.8.0",
31
+ "@aws-sdk/endpoint-cache": "3.495.0",
32
+ "@aws-sdk/types": "3.495.0",
33
+ "@smithy/node-config-provider": "^2.2.0",
34
+ "@smithy/protocol-http": "^3.1.0",
35
+ "@smithy/types": "^2.9.0",
36
36
  "tslib": "^2.5.0"
37
37
  },
38
38
  "engines": {