@aws-sdk/client-sqs 3.645.0 → 3.650.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.
- package/dist-cjs/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +23 -69
- package/dist-es/commands/AddPermissionCommand.js +1 -3
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +1 -3
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +1 -3
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +1 -3
- package/dist-es/commands/CreateQueueCommand.js +1 -3
- package/dist-es/commands/DeleteMessageBatchCommand.js +1 -3
- package/dist-es/commands/DeleteMessageCommand.js +1 -3
- package/dist-es/commands/DeleteQueueCommand.js +1 -3
- package/dist-es/commands/GetQueueAttributesCommand.js +1 -3
- package/dist-es/commands/GetQueueUrlCommand.js +1 -3
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +1 -3
- package/dist-es/commands/ListMessageMoveTasksCommand.js +1 -3
- package/dist-es/commands/ListQueueTagsCommand.js +1 -3
- package/dist-es/commands/ListQueuesCommand.js +1 -3
- package/dist-es/commands/PurgeQueueCommand.js +1 -3
- package/dist-es/commands/ReceiveMessageCommand.js +1 -3
- package/dist-es/commands/RemovePermissionCommand.js +1 -3
- package/dist-es/commands/SendMessageBatchCommand.js +1 -3
- package/dist-es/commands/SendMessageCommand.js +1 -3
- package/dist-es/commands/SetQueueAttributesCommand.js +1 -3
- package/dist-es/commands/StartMessageMoveTaskCommand.js +1 -3
- package/dist-es/commands/TagQueueCommand.js +1 -3
- package/dist-es/commands/UntagQueueCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +37 -37
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1908,9 +1908,7 @@ var populateBodyWithQueryCompatibility = /* @__PURE__ */ __name((parsedOutput, h
|
|
|
1908
1908
|
}, "populateBodyWithQueryCompatibility");
|
|
1909
1909
|
|
|
1910
1910
|
// src/commands/AddPermissionCommand.ts
|
|
1911
|
-
var _AddPermissionCommand = class _AddPermissionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1912
|
-
...commonParams
|
|
1913
|
-
}).m(function(Command, cs, config, o) {
|
|
1911
|
+
var _AddPermissionCommand = class _AddPermissionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1914
1912
|
return [
|
|
1915
1913
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1916
1914
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1924,9 +1922,7 @@ var AddPermissionCommand = _AddPermissionCommand;
|
|
|
1924
1922
|
|
|
1925
1923
|
|
|
1926
1924
|
|
|
1927
|
-
var _CancelMessageMoveTaskCommand = class _CancelMessageMoveTaskCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1928
|
-
...commonParams
|
|
1929
|
-
}).m(function(Command, cs, config, o) {
|
|
1925
|
+
var _CancelMessageMoveTaskCommand = class _CancelMessageMoveTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1930
1926
|
return [
|
|
1931
1927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1932
1928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1940,9 +1936,7 @@ var CancelMessageMoveTaskCommand = _CancelMessageMoveTaskCommand;
|
|
|
1940
1936
|
|
|
1941
1937
|
|
|
1942
1938
|
|
|
1943
|
-
var _ChangeMessageVisibilityBatchCommand = class _ChangeMessageVisibilityBatchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1944
|
-
...commonParams
|
|
1945
|
-
}).m(function(Command, cs, config, o) {
|
|
1939
|
+
var _ChangeMessageVisibilityBatchCommand = class _ChangeMessageVisibilityBatchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1946
1940
|
return [
|
|
1947
1941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1948
1942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1956,9 +1950,7 @@ var ChangeMessageVisibilityBatchCommand = _ChangeMessageVisibilityBatchCommand;
|
|
|
1956
1950
|
|
|
1957
1951
|
|
|
1958
1952
|
|
|
1959
|
-
var _ChangeMessageVisibilityCommand = class _ChangeMessageVisibilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1960
|
-
...commonParams
|
|
1961
|
-
}).m(function(Command, cs, config, o) {
|
|
1953
|
+
var _ChangeMessageVisibilityCommand = class _ChangeMessageVisibilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1962
1954
|
return [
|
|
1963
1955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1964
1956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1972,9 +1964,7 @@ var ChangeMessageVisibilityCommand = _ChangeMessageVisibilityCommand;
|
|
|
1972
1964
|
|
|
1973
1965
|
|
|
1974
1966
|
|
|
1975
|
-
var _CreateQueueCommand = class _CreateQueueCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1976
|
-
...commonParams
|
|
1977
|
-
}).m(function(Command, cs, config, o) {
|
|
1967
|
+
var _CreateQueueCommand = class _CreateQueueCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1978
1968
|
return [
|
|
1979
1969
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1980
1970
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1988,9 +1978,7 @@ var CreateQueueCommand = _CreateQueueCommand;
|
|
|
1988
1978
|
|
|
1989
1979
|
|
|
1990
1980
|
|
|
1991
|
-
var _DeleteMessageBatchCommand = class _DeleteMessageBatchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1992
|
-
...commonParams
|
|
1993
|
-
}).m(function(Command, cs, config, o) {
|
|
1981
|
+
var _DeleteMessageBatchCommand = class _DeleteMessageBatchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1994
1982
|
return [
|
|
1995
1983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1996
1984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2004,9 +1992,7 @@ var DeleteMessageBatchCommand = _DeleteMessageBatchCommand;
|
|
|
2004
1992
|
|
|
2005
1993
|
|
|
2006
1994
|
|
|
2007
|
-
var _DeleteMessageCommand = class _DeleteMessageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2008
|
-
...commonParams
|
|
2009
|
-
}).m(function(Command, cs, config, o) {
|
|
1995
|
+
var _DeleteMessageCommand = class _DeleteMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2010
1996
|
return [
|
|
2011
1997
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2012
1998
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2020,9 +2006,7 @@ var DeleteMessageCommand = _DeleteMessageCommand;
|
|
|
2020
2006
|
|
|
2021
2007
|
|
|
2022
2008
|
|
|
2023
|
-
var _DeleteQueueCommand = class _DeleteQueueCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2024
|
-
...commonParams
|
|
2025
|
-
}).m(function(Command, cs, config, o) {
|
|
2009
|
+
var _DeleteQueueCommand = class _DeleteQueueCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2026
2010
|
return [
|
|
2027
2011
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2028
2012
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2036,9 +2020,7 @@ var DeleteQueueCommand = _DeleteQueueCommand;
|
|
|
2036
2020
|
|
|
2037
2021
|
|
|
2038
2022
|
|
|
2039
|
-
var _GetQueueAttributesCommand = class _GetQueueAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2040
|
-
...commonParams
|
|
2041
|
-
}).m(function(Command, cs, config, o) {
|
|
2023
|
+
var _GetQueueAttributesCommand = class _GetQueueAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2042
2024
|
return [
|
|
2043
2025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2044
2026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2052,9 +2034,7 @@ var GetQueueAttributesCommand = _GetQueueAttributesCommand;
|
|
|
2052
2034
|
|
|
2053
2035
|
|
|
2054
2036
|
|
|
2055
|
-
var _GetQueueUrlCommand = class _GetQueueUrlCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2056
|
-
...commonParams
|
|
2057
|
-
}).m(function(Command, cs, config, o) {
|
|
2037
|
+
var _GetQueueUrlCommand = class _GetQueueUrlCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2058
2038
|
return [
|
|
2059
2039
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2060
2040
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2068,9 +2048,7 @@ var GetQueueUrlCommand = _GetQueueUrlCommand;
|
|
|
2068
2048
|
|
|
2069
2049
|
|
|
2070
2050
|
|
|
2071
|
-
var _ListDeadLetterSourceQueuesCommand = class _ListDeadLetterSourceQueuesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2072
|
-
...commonParams
|
|
2073
|
-
}).m(function(Command, cs, config, o) {
|
|
2051
|
+
var _ListDeadLetterSourceQueuesCommand = class _ListDeadLetterSourceQueuesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2074
2052
|
return [
|
|
2075
2053
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2076
2054
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2084,9 +2062,7 @@ var ListDeadLetterSourceQueuesCommand = _ListDeadLetterSourceQueuesCommand;
|
|
|
2084
2062
|
|
|
2085
2063
|
|
|
2086
2064
|
|
|
2087
|
-
var _ListMessageMoveTasksCommand = class _ListMessageMoveTasksCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2088
|
-
...commonParams
|
|
2089
|
-
}).m(function(Command, cs, config, o) {
|
|
2065
|
+
var _ListMessageMoveTasksCommand = class _ListMessageMoveTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2090
2066
|
return [
|
|
2091
2067
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2092
2068
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2100,9 +2076,7 @@ var ListMessageMoveTasksCommand = _ListMessageMoveTasksCommand;
|
|
|
2100
2076
|
|
|
2101
2077
|
|
|
2102
2078
|
|
|
2103
|
-
var _ListQueuesCommand = class _ListQueuesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2104
|
-
...commonParams
|
|
2105
|
-
}).m(function(Command, cs, config, o) {
|
|
2079
|
+
var _ListQueuesCommand = class _ListQueuesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2106
2080
|
return [
|
|
2107
2081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2108
2082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2116,9 +2090,7 @@ var ListQueuesCommand = _ListQueuesCommand;
|
|
|
2116
2090
|
|
|
2117
2091
|
|
|
2118
2092
|
|
|
2119
|
-
var _ListQueueTagsCommand = class _ListQueueTagsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2120
|
-
...commonParams
|
|
2121
|
-
}).m(function(Command, cs, config, o) {
|
|
2093
|
+
var _ListQueueTagsCommand = class _ListQueueTagsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2122
2094
|
return [
|
|
2123
2095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2124
2096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2132,9 +2104,7 @@ var ListQueueTagsCommand = _ListQueueTagsCommand;
|
|
|
2132
2104
|
|
|
2133
2105
|
|
|
2134
2106
|
|
|
2135
|
-
var _PurgeQueueCommand = class _PurgeQueueCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2136
|
-
...commonParams
|
|
2137
|
-
}).m(function(Command, cs, config, o) {
|
|
2107
|
+
var _PurgeQueueCommand = class _PurgeQueueCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2138
2108
|
return [
|
|
2139
2109
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2140
2110
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2149,9 +2119,7 @@ var PurgeQueueCommand = _PurgeQueueCommand;
|
|
|
2149
2119
|
|
|
2150
2120
|
|
|
2151
2121
|
|
|
2152
|
-
var _ReceiveMessageCommand = class _ReceiveMessageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2153
|
-
...commonParams
|
|
2154
|
-
}).m(function(Command, cs, config, o) {
|
|
2122
|
+
var _ReceiveMessageCommand = class _ReceiveMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2155
2123
|
return [
|
|
2156
2124
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2157
2125
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -2166,9 +2134,7 @@ var ReceiveMessageCommand = _ReceiveMessageCommand;
|
|
|
2166
2134
|
|
|
2167
2135
|
|
|
2168
2136
|
|
|
2169
|
-
var _RemovePermissionCommand = class _RemovePermissionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2170
|
-
...commonParams
|
|
2171
|
-
}).m(function(Command, cs, config, o) {
|
|
2137
|
+
var _RemovePermissionCommand = class _RemovePermissionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2172
2138
|
return [
|
|
2173
2139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2174
2140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2183,9 +2149,7 @@ var RemovePermissionCommand = _RemovePermissionCommand;
|
|
|
2183
2149
|
|
|
2184
2150
|
|
|
2185
2151
|
|
|
2186
|
-
var _SendMessageBatchCommand = class _SendMessageBatchCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2187
|
-
...commonParams
|
|
2188
|
-
}).m(function(Command, cs, config, o) {
|
|
2152
|
+
var _SendMessageBatchCommand = class _SendMessageBatchCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2189
2153
|
return [
|
|
2190
2154
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2191
2155
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -2201,9 +2165,7 @@ var SendMessageBatchCommand = _SendMessageBatchCommand;
|
|
|
2201
2165
|
|
|
2202
2166
|
|
|
2203
2167
|
|
|
2204
|
-
var _SendMessageCommand = class _SendMessageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2205
|
-
...commonParams
|
|
2206
|
-
}).m(function(Command, cs, config, o) {
|
|
2168
|
+
var _SendMessageCommand = class _SendMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2207
2169
|
return [
|
|
2208
2170
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2209
2171
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -2218,9 +2180,7 @@ var SendMessageCommand = _SendMessageCommand;
|
|
|
2218
2180
|
|
|
2219
2181
|
|
|
2220
2182
|
|
|
2221
|
-
var _SetQueueAttributesCommand = class _SetQueueAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2222
|
-
...commonParams
|
|
2223
|
-
}).m(function(Command, cs, config, o) {
|
|
2183
|
+
var _SetQueueAttributesCommand = class _SetQueueAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2224
2184
|
return [
|
|
2225
2185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2226
2186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2234,9 +2194,7 @@ var SetQueueAttributesCommand = _SetQueueAttributesCommand;
|
|
|
2234
2194
|
|
|
2235
2195
|
|
|
2236
2196
|
|
|
2237
|
-
var _StartMessageMoveTaskCommand = class _StartMessageMoveTaskCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2238
|
-
...commonParams
|
|
2239
|
-
}).m(function(Command, cs, config, o) {
|
|
2197
|
+
var _StartMessageMoveTaskCommand = class _StartMessageMoveTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2240
2198
|
return [
|
|
2241
2199
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2242
2200
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2250,9 +2208,7 @@ var StartMessageMoveTaskCommand = _StartMessageMoveTaskCommand;
|
|
|
2250
2208
|
|
|
2251
2209
|
|
|
2252
2210
|
|
|
2253
|
-
var _TagQueueCommand = class _TagQueueCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2254
|
-
...commonParams
|
|
2255
|
-
}).m(function(Command, cs, config, o) {
|
|
2211
|
+
var _TagQueueCommand = class _TagQueueCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2256
2212
|
return [
|
|
2257
2213
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2258
2214
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2266,9 +2222,7 @@ var TagQueueCommand = _TagQueueCommand;
|
|
|
2266
2222
|
|
|
2267
2223
|
|
|
2268
2224
|
|
|
2269
|
-
var _UntagQueueCommand = class _UntagQueueCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2270
|
-
...commonParams
|
|
2271
|
-
}).m(function(Command, cs, config, o) {
|
|
2225
|
+
var _UntagQueueCommand = class _UntagQueueCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2272
2226
|
return [
|
|
2273
2227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2274
2228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_AddPermissionCommand, se_AddPermissionCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AddPermissionCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CancelMessageMoveTaskCommand, se_CancelMessageMoveTaskCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CancelMessageMoveTaskCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ChangeMessageVisibilityBatchCommand, se_ChangeMessageVisibilityBatch
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ChangeMessageVisibilityBatchCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ChangeMessageVisibilityCommand, se_ChangeMessageVisibilityCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ChangeMessageVisibilityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateQueueCommand, se_CreateQueueCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateQueueCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteMessageBatchCommand, se_DeleteMessageBatchCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteMessageBatchCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteMessageCommand, se_DeleteMessageCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteMessageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteQueueCommand, se_DeleteQueueCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteQueueCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetQueueAttributesCommand, se_GetQueueAttributesCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetQueueAttributesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetQueueUrlCommand, se_GetQueueUrlCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetQueueUrlCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListDeadLetterSourceQueuesCommand, se_ListDeadLetterSourceQueuesComm
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListDeadLetterSourceQueuesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListMessageMoveTasksCommand, se_ListMessageMoveTasksCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListMessageMoveTasksCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListQueueTagsCommand, se_ListQueueTagsCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListQueueTagsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListQueuesCommand, se_ListQueuesCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListQueuesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_PurgeQueueCommand, se_PurgeQueueCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class PurgeQueueCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_ReceiveMessageCommand, se_ReceiveMessageCommand } from "../protocols
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ReceiveMessageCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_RemovePermissionCommand, se_RemovePermissionCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class RemovePermissionCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_SendMessageBatchCommand, se_SendMessageBatchCommand } from "../proto
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class SendMessageBatchCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_SendMessageCommand, se_SendMessageCommand } from "../protocols/Aws_j
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class SendMessageCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_SetQueueAttributesCommand, se_SetQueueAttributesCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class SetQueueAttributesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_StartMessageMoveTaskCommand, se_StartMessageMoveTaskCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class StartMessageMoveTaskCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_TagQueueCommand, se_TagQueueCommand } from "../protocols/Aws_json1_0
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class TagQueueCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UntagQueueCommand, se_UntagQueueCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UntagQueueCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -19,6 +19,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
apiVersion: string;
|
|
22
|
+
cacheMiddleware?: boolean | undefined;
|
|
22
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
24
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
25
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -35,6 +36,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
35
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
36
37
|
}) => import("@smithy/types").EndpointV2;
|
|
37
38
|
tls?: boolean | undefined;
|
|
39
|
+
serviceConfiguredEndpoint?: undefined;
|
|
38
40
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
39
41
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
42
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
apiVersion: string;
|
|
23
|
+
cacheMiddleware?: boolean | undefined;
|
|
23
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
25
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
26
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -36,6 +37,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
36
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
38
|
}) => import("@smithy/types").EndpointV2;
|
|
38
39
|
tls?: boolean | undefined;
|
|
40
|
+
serviceConfiguredEndpoint?: undefined;
|
|
39
41
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
40
42
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
43
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
10
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
38
40
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
39
41
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
24
24
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
26
|
apiVersion: string;
|
|
27
|
+
cacheMiddleware?: boolean | undefined;
|
|
27
28
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
29
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
30
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -62,6 +63,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
62
63
|
}
|
|
63
64
|
) => import("@smithy/types").EndpointV2;
|
|
64
65
|
tls?: boolean | undefined;
|
|
66
|
+
serviceConfiguredEndpoint?: undefined;
|
|
65
67
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
66
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
29
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
31
|
apiVersion: string;
|
|
32
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
33
|
urlParser: import("@smithy/types").UrlParser;
|
|
33
34
|
base64Decoder: import("@smithy/types").Decoder;
|
|
34
35
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -67,6 +68,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
67
68
|
}
|
|
68
69
|
) => import("@smithy/types").EndpointV2;
|
|
69
70
|
tls?: boolean | undefined;
|
|
71
|
+
serviceConfiguredEndpoint?: undefined;
|
|
70
72
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
71
73
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
72
74
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
12
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -56,6 +57,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
56
57
|
}
|
|
57
58
|
) => import("@smithy/types").EndpointV2;
|
|
58
59
|
tls?: boolean | undefined;
|
|
60
|
+
serviceConfiguredEndpoint?: undefined;
|
|
59
61
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
60
62
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
63
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.650.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sqs",
|
|
@@ -20,45 +20,45 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^3.0.
|
|
38
|
-
"@smithy/core": "^2.4.
|
|
39
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
40
|
-
"@smithy/hash-node": "^3.0.
|
|
41
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
42
|
-
"@smithy/md5-js": "^3.0.
|
|
43
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
44
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
45
|
-
"@smithy/middleware-retry": "^3.0.
|
|
46
|
-
"@smithy/middleware-serde": "^3.0.
|
|
47
|
-
"@smithy/middleware-stack": "^3.0.
|
|
48
|
-
"@smithy/node-config-provider": "^3.1.
|
|
49
|
-
"@smithy/node-http-handler": "^3.
|
|
50
|
-
"@smithy/protocol-http": "^4.1.
|
|
51
|
-
"@smithy/smithy-client": "^3.
|
|
52
|
-
"@smithy/types": "^3.
|
|
53
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.650.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.650.0",
|
|
25
|
+
"@aws-sdk/core": "3.649.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.650.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-sdk-sqs": "3.649.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
33
|
+
"@aws-sdk/types": "3.649.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
37
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
38
|
+
"@smithy/core": "^2.4.1",
|
|
39
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
40
|
+
"@smithy/hash-node": "^3.0.4",
|
|
41
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
42
|
+
"@smithy/md5-js": "^3.0.4",
|
|
43
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
44
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
45
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
46
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
47
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
48
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
49
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
50
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
51
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
52
|
+
"@smithy/types": "^3.4.0",
|
|
53
|
+
"@smithy/url-parser": "^3.0.4",
|
|
54
54
|
"@smithy/util-base64": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
56
56
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
57
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
58
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
59
|
-
"@smithy/util-endpoints": "^2.0
|
|
60
|
-
"@smithy/util-middleware": "^3.0.
|
|
61
|
-
"@smithy/util-retry": "^3.0.
|
|
57
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
58
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
59
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
60
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
61
|
+
"@smithy/util-retry": "^3.0.4",
|
|
62
62
|
"@smithy/util-utf8": "^3.0.0",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|