@aws-sdk/client-sqs 3.1074.0 → 3.1076.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/index.js +1408 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +10 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SQSServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -337
- package/dist-cjs/runtimeConfig.browser.js +0 -34
- package/dist-cjs/runtimeConfig.js +0 -46
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -836
package/dist-cjs/index.js
CHANGED
|
@@ -1,22 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getLongPollPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getLongPollPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { resolveQueueUrlConfig, getQueueUrlPlugin, getReceiveMessagePlugin, getSendMessageBatchPlugin, getSendMessagePlugin } = require("@aws-sdk/middleware-sdk-sqs");
|
|
4
3
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
5
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
6
5
|
exports.$Command = Command;
|
|
7
6
|
exports.__Client = Client;
|
|
8
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
9
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
10
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
11
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
12
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
const {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
7
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
13
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
14
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
15
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
16
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
17
|
+
|
|
18
|
+
const defaultSQSHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "sqs",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultSQSHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
20
56
|
|
|
21
57
|
const resolveClientEndpointParameters = (options) => {
|
|
22
58
|
return Object.assign(options, {
|
|
@@ -32,6 +68,1233 @@ const commonParams = {
|
|
|
32
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
33
69
|
};
|
|
34
70
|
|
|
71
|
+
var version = "3.1075.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
86
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://sqs-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://sqs.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://sqs-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://sqs.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://sqs.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 8, 6,
|
|
112
|
+
4, 7, r + 11,
|
|
113
|
+
5, r + 9, r + 10,
|
|
114
|
+
4, 11, 9,
|
|
115
|
+
6, 10, r + 8,
|
|
116
|
+
7, r + 6, r + 7,
|
|
117
|
+
5, 12, r + 5,
|
|
118
|
+
6, r + 4, r + 5,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class SQSServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, SQSServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class InvalidAddress extends SQSServiceException {
|
|
144
|
+
name = "InvalidAddress";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "InvalidAddress",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, InvalidAddress.prototype);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class InvalidSecurity extends SQSServiceException {
|
|
156
|
+
name = "InvalidSecurity";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "InvalidSecurity",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, InvalidSecurity.prototype);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class OverLimit extends SQSServiceException {
|
|
168
|
+
name = "OverLimit";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "OverLimit",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, OverLimit.prototype);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class QueueDoesNotExist extends SQSServiceException {
|
|
180
|
+
name = "QueueDoesNotExist";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "QueueDoesNotExist",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, QueueDoesNotExist.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class RequestThrottled extends SQSServiceException {
|
|
192
|
+
name = "RequestThrottled";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "RequestThrottled",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, RequestThrottled.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class UnsupportedOperation extends SQSServiceException {
|
|
204
|
+
name = "UnsupportedOperation";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "UnsupportedOperation",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, UnsupportedOperation.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class ResourceNotFoundException extends SQSServiceException {
|
|
216
|
+
name = "ResourceNotFoundException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "ResourceNotFoundException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class MessageNotInflight extends SQSServiceException {
|
|
228
|
+
name = "MessageNotInflight";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "MessageNotInflight",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, MessageNotInflight.prototype);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class ReceiptHandleIsInvalid extends SQSServiceException {
|
|
240
|
+
name = "ReceiptHandleIsInvalid";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "ReceiptHandleIsInvalid",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, ReceiptHandleIsInvalid.prototype);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class BatchEntryIdsNotDistinct extends SQSServiceException {
|
|
252
|
+
name = "BatchEntryIdsNotDistinct";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "BatchEntryIdsNotDistinct",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, BatchEntryIdsNotDistinct.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class EmptyBatchRequest extends SQSServiceException {
|
|
264
|
+
name = "EmptyBatchRequest";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "EmptyBatchRequest",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, EmptyBatchRequest.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class InvalidBatchEntryId extends SQSServiceException {
|
|
276
|
+
name = "InvalidBatchEntryId";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "InvalidBatchEntryId",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, InvalidBatchEntryId.prototype);
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
class TooManyEntriesInBatchRequest extends SQSServiceException {
|
|
288
|
+
name = "TooManyEntriesInBatchRequest";
|
|
289
|
+
$fault = "client";
|
|
290
|
+
constructor(opts) {
|
|
291
|
+
super({
|
|
292
|
+
name: "TooManyEntriesInBatchRequest",
|
|
293
|
+
$fault: "client",
|
|
294
|
+
...opts,
|
|
295
|
+
});
|
|
296
|
+
Object.setPrototypeOf(this, TooManyEntriesInBatchRequest.prototype);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
class InvalidAttributeName extends SQSServiceException {
|
|
300
|
+
name = "InvalidAttributeName";
|
|
301
|
+
$fault = "client";
|
|
302
|
+
constructor(opts) {
|
|
303
|
+
super({
|
|
304
|
+
name: "InvalidAttributeName",
|
|
305
|
+
$fault: "client",
|
|
306
|
+
...opts,
|
|
307
|
+
});
|
|
308
|
+
Object.setPrototypeOf(this, InvalidAttributeName.prototype);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
class InvalidAttributeValue extends SQSServiceException {
|
|
312
|
+
name = "InvalidAttributeValue";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
constructor(opts) {
|
|
315
|
+
super({
|
|
316
|
+
name: "InvalidAttributeValue",
|
|
317
|
+
$fault: "client",
|
|
318
|
+
...opts,
|
|
319
|
+
});
|
|
320
|
+
Object.setPrototypeOf(this, InvalidAttributeValue.prototype);
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
class QueueDeletedRecently extends SQSServiceException {
|
|
324
|
+
name = "QueueDeletedRecently";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
constructor(opts) {
|
|
327
|
+
super({
|
|
328
|
+
name: "QueueDeletedRecently",
|
|
329
|
+
$fault: "client",
|
|
330
|
+
...opts,
|
|
331
|
+
});
|
|
332
|
+
Object.setPrototypeOf(this, QueueDeletedRecently.prototype);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class QueueNameExists extends SQSServiceException {
|
|
336
|
+
name = "QueueNameExists";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
constructor(opts) {
|
|
339
|
+
super({
|
|
340
|
+
name: "QueueNameExists",
|
|
341
|
+
$fault: "client",
|
|
342
|
+
...opts,
|
|
343
|
+
});
|
|
344
|
+
Object.setPrototypeOf(this, QueueNameExists.prototype);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
class InvalidIdFormat extends SQSServiceException {
|
|
348
|
+
name = "InvalidIdFormat";
|
|
349
|
+
$fault = "client";
|
|
350
|
+
constructor(opts) {
|
|
351
|
+
super({
|
|
352
|
+
name: "InvalidIdFormat",
|
|
353
|
+
$fault: "client",
|
|
354
|
+
...opts,
|
|
355
|
+
});
|
|
356
|
+
Object.setPrototypeOf(this, InvalidIdFormat.prototype);
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
class PurgeQueueInProgress extends SQSServiceException {
|
|
360
|
+
name = "PurgeQueueInProgress";
|
|
361
|
+
$fault = "client";
|
|
362
|
+
constructor(opts) {
|
|
363
|
+
super({
|
|
364
|
+
name: "PurgeQueueInProgress",
|
|
365
|
+
$fault: "client",
|
|
366
|
+
...opts,
|
|
367
|
+
});
|
|
368
|
+
Object.setPrototypeOf(this, PurgeQueueInProgress.prototype);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
class KmsAccessDenied extends SQSServiceException {
|
|
372
|
+
name = "KmsAccessDenied";
|
|
373
|
+
$fault = "client";
|
|
374
|
+
constructor(opts) {
|
|
375
|
+
super({
|
|
376
|
+
name: "KmsAccessDenied",
|
|
377
|
+
$fault: "client",
|
|
378
|
+
...opts,
|
|
379
|
+
});
|
|
380
|
+
Object.setPrototypeOf(this, KmsAccessDenied.prototype);
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
class KmsDisabled extends SQSServiceException {
|
|
384
|
+
name = "KmsDisabled";
|
|
385
|
+
$fault = "client";
|
|
386
|
+
constructor(opts) {
|
|
387
|
+
super({
|
|
388
|
+
name: "KmsDisabled",
|
|
389
|
+
$fault: "client",
|
|
390
|
+
...opts,
|
|
391
|
+
});
|
|
392
|
+
Object.setPrototypeOf(this, KmsDisabled.prototype);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
class KmsInvalidKeyUsage extends SQSServiceException {
|
|
396
|
+
name = "KmsInvalidKeyUsage";
|
|
397
|
+
$fault = "client";
|
|
398
|
+
constructor(opts) {
|
|
399
|
+
super({
|
|
400
|
+
name: "KmsInvalidKeyUsage",
|
|
401
|
+
$fault: "client",
|
|
402
|
+
...opts,
|
|
403
|
+
});
|
|
404
|
+
Object.setPrototypeOf(this, KmsInvalidKeyUsage.prototype);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
class KmsInvalidState extends SQSServiceException {
|
|
408
|
+
name = "KmsInvalidState";
|
|
409
|
+
$fault = "client";
|
|
410
|
+
constructor(opts) {
|
|
411
|
+
super({
|
|
412
|
+
name: "KmsInvalidState",
|
|
413
|
+
$fault: "client",
|
|
414
|
+
...opts,
|
|
415
|
+
});
|
|
416
|
+
Object.setPrototypeOf(this, KmsInvalidState.prototype);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
class KmsNotFound extends SQSServiceException {
|
|
420
|
+
name = "KmsNotFound";
|
|
421
|
+
$fault = "client";
|
|
422
|
+
constructor(opts) {
|
|
423
|
+
super({
|
|
424
|
+
name: "KmsNotFound",
|
|
425
|
+
$fault: "client",
|
|
426
|
+
...opts,
|
|
427
|
+
});
|
|
428
|
+
Object.setPrototypeOf(this, KmsNotFound.prototype);
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
class KmsOptInRequired extends SQSServiceException {
|
|
432
|
+
name = "KmsOptInRequired";
|
|
433
|
+
$fault = "client";
|
|
434
|
+
constructor(opts) {
|
|
435
|
+
super({
|
|
436
|
+
name: "KmsOptInRequired",
|
|
437
|
+
$fault: "client",
|
|
438
|
+
...opts,
|
|
439
|
+
});
|
|
440
|
+
Object.setPrototypeOf(this, KmsOptInRequired.prototype);
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
class KmsThrottled extends SQSServiceException {
|
|
444
|
+
name = "KmsThrottled";
|
|
445
|
+
$fault = "client";
|
|
446
|
+
constructor(opts) {
|
|
447
|
+
super({
|
|
448
|
+
name: "KmsThrottled",
|
|
449
|
+
$fault: "client",
|
|
450
|
+
...opts,
|
|
451
|
+
});
|
|
452
|
+
Object.setPrototypeOf(this, KmsThrottled.prototype);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
class InvalidMessageContents extends SQSServiceException {
|
|
456
|
+
name = "InvalidMessageContents";
|
|
457
|
+
$fault = "client";
|
|
458
|
+
constructor(opts) {
|
|
459
|
+
super({
|
|
460
|
+
name: "InvalidMessageContents",
|
|
461
|
+
$fault: "client",
|
|
462
|
+
...opts,
|
|
463
|
+
});
|
|
464
|
+
Object.setPrototypeOf(this, InvalidMessageContents.prototype);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
class BatchRequestTooLong extends SQSServiceException {
|
|
468
|
+
name = "BatchRequestTooLong";
|
|
469
|
+
$fault = "client";
|
|
470
|
+
constructor(opts) {
|
|
471
|
+
super({
|
|
472
|
+
name: "BatchRequestTooLong",
|
|
473
|
+
$fault: "client",
|
|
474
|
+
...opts,
|
|
475
|
+
});
|
|
476
|
+
Object.setPrototypeOf(this, BatchRequestTooLong.prototype);
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
const _A = "Actions";
|
|
481
|
+
const _AN = "ActionName";
|
|
482
|
+
const _ANOMM = "ApproximateNumberOfMessagesMoved";
|
|
483
|
+
const _ANOMTM = "ApproximateNumberOfMessagesToMove";
|
|
484
|
+
const _ANt = "AttributeNames";
|
|
485
|
+
const _ANtt = "AttributeName";
|
|
486
|
+
const _AP = "AddPermission";
|
|
487
|
+
const _APR = "AddPermissionRequest";
|
|
488
|
+
const _AWSAI = "AWSAccountIds";
|
|
489
|
+
const _AWSAIc = "AWSAccountId";
|
|
490
|
+
const _At = "Attributes";
|
|
491
|
+
const _Att = "Attribute";
|
|
492
|
+
const _B = "Body";
|
|
493
|
+
const _BEIND = "BatchEntryIdsNotDistinct";
|
|
494
|
+
const _BL = "BinaryList";
|
|
495
|
+
const _BLV = "BinaryListValues";
|
|
496
|
+
const _BLVi = "BinaryListValue";
|
|
497
|
+
const _BREE = "BatchResultErrorEntry";
|
|
498
|
+
const _BREEL = "BatchResultErrorEntryList";
|
|
499
|
+
const _BRTL = "BatchRequestTooLong";
|
|
500
|
+
const _BV = "BinaryValue";
|
|
501
|
+
const _C = "Code";
|
|
502
|
+
const _CMMT = "CancelMessageMoveTask";
|
|
503
|
+
const _CMMTR = "CancelMessageMoveTaskRequest";
|
|
504
|
+
const _CMMTRa = "CancelMessageMoveTaskResult";
|
|
505
|
+
const _CMV = "ChangeMessageVisibility";
|
|
506
|
+
const _CMVB = "ChangeMessageVisibilityBatch";
|
|
507
|
+
const _CMVBR = "ChangeMessageVisibilityBatchRequest";
|
|
508
|
+
const _CMVBRE = "ChangeMessageVisibilityBatchRequestEntry";
|
|
509
|
+
const _CMVBREL = "ChangeMessageVisibilityBatchRequestEntryList";
|
|
510
|
+
const _CMVBRELh = "ChangeMessageVisibilityBatchResultEntryList";
|
|
511
|
+
const _CMVBREh = "ChangeMessageVisibilityBatchResultEntry";
|
|
512
|
+
const _CMVBRh = "ChangeMessageVisibilityBatchResult";
|
|
513
|
+
const _CMVR = "ChangeMessageVisibilityRequest";
|
|
514
|
+
const _CQ = "CreateQueue";
|
|
515
|
+
const _CQR = "CreateQueueRequest";
|
|
516
|
+
const _CQRr = "CreateQueueResult";
|
|
517
|
+
const _DA = "DestinationArn";
|
|
518
|
+
const _DM = "DeleteMessage";
|
|
519
|
+
const _DMB = "DeleteMessageBatch";
|
|
520
|
+
const _DMBR = "DeleteMessageBatchRequest";
|
|
521
|
+
const _DMBRE = "DeleteMessageBatchRequestEntry";
|
|
522
|
+
const _DMBREL = "DeleteMessageBatchRequestEntryList";
|
|
523
|
+
const _DMBRELe = "DeleteMessageBatchResultEntryList";
|
|
524
|
+
const _DMBREe = "DeleteMessageBatchResultEntry";
|
|
525
|
+
const _DMBRe = "DeleteMessageBatchResult";
|
|
526
|
+
const _DMR = "DeleteMessageRequest";
|
|
527
|
+
const _DQ = "DeleteQueue";
|
|
528
|
+
const _DQR = "DeleteQueueRequest";
|
|
529
|
+
const _DS = "DelaySeconds";
|
|
530
|
+
const _DT = "DataType";
|
|
531
|
+
const _E = "Entries";
|
|
532
|
+
const _EBR = "EmptyBatchRequest";
|
|
533
|
+
const _F = "Failed";
|
|
534
|
+
const _FR = "FailureReason";
|
|
535
|
+
const _GQA = "GetQueueAttributes";
|
|
536
|
+
const _GQAR = "GetQueueAttributesRequest";
|
|
537
|
+
const _GQARe = "GetQueueAttributesResult";
|
|
538
|
+
const _GQU = "GetQueueUrl";
|
|
539
|
+
const _GQUR = "GetQueueUrlRequest";
|
|
540
|
+
const _GQURe = "GetQueueUrlResult";
|
|
541
|
+
const _I = "Id";
|
|
542
|
+
const _IA = "InvalidAddress";
|
|
543
|
+
const _IAN = "InvalidAttributeName";
|
|
544
|
+
const _IAV = "InvalidAttributeValue";
|
|
545
|
+
const _IBEI = "InvalidBatchEntryId";
|
|
546
|
+
const _IIF = "InvalidIdFormat";
|
|
547
|
+
const _IMC = "InvalidMessageContents";
|
|
548
|
+
const _IS = "InvalidSecurity";
|
|
549
|
+
const _K = "Key";
|
|
550
|
+
const _KAD = "KmsAccessDenied";
|
|
551
|
+
const _KD = "KmsDisabled";
|
|
552
|
+
const _KIKU = "KmsInvalidKeyUsage";
|
|
553
|
+
const _KIS = "KmsInvalidState";
|
|
554
|
+
const _KNF = "KmsNotFound";
|
|
555
|
+
const _KOIR = "KmsOptInRequired";
|
|
556
|
+
const _KT = "KmsThrottled";
|
|
557
|
+
const _L = "Label";
|
|
558
|
+
const _LDLSQ = "ListDeadLetterSourceQueues";
|
|
559
|
+
const _LDLSQR = "ListDeadLetterSourceQueuesRequest";
|
|
560
|
+
const _LDLSQRi = "ListDeadLetterSourceQueuesResult";
|
|
561
|
+
const _LMMT = "ListMessageMoveTasks";
|
|
562
|
+
const _LMMTR = "ListMessageMoveTasksRequest";
|
|
563
|
+
const _LMMTRE = "ListMessageMoveTasksResultEntry";
|
|
564
|
+
const _LMMTREL = "ListMessageMoveTasksResultEntryList";
|
|
565
|
+
const _LMMTRi = "ListMessageMoveTasksResult";
|
|
566
|
+
const _LQ = "ListQueues";
|
|
567
|
+
const _LQR = "ListQueuesRequest";
|
|
568
|
+
const _LQRi = "ListQueuesResult";
|
|
569
|
+
const _LQT = "ListQueueTags";
|
|
570
|
+
const _LQTR = "ListQueueTagsRequest";
|
|
571
|
+
const _LQTRi = "ListQueueTagsResult";
|
|
572
|
+
const _M = "Message";
|
|
573
|
+
const _MA = "MessageAttributes";
|
|
574
|
+
const _MAN = "MessageAttributeNames";
|
|
575
|
+
const _MANe = "MessageAttributeName";
|
|
576
|
+
const _MAV = "MessageAttributeValue";
|
|
577
|
+
const _MAe = "MessageAttribute";
|
|
578
|
+
const _MB = "MessageBody";
|
|
579
|
+
const _MBAM = "MessageBodyAttributeMap";
|
|
580
|
+
const _MBSAM = "MessageBodySystemAttributeMap";
|
|
581
|
+
const _MDI = "MessageDeduplicationId";
|
|
582
|
+
const _MDOB = "MD5OfBody";
|
|
583
|
+
const _MDOMA = "MD5OfMessageAttributes";
|
|
584
|
+
const _MDOMB = "MD5OfMessageBody";
|
|
585
|
+
const _MDOMSA = "MD5OfMessageSystemAttributes";
|
|
586
|
+
const _MGI = "MessageGroupId";
|
|
587
|
+
const _MI = "MessageId";
|
|
588
|
+
const _ML = "MessageList";
|
|
589
|
+
const _MNI = "MessageNotInflight";
|
|
590
|
+
const _MNOM = "MaxNumberOfMessages";
|
|
591
|
+
const _MNOMPS = "MaxNumberOfMessagesPerSecond";
|
|
592
|
+
const _MR = "MaxResults";
|
|
593
|
+
const _MSA = "MessageSystemAttributes";
|
|
594
|
+
const _MSAM = "MessageSystemAttributeMap";
|
|
595
|
+
const _MSAN = "MessageSystemAttributeNames";
|
|
596
|
+
const _MSAV = "MessageSystemAttributeValue";
|
|
597
|
+
const _MSAe = "MessageSystemAttribute";
|
|
598
|
+
const _Me = "Messages";
|
|
599
|
+
const _N = "Name";
|
|
600
|
+
const _NT = "NextToken";
|
|
601
|
+
const _OL = "OverLimit";
|
|
602
|
+
const _PQ = "PurgeQueue";
|
|
603
|
+
const _PQIP = "PurgeQueueInProgress";
|
|
604
|
+
const _PQR = "PurgeQueueRequest";
|
|
605
|
+
const _QAM = "QueueAttributeMap";
|
|
606
|
+
const _QDNE = "QueueDoesNotExist";
|
|
607
|
+
const _QDR = "QueueDeletedRecently";
|
|
608
|
+
const _QN = "QueueName";
|
|
609
|
+
const _QNE = "QueueNameExists";
|
|
610
|
+
const _QNP = "QueueNamePrefix";
|
|
611
|
+
const _QOAWSAI = "QueueOwnerAWSAccountId";
|
|
612
|
+
const _QU = "QueueUrl";
|
|
613
|
+
const _QUu = "QueueUrls";
|
|
614
|
+
const _R = "Results";
|
|
615
|
+
const _RH = "ReceiptHandle";
|
|
616
|
+
const _RHII = "ReceiptHandleIsInvalid";
|
|
617
|
+
const _RM = "ReceiveMessage";
|
|
618
|
+
const _RMR = "ReceiveMessageRequest";
|
|
619
|
+
const _RMRe = "ReceiveMessageResult";
|
|
620
|
+
const _RNFE = "ResourceNotFoundException";
|
|
621
|
+
const _RP = "RemovePermission";
|
|
622
|
+
const _RPR = "RemovePermissionRequest";
|
|
623
|
+
const _RRAI = "ReceiveRequestAttemptId";
|
|
624
|
+
const _RT = "RequestThrottled";
|
|
625
|
+
const _S = "Successful";
|
|
626
|
+
const _SA = "SourceArn";
|
|
627
|
+
const _SF = "SenderFault";
|
|
628
|
+
const _SL = "StringList";
|
|
629
|
+
const _SLV = "StringListValues";
|
|
630
|
+
const _SLVt = "StringListValue";
|
|
631
|
+
const _SM = "SendMessage";
|
|
632
|
+
const _SMB = "SendMessageBatch";
|
|
633
|
+
const _SMBR = "SendMessageBatchRequest";
|
|
634
|
+
const _SMBRE = "SendMessageBatchRequestEntry";
|
|
635
|
+
const _SMBREL = "SendMessageBatchRequestEntryList";
|
|
636
|
+
const _SMBRELe = "SendMessageBatchResultEntryList";
|
|
637
|
+
const _SMBREe = "SendMessageBatchResultEntry";
|
|
638
|
+
const _SMBRe = "SendMessageBatchResult";
|
|
639
|
+
const _SMMT = "StartMessageMoveTask";
|
|
640
|
+
const _SMMTR = "StartMessageMoveTaskRequest";
|
|
641
|
+
const _SMMTRt = "StartMessageMoveTaskResult";
|
|
642
|
+
const _SMR = "SendMessageRequest";
|
|
643
|
+
const _SMRe = "SendMessageResult";
|
|
644
|
+
const _SN = "SequenceNumber";
|
|
645
|
+
const _SQA = "SetQueueAttributes";
|
|
646
|
+
const _SQAR = "SetQueueAttributesRequest";
|
|
647
|
+
const _ST = "StartedTimestamp";
|
|
648
|
+
const _SV = "StringValue";
|
|
649
|
+
const _St = "Status";
|
|
650
|
+
const _T = "Tag";
|
|
651
|
+
const _TH = "TaskHandle";
|
|
652
|
+
const _TK = "TagKeys";
|
|
653
|
+
const _TKa = "TagKey";
|
|
654
|
+
const _TM = "TagMap";
|
|
655
|
+
const _TMEIBR = "TooManyEntriesInBatchRequest";
|
|
656
|
+
const _TQ = "TagQueue";
|
|
657
|
+
const _TQR = "TagQueueRequest";
|
|
658
|
+
const _Ta = "Tags";
|
|
659
|
+
const _UO = "UnsupportedOperation";
|
|
660
|
+
const _UQ = "UntagQueue";
|
|
661
|
+
const _UQR = "UntagQueueRequest";
|
|
662
|
+
const _V = "Value";
|
|
663
|
+
const _VT = "VisibilityTimeout";
|
|
664
|
+
const _WTS = "WaitTimeSeconds";
|
|
665
|
+
const _aQE = "awsQueryError";
|
|
666
|
+
const _c = "client";
|
|
667
|
+
const _e = "error";
|
|
668
|
+
const _hE = "httpError";
|
|
669
|
+
const _m = "message";
|
|
670
|
+
const _qU = "queueUrls";
|
|
671
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.sqs";
|
|
672
|
+
const _t = "tags";
|
|
673
|
+
const _xF = "xmlFlattened";
|
|
674
|
+
const _xN = "xmlName";
|
|
675
|
+
const n0 = "com.amazonaws.sqs";
|
|
676
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
677
|
+
var SQSServiceException$ = [-3, _s, "SQSServiceException", 0, [], []];
|
|
678
|
+
_s_registry.registerError(SQSServiceException$, SQSServiceException);
|
|
679
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
680
|
+
var BatchEntryIdsNotDistinct$ = [-3, n0, _BEIND,
|
|
681
|
+
{ [_aQE]: [`AWS.SimpleQueueService.BatchEntryIdsNotDistinct`, 400], [_e]: _c, [_hE]: 400 },
|
|
682
|
+
[_m],
|
|
683
|
+
[0]
|
|
684
|
+
];
|
|
685
|
+
n0_registry.registerError(BatchEntryIdsNotDistinct$, BatchEntryIdsNotDistinct);
|
|
686
|
+
var BatchRequestTooLong$ = [-3, n0, _BRTL,
|
|
687
|
+
{ [_aQE]: [`AWS.SimpleQueueService.BatchRequestTooLong`, 400], [_e]: _c, [_hE]: 400 },
|
|
688
|
+
[_m],
|
|
689
|
+
[0]
|
|
690
|
+
];
|
|
691
|
+
n0_registry.registerError(BatchRequestTooLong$, BatchRequestTooLong);
|
|
692
|
+
var EmptyBatchRequest$ = [-3, n0, _EBR,
|
|
693
|
+
{ [_aQE]: [`AWS.SimpleQueueService.EmptyBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
694
|
+
[_m],
|
|
695
|
+
[0]
|
|
696
|
+
];
|
|
697
|
+
n0_registry.registerError(EmptyBatchRequest$, EmptyBatchRequest);
|
|
698
|
+
var InvalidAddress$ = [-3, n0, _IA,
|
|
699
|
+
{ [_aQE]: [`InvalidAddress`, 404], [_e]: _c, [_hE]: 404 },
|
|
700
|
+
[_m],
|
|
701
|
+
[0]
|
|
702
|
+
];
|
|
703
|
+
n0_registry.registerError(InvalidAddress$, InvalidAddress);
|
|
704
|
+
var InvalidAttributeName$ = [-3, n0, _IAN,
|
|
705
|
+
{ [_e]: _c },
|
|
706
|
+
[_m],
|
|
707
|
+
[0]
|
|
708
|
+
];
|
|
709
|
+
n0_registry.registerError(InvalidAttributeName$, InvalidAttributeName);
|
|
710
|
+
var InvalidAttributeValue$ = [-3, n0, _IAV,
|
|
711
|
+
{ [_e]: _c },
|
|
712
|
+
[_m],
|
|
713
|
+
[0]
|
|
714
|
+
];
|
|
715
|
+
n0_registry.registerError(InvalidAttributeValue$, InvalidAttributeValue);
|
|
716
|
+
var InvalidBatchEntryId$ = [-3, n0, _IBEI,
|
|
717
|
+
{ [_aQE]: [`AWS.SimpleQueueService.InvalidBatchEntryId`, 400], [_e]: _c, [_hE]: 400 },
|
|
718
|
+
[_m],
|
|
719
|
+
[0]
|
|
720
|
+
];
|
|
721
|
+
n0_registry.registerError(InvalidBatchEntryId$, InvalidBatchEntryId);
|
|
722
|
+
var InvalidIdFormat$ = [-3, n0, _IIF,
|
|
723
|
+
{ [_e]: _c },
|
|
724
|
+
[],
|
|
725
|
+
[]
|
|
726
|
+
];
|
|
727
|
+
n0_registry.registerError(InvalidIdFormat$, InvalidIdFormat);
|
|
728
|
+
var InvalidMessageContents$ = [-3, n0, _IMC,
|
|
729
|
+
{ [_e]: _c },
|
|
730
|
+
[_m],
|
|
731
|
+
[0]
|
|
732
|
+
];
|
|
733
|
+
n0_registry.registerError(InvalidMessageContents$, InvalidMessageContents);
|
|
734
|
+
var InvalidSecurity$ = [-3, n0, _IS,
|
|
735
|
+
{ [_aQE]: [`InvalidSecurity`, 403], [_e]: _c, [_hE]: 403 },
|
|
736
|
+
[_m],
|
|
737
|
+
[0]
|
|
738
|
+
];
|
|
739
|
+
n0_registry.registerError(InvalidSecurity$, InvalidSecurity);
|
|
740
|
+
var KmsAccessDenied$ = [-3, n0, _KAD,
|
|
741
|
+
{ [_aQE]: [`KMS.AccessDeniedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
742
|
+
[_m],
|
|
743
|
+
[0]
|
|
744
|
+
];
|
|
745
|
+
n0_registry.registerError(KmsAccessDenied$, KmsAccessDenied);
|
|
746
|
+
var KmsDisabled$ = [-3, n0, _KD,
|
|
747
|
+
{ [_aQE]: [`KMS.DisabledException`, 400], [_e]: _c, [_hE]: 400 },
|
|
748
|
+
[_m],
|
|
749
|
+
[0]
|
|
750
|
+
];
|
|
751
|
+
n0_registry.registerError(KmsDisabled$, KmsDisabled);
|
|
752
|
+
var KmsInvalidKeyUsage$ = [-3, n0, _KIKU,
|
|
753
|
+
{ [_aQE]: [`KMS.InvalidKeyUsageException`, 400], [_e]: _c, [_hE]: 400 },
|
|
754
|
+
[_m],
|
|
755
|
+
[0]
|
|
756
|
+
];
|
|
757
|
+
n0_registry.registerError(KmsInvalidKeyUsage$, KmsInvalidKeyUsage);
|
|
758
|
+
var KmsInvalidState$ = [-3, n0, _KIS,
|
|
759
|
+
{ [_aQE]: [`KMS.InvalidStateException`, 400], [_e]: _c, [_hE]: 400 },
|
|
760
|
+
[_m],
|
|
761
|
+
[0]
|
|
762
|
+
];
|
|
763
|
+
n0_registry.registerError(KmsInvalidState$, KmsInvalidState);
|
|
764
|
+
var KmsNotFound$ = [-3, n0, _KNF,
|
|
765
|
+
{ [_aQE]: [`KMS.NotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
766
|
+
[_m],
|
|
767
|
+
[0]
|
|
768
|
+
];
|
|
769
|
+
n0_registry.registerError(KmsNotFound$, KmsNotFound);
|
|
770
|
+
var KmsOptInRequired$ = [-3, n0, _KOIR,
|
|
771
|
+
{ [_aQE]: [`KMS.OptInRequired`, 403], [_e]: _c, [_hE]: 403 },
|
|
772
|
+
[_m],
|
|
773
|
+
[0]
|
|
774
|
+
];
|
|
775
|
+
n0_registry.registerError(KmsOptInRequired$, KmsOptInRequired);
|
|
776
|
+
var KmsThrottled$ = [-3, n0, _KT,
|
|
777
|
+
{ [_aQE]: [`KMS.ThrottlingException`, 400], [_e]: _c, [_hE]: 400 },
|
|
778
|
+
[_m],
|
|
779
|
+
[0]
|
|
780
|
+
];
|
|
781
|
+
n0_registry.registerError(KmsThrottled$, KmsThrottled);
|
|
782
|
+
var MessageNotInflight$ = [-3, n0, _MNI,
|
|
783
|
+
{ [_aQE]: [`AWS.SimpleQueueService.MessageNotInflight`, 400], [_e]: _c, [_hE]: 400 },
|
|
784
|
+
[],
|
|
785
|
+
[]
|
|
786
|
+
];
|
|
787
|
+
n0_registry.registerError(MessageNotInflight$, MessageNotInflight);
|
|
788
|
+
var OverLimit$ = [-3, n0, _OL,
|
|
789
|
+
{ [_aQE]: [`OverLimit`, 403], [_e]: _c, [_hE]: 403 },
|
|
790
|
+
[_m],
|
|
791
|
+
[0]
|
|
792
|
+
];
|
|
793
|
+
n0_registry.registerError(OverLimit$, OverLimit);
|
|
794
|
+
var PurgeQueueInProgress$ = [-3, n0, _PQIP,
|
|
795
|
+
{ [_aQE]: [`AWS.SimpleQueueService.PurgeQueueInProgress`, 403], [_e]: _c, [_hE]: 403 },
|
|
796
|
+
[_m],
|
|
797
|
+
[0]
|
|
798
|
+
];
|
|
799
|
+
n0_registry.registerError(PurgeQueueInProgress$, PurgeQueueInProgress);
|
|
800
|
+
var QueueDeletedRecently$ = [-3, n0, _QDR,
|
|
801
|
+
{ [_aQE]: [`AWS.SimpleQueueService.QueueDeletedRecently`, 400], [_e]: _c, [_hE]: 400 },
|
|
802
|
+
[_m],
|
|
803
|
+
[0]
|
|
804
|
+
];
|
|
805
|
+
n0_registry.registerError(QueueDeletedRecently$, QueueDeletedRecently);
|
|
806
|
+
var QueueDoesNotExist$ = [-3, n0, _QDNE,
|
|
807
|
+
{ [_aQE]: [`AWS.SimpleQueueService.NonExistentQueue`, 400], [_e]: _c, [_hE]: 400 },
|
|
808
|
+
[_m],
|
|
809
|
+
[0]
|
|
810
|
+
];
|
|
811
|
+
n0_registry.registerError(QueueDoesNotExist$, QueueDoesNotExist);
|
|
812
|
+
var QueueNameExists$ = [-3, n0, _QNE,
|
|
813
|
+
{ [_aQE]: [`QueueAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
814
|
+
[_m],
|
|
815
|
+
[0]
|
|
816
|
+
];
|
|
817
|
+
n0_registry.registerError(QueueNameExists$, QueueNameExists);
|
|
818
|
+
var ReceiptHandleIsInvalid$ = [-3, n0, _RHII,
|
|
819
|
+
{ [_aQE]: [`ReceiptHandleIsInvalid`, 404], [_e]: _c, [_hE]: 404 },
|
|
820
|
+
[_m],
|
|
821
|
+
[0]
|
|
822
|
+
];
|
|
823
|
+
n0_registry.registerError(ReceiptHandleIsInvalid$, ReceiptHandleIsInvalid);
|
|
824
|
+
var RequestThrottled$ = [-3, n0, _RT,
|
|
825
|
+
{ [_aQE]: [`RequestThrottled`, 403], [_e]: _c, [_hE]: 403 },
|
|
826
|
+
[_m],
|
|
827
|
+
[0]
|
|
828
|
+
];
|
|
829
|
+
n0_registry.registerError(RequestThrottled$, RequestThrottled);
|
|
830
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
831
|
+
{ [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
832
|
+
[_m],
|
|
833
|
+
[0]
|
|
834
|
+
];
|
|
835
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
836
|
+
var TooManyEntriesInBatchRequest$ = [-3, n0, _TMEIBR,
|
|
837
|
+
{ [_aQE]: [`AWS.SimpleQueueService.TooManyEntriesInBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
838
|
+
[_m],
|
|
839
|
+
[0]
|
|
840
|
+
];
|
|
841
|
+
n0_registry.registerError(TooManyEntriesInBatchRequest$, TooManyEntriesInBatchRequest);
|
|
842
|
+
var UnsupportedOperation$ = [-3, n0, _UO,
|
|
843
|
+
{ [_aQE]: [`AWS.SimpleQueueService.UnsupportedOperation`, 400], [_e]: _c, [_hE]: 400 },
|
|
844
|
+
[_m],
|
|
845
|
+
[0]
|
|
846
|
+
];
|
|
847
|
+
n0_registry.registerError(UnsupportedOperation$, UnsupportedOperation);
|
|
848
|
+
const errorTypeRegistries = [
|
|
849
|
+
_s_registry,
|
|
850
|
+
n0_registry,
|
|
851
|
+
];
|
|
852
|
+
var AddPermissionRequest$ = [3, n0, _APR,
|
|
853
|
+
0,
|
|
854
|
+
[_QU, _L, _AWSAI, _A],
|
|
855
|
+
[0, 0, [64 | 0, { [_xF]: 1, [_xN]: _AWSAIc }], [64 | 0, { [_xF]: 1, [_xN]: _AN }]], 4
|
|
856
|
+
];
|
|
857
|
+
var BatchResultErrorEntry$ = [3, n0, _BREE,
|
|
858
|
+
0,
|
|
859
|
+
[_I, _SF, _C, _M],
|
|
860
|
+
[0, 2, 0, 0], 3
|
|
861
|
+
];
|
|
862
|
+
var CancelMessageMoveTaskRequest$ = [3, n0, _CMMTR,
|
|
863
|
+
0,
|
|
864
|
+
[_TH],
|
|
865
|
+
[0], 1
|
|
866
|
+
];
|
|
867
|
+
var CancelMessageMoveTaskResult$ = [3, n0, _CMMTRa,
|
|
868
|
+
0,
|
|
869
|
+
[_ANOMM],
|
|
870
|
+
[1]
|
|
871
|
+
];
|
|
872
|
+
var ChangeMessageVisibilityBatchRequest$ = [3, n0, _CMVBR,
|
|
873
|
+
0,
|
|
874
|
+
[_QU, _E],
|
|
875
|
+
[0, [() => ChangeMessageVisibilityBatchRequestEntryList, { [_xF]: 1, [_xN]: _CMVBRE }]], 2
|
|
876
|
+
];
|
|
877
|
+
var ChangeMessageVisibilityBatchRequestEntry$ = [3, n0, _CMVBRE,
|
|
878
|
+
0,
|
|
879
|
+
[_I, _RH, _VT],
|
|
880
|
+
[0, 0, 1], 2
|
|
881
|
+
];
|
|
882
|
+
var ChangeMessageVisibilityBatchResult$ = [3, n0, _CMVBRh,
|
|
883
|
+
0,
|
|
884
|
+
[_S, _F],
|
|
885
|
+
[[() => ChangeMessageVisibilityBatchResultEntryList, { [_xF]: 1, [_xN]: _CMVBREh }], [() => BatchResultErrorEntryList, { [_xF]: 1, [_xN]: _BREE }]], 2
|
|
886
|
+
];
|
|
887
|
+
var ChangeMessageVisibilityBatchResultEntry$ = [3, n0, _CMVBREh,
|
|
888
|
+
0,
|
|
889
|
+
[_I],
|
|
890
|
+
[0], 1
|
|
891
|
+
];
|
|
892
|
+
var ChangeMessageVisibilityRequest$ = [3, n0, _CMVR,
|
|
893
|
+
0,
|
|
894
|
+
[_QU, _RH, _VT],
|
|
895
|
+
[0, 0, 1], 3
|
|
896
|
+
];
|
|
897
|
+
var CreateQueueRequest$ = [3, n0, _CQR,
|
|
898
|
+
0,
|
|
899
|
+
[_QN, _At, _t],
|
|
900
|
+
[0, [() => QueueAttributeMap, { [_xF]: 1, [_xN]: _Att }], [() => TagMap, { [_xF]: 1, [_xN]: _T }]], 1
|
|
901
|
+
];
|
|
902
|
+
var CreateQueueResult$ = [3, n0, _CQRr,
|
|
903
|
+
0,
|
|
904
|
+
[_QU],
|
|
905
|
+
[0]
|
|
906
|
+
];
|
|
907
|
+
var DeleteMessageBatchRequest$ = [3, n0, _DMBR,
|
|
908
|
+
0,
|
|
909
|
+
[_QU, _E],
|
|
910
|
+
[0, [() => DeleteMessageBatchRequestEntryList, { [_xF]: 1, [_xN]: _DMBRE }]], 2
|
|
911
|
+
];
|
|
912
|
+
var DeleteMessageBatchRequestEntry$ = [3, n0, _DMBRE,
|
|
913
|
+
0,
|
|
914
|
+
[_I, _RH],
|
|
915
|
+
[0, 0], 2
|
|
916
|
+
];
|
|
917
|
+
var DeleteMessageBatchResult$ = [3, n0, _DMBRe,
|
|
918
|
+
0,
|
|
919
|
+
[_S, _F],
|
|
920
|
+
[[() => DeleteMessageBatchResultEntryList, { [_xF]: 1, [_xN]: _DMBREe }], [() => BatchResultErrorEntryList, { [_xF]: 1, [_xN]: _BREE }]], 2
|
|
921
|
+
];
|
|
922
|
+
var DeleteMessageBatchResultEntry$ = [3, n0, _DMBREe,
|
|
923
|
+
0,
|
|
924
|
+
[_I],
|
|
925
|
+
[0], 1
|
|
926
|
+
];
|
|
927
|
+
var DeleteMessageRequest$ = [3, n0, _DMR,
|
|
928
|
+
0,
|
|
929
|
+
[_QU, _RH],
|
|
930
|
+
[0, 0], 2
|
|
931
|
+
];
|
|
932
|
+
var DeleteQueueRequest$ = [3, n0, _DQR,
|
|
933
|
+
0,
|
|
934
|
+
[_QU],
|
|
935
|
+
[0], 1
|
|
936
|
+
];
|
|
937
|
+
var GetQueueAttributesRequest$ = [3, n0, _GQAR,
|
|
938
|
+
0,
|
|
939
|
+
[_QU, _ANt],
|
|
940
|
+
[0, [64 | 0, { [_xF]: 1, [_xN]: _ANtt }]], 1
|
|
941
|
+
];
|
|
942
|
+
var GetQueueAttributesResult$ = [3, n0, _GQARe,
|
|
943
|
+
0,
|
|
944
|
+
[_At],
|
|
945
|
+
[[() => QueueAttributeMap, { [_xF]: 1, [_xN]: _Att }]]
|
|
946
|
+
];
|
|
947
|
+
var GetQueueUrlRequest$ = [3, n0, _GQUR,
|
|
948
|
+
0,
|
|
949
|
+
[_QN, _QOAWSAI],
|
|
950
|
+
[0, 0], 1
|
|
951
|
+
];
|
|
952
|
+
var GetQueueUrlResult$ = [3, n0, _GQURe,
|
|
953
|
+
0,
|
|
954
|
+
[_QU],
|
|
955
|
+
[0]
|
|
956
|
+
];
|
|
957
|
+
var ListDeadLetterSourceQueuesRequest$ = [3, n0, _LDLSQR,
|
|
958
|
+
0,
|
|
959
|
+
[_QU, _NT, _MR],
|
|
960
|
+
[0, 0, 1], 1
|
|
961
|
+
];
|
|
962
|
+
var ListDeadLetterSourceQueuesResult$ = [3, n0, _LDLSQRi,
|
|
963
|
+
0,
|
|
964
|
+
[_qU, _NT],
|
|
965
|
+
[[64 | 0, { [_xF]: 1, [_xN]: _QU }], 0], 1
|
|
966
|
+
];
|
|
967
|
+
var ListMessageMoveTasksRequest$ = [3, n0, _LMMTR,
|
|
968
|
+
0,
|
|
969
|
+
[_SA, _MR],
|
|
970
|
+
[0, 1], 1
|
|
971
|
+
];
|
|
972
|
+
var ListMessageMoveTasksResult$ = [3, n0, _LMMTRi,
|
|
973
|
+
{ [_xN]: _LMMTRi },
|
|
974
|
+
[_R],
|
|
975
|
+
[[() => ListMessageMoveTasksResultEntryList, { [_xF]: 1, [_xN]: _LMMTRE }]]
|
|
976
|
+
];
|
|
977
|
+
var ListMessageMoveTasksResultEntry$ = [3, n0, _LMMTRE,
|
|
978
|
+
0,
|
|
979
|
+
[_TH, _St, _SA, _DA, _MNOMPS, _ANOMM, _ANOMTM, _FR, _ST],
|
|
980
|
+
[0, 0, 0, 0, 1, 1, 1, 0, 1]
|
|
981
|
+
];
|
|
982
|
+
var ListQueuesRequest$ = [3, n0, _LQR,
|
|
983
|
+
0,
|
|
984
|
+
[_QNP, _NT, _MR],
|
|
985
|
+
[0, 0, 1]
|
|
986
|
+
];
|
|
987
|
+
var ListQueuesResult$ = [3, n0, _LQRi,
|
|
988
|
+
0,
|
|
989
|
+
[_QUu, _NT],
|
|
990
|
+
[[64 | 0, { [_xF]: 1, [_xN]: _QU }], 0]
|
|
991
|
+
];
|
|
992
|
+
var ListQueueTagsRequest$ = [3, n0, _LQTR,
|
|
993
|
+
0,
|
|
994
|
+
[_QU],
|
|
995
|
+
[0], 1
|
|
996
|
+
];
|
|
997
|
+
var ListQueueTagsResult$ = [3, n0, _LQTRi,
|
|
998
|
+
0,
|
|
999
|
+
[_Ta],
|
|
1000
|
+
[[() => TagMap, { [_xF]: 1, [_xN]: _T }]]
|
|
1001
|
+
];
|
|
1002
|
+
var Message$ = [3, n0, _M,
|
|
1003
|
+
0,
|
|
1004
|
+
[_MI, _RH, _MDOB, _B, _At, _MDOMA, _MA],
|
|
1005
|
+
[0, 0, 0, 0, [() => MessageSystemAttributeMap, { [_xF]: 1, [_xN]: _Att }], 0, [() => MessageBodyAttributeMap, { [_xF]: 1, [_xN]: _MAe }]]
|
|
1006
|
+
];
|
|
1007
|
+
var MessageAttributeValue$ = [3, n0, _MAV,
|
|
1008
|
+
0,
|
|
1009
|
+
[_DT, _SV, _BV, _SLV, _BLV],
|
|
1010
|
+
[0, 0, 21, [() => StringList, { [_xF]: 1, [_xN]: _SLVt }], [() => BinaryList, { [_xF]: 1, [_xN]: _BLVi }]], 1
|
|
1011
|
+
];
|
|
1012
|
+
var MessageSystemAttributeValue$ = [3, n0, _MSAV,
|
|
1013
|
+
0,
|
|
1014
|
+
[_DT, _SV, _BV, _SLV, _BLV],
|
|
1015
|
+
[0, 0, 21, [() => StringList, { [_xF]: 1, [_xN]: _SLVt }], [() => BinaryList, { [_xF]: 1, [_xN]: _BLVi }]], 1
|
|
1016
|
+
];
|
|
1017
|
+
var PurgeQueueRequest$ = [3, n0, _PQR,
|
|
1018
|
+
0,
|
|
1019
|
+
[_QU],
|
|
1020
|
+
[0], 1
|
|
1021
|
+
];
|
|
1022
|
+
var ReceiveMessageRequest$ = [3, n0, _RMR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_QU, _ANt, _MSAN, _MAN, _MNOM, _VT, _WTS, _RRAI],
|
|
1025
|
+
[0, [64 | 0, { [_xF]: 1, [_xN]: _ANtt }], [64 | 0, { [_xF]: 1, [_xN]: _ANtt }], [64 | 0, { [_xF]: 1, [_xN]: _MANe }], 1, 1, 1, 0], 1
|
|
1026
|
+
];
|
|
1027
|
+
var ReceiveMessageResult$ = [3, n0, _RMRe,
|
|
1028
|
+
0,
|
|
1029
|
+
[_Me],
|
|
1030
|
+
[[() => MessageList, { [_xF]: 1, [_xN]: _M }]]
|
|
1031
|
+
];
|
|
1032
|
+
var RemovePermissionRequest$ = [3, n0, _RPR,
|
|
1033
|
+
0,
|
|
1034
|
+
[_QU, _L],
|
|
1035
|
+
[0, 0], 2
|
|
1036
|
+
];
|
|
1037
|
+
var SendMessageBatchRequest$ = [3, n0, _SMBR,
|
|
1038
|
+
0,
|
|
1039
|
+
[_QU, _E],
|
|
1040
|
+
[0, [() => SendMessageBatchRequestEntryList, { [_xF]: 1, [_xN]: _SMBRE }]], 2
|
|
1041
|
+
];
|
|
1042
|
+
var SendMessageBatchRequestEntry$ = [3, n0, _SMBRE,
|
|
1043
|
+
0,
|
|
1044
|
+
[_I, _MB, _DS, _MA, _MSA, _MDI, _MGI],
|
|
1045
|
+
[0, 0, 1, [() => MessageBodyAttributeMap, { [_xF]: 1, [_xN]: _MAe }], [() => MessageBodySystemAttributeMap, { [_xF]: 1, [_xN]: _MSAe }], 0, 0], 2
|
|
1046
|
+
];
|
|
1047
|
+
var SendMessageBatchResult$ = [3, n0, _SMBRe,
|
|
1048
|
+
0,
|
|
1049
|
+
[_S, _F],
|
|
1050
|
+
[[() => SendMessageBatchResultEntryList, { [_xF]: 1, [_xN]: _SMBREe }], [() => BatchResultErrorEntryList, { [_xF]: 1, [_xN]: _BREE }]], 2
|
|
1051
|
+
];
|
|
1052
|
+
var SendMessageBatchResultEntry$ = [3, n0, _SMBREe,
|
|
1053
|
+
0,
|
|
1054
|
+
[_I, _MI, _MDOMB, _MDOMA, _MDOMSA, _SN],
|
|
1055
|
+
[0, 0, 0, 0, 0, 0], 3
|
|
1056
|
+
];
|
|
1057
|
+
var SendMessageRequest$ = [3, n0, _SMR,
|
|
1058
|
+
0,
|
|
1059
|
+
[_QU, _MB, _DS, _MA, _MSA, _MDI, _MGI],
|
|
1060
|
+
[0, 0, 1, [() => MessageBodyAttributeMap, { [_xF]: 1, [_xN]: _MAe }], [() => MessageBodySystemAttributeMap, { [_xF]: 1, [_xN]: _MSAe }], 0, 0], 2
|
|
1061
|
+
];
|
|
1062
|
+
var SendMessageResult$ = [3, n0, _SMRe,
|
|
1063
|
+
0,
|
|
1064
|
+
[_MDOMB, _MDOMA, _MDOMSA, _MI, _SN],
|
|
1065
|
+
[0, 0, 0, 0, 0]
|
|
1066
|
+
];
|
|
1067
|
+
var SetQueueAttributesRequest$ = [3, n0, _SQAR,
|
|
1068
|
+
0,
|
|
1069
|
+
[_QU, _At],
|
|
1070
|
+
[0, [() => QueueAttributeMap, { [_xF]: 1, [_xN]: _Att }]], 2
|
|
1071
|
+
];
|
|
1072
|
+
var StartMessageMoveTaskRequest$ = [3, n0, _SMMTR,
|
|
1073
|
+
0,
|
|
1074
|
+
[_SA, _DA, _MNOMPS],
|
|
1075
|
+
[0, 0, 1], 1
|
|
1076
|
+
];
|
|
1077
|
+
var StartMessageMoveTaskResult$ = [3, n0, _SMMTRt,
|
|
1078
|
+
0,
|
|
1079
|
+
[_TH],
|
|
1080
|
+
[0]
|
|
1081
|
+
];
|
|
1082
|
+
var TagQueueRequest$ = [3, n0, _TQR,
|
|
1083
|
+
0,
|
|
1084
|
+
[_QU, _Ta],
|
|
1085
|
+
[0, [() => TagMap, { [_xF]: 1, [_xN]: _T }]], 2
|
|
1086
|
+
];
|
|
1087
|
+
var UntagQueueRequest$ = [3, n0, _UQR,
|
|
1088
|
+
0,
|
|
1089
|
+
[_QU, _TK],
|
|
1090
|
+
[0, [64 | 0, { [_xF]: 1, [_xN]: _TKa }]], 2
|
|
1091
|
+
];
|
|
1092
|
+
var __Unit = "unit";
|
|
1093
|
+
var BatchResultErrorEntryList = [1, n0, _BREEL,
|
|
1094
|
+
0, () => BatchResultErrorEntry$
|
|
1095
|
+
];
|
|
1096
|
+
var BinaryList = [1, n0, _BL,
|
|
1097
|
+
0, [21,
|
|
1098
|
+
{ [_xN]: _BLVi }]
|
|
1099
|
+
];
|
|
1100
|
+
var ChangeMessageVisibilityBatchRequestEntryList = [1, n0, _CMVBREL,
|
|
1101
|
+
0, () => ChangeMessageVisibilityBatchRequestEntry$
|
|
1102
|
+
];
|
|
1103
|
+
var ChangeMessageVisibilityBatchResultEntryList = [1, n0, _CMVBRELh,
|
|
1104
|
+
0, () => ChangeMessageVisibilityBatchResultEntry$
|
|
1105
|
+
];
|
|
1106
|
+
var DeleteMessageBatchRequestEntryList = [1, n0, _DMBREL,
|
|
1107
|
+
0, () => DeleteMessageBatchRequestEntry$
|
|
1108
|
+
];
|
|
1109
|
+
var DeleteMessageBatchResultEntryList = [1, n0, _DMBRELe,
|
|
1110
|
+
0, () => DeleteMessageBatchResultEntry$
|
|
1111
|
+
];
|
|
1112
|
+
var ListMessageMoveTasksResultEntryList = [1, n0, _LMMTREL,
|
|
1113
|
+
0, () => ListMessageMoveTasksResultEntry$
|
|
1114
|
+
];
|
|
1115
|
+
var MessageList = [1, n0, _ML,
|
|
1116
|
+
0, [() => Message$,
|
|
1117
|
+
0]
|
|
1118
|
+
];
|
|
1119
|
+
var SendMessageBatchRequestEntryList = [1, n0, _SMBREL,
|
|
1120
|
+
0, [() => SendMessageBatchRequestEntry$,
|
|
1121
|
+
0]
|
|
1122
|
+
];
|
|
1123
|
+
var SendMessageBatchResultEntryList = [1, n0, _SMBRELe,
|
|
1124
|
+
0, () => SendMessageBatchResultEntry$
|
|
1125
|
+
];
|
|
1126
|
+
var StringList = [1, n0, _SL,
|
|
1127
|
+
0, [0,
|
|
1128
|
+
{ [_xN]: _SLVt }]
|
|
1129
|
+
];
|
|
1130
|
+
var MessageBodyAttributeMap = [2, n0, _MBAM,
|
|
1131
|
+
0, [0,
|
|
1132
|
+
{ [_xN]: _N }],
|
|
1133
|
+
[() => MessageAttributeValue$,
|
|
1134
|
+
{ [_xN]: _V }]
|
|
1135
|
+
];
|
|
1136
|
+
var MessageBodySystemAttributeMap = [2, n0, _MBSAM,
|
|
1137
|
+
0, [0,
|
|
1138
|
+
{ [_xN]: _N }],
|
|
1139
|
+
[() => MessageSystemAttributeValue$,
|
|
1140
|
+
{ [_xN]: _V }]
|
|
1141
|
+
];
|
|
1142
|
+
var MessageSystemAttributeMap = [2, n0, _MSAM,
|
|
1143
|
+
0, [0,
|
|
1144
|
+
{ [_xN]: _N }],
|
|
1145
|
+
[0,
|
|
1146
|
+
{ [_xN]: _V }]
|
|
1147
|
+
];
|
|
1148
|
+
var QueueAttributeMap = [2, n0, _QAM,
|
|
1149
|
+
0, [0,
|
|
1150
|
+
{ [_xN]: _N }],
|
|
1151
|
+
[0,
|
|
1152
|
+
{ [_xN]: _V }]
|
|
1153
|
+
];
|
|
1154
|
+
var TagMap = [2, n0, _TM,
|
|
1155
|
+
0, [0,
|
|
1156
|
+
{ [_xN]: _K }],
|
|
1157
|
+
[0,
|
|
1158
|
+
{ [_xN]: _V }]
|
|
1159
|
+
];
|
|
1160
|
+
var AddPermission$ = [9, n0, _AP,
|
|
1161
|
+
0, () => AddPermissionRequest$, () => __Unit
|
|
1162
|
+
];
|
|
1163
|
+
var CancelMessageMoveTask$ = [9, n0, _CMMT,
|
|
1164
|
+
0, () => CancelMessageMoveTaskRequest$, () => CancelMessageMoveTaskResult$
|
|
1165
|
+
];
|
|
1166
|
+
var ChangeMessageVisibility$ = [9, n0, _CMV,
|
|
1167
|
+
0, () => ChangeMessageVisibilityRequest$, () => __Unit
|
|
1168
|
+
];
|
|
1169
|
+
var ChangeMessageVisibilityBatch$ = [9, n0, _CMVB,
|
|
1170
|
+
0, () => ChangeMessageVisibilityBatchRequest$, () => ChangeMessageVisibilityBatchResult$
|
|
1171
|
+
];
|
|
1172
|
+
var CreateQueue$ = [9, n0, _CQ,
|
|
1173
|
+
0, () => CreateQueueRequest$, () => CreateQueueResult$
|
|
1174
|
+
];
|
|
1175
|
+
var DeleteMessage$ = [9, n0, _DM,
|
|
1176
|
+
0, () => DeleteMessageRequest$, () => __Unit
|
|
1177
|
+
];
|
|
1178
|
+
var DeleteMessageBatch$ = [9, n0, _DMB,
|
|
1179
|
+
0, () => DeleteMessageBatchRequest$, () => DeleteMessageBatchResult$
|
|
1180
|
+
];
|
|
1181
|
+
var DeleteQueue$ = [9, n0, _DQ,
|
|
1182
|
+
0, () => DeleteQueueRequest$, () => __Unit
|
|
1183
|
+
];
|
|
1184
|
+
var GetQueueAttributes$ = [9, n0, _GQA,
|
|
1185
|
+
0, () => GetQueueAttributesRequest$, () => GetQueueAttributesResult$
|
|
1186
|
+
];
|
|
1187
|
+
var GetQueueUrl$ = [9, n0, _GQU,
|
|
1188
|
+
0, () => GetQueueUrlRequest$, () => GetQueueUrlResult$
|
|
1189
|
+
];
|
|
1190
|
+
var ListDeadLetterSourceQueues$ = [9, n0, _LDLSQ,
|
|
1191
|
+
0, () => ListDeadLetterSourceQueuesRequest$, () => ListDeadLetterSourceQueuesResult$
|
|
1192
|
+
];
|
|
1193
|
+
var ListMessageMoveTasks$ = [9, n0, _LMMT,
|
|
1194
|
+
0, () => ListMessageMoveTasksRequest$, () => ListMessageMoveTasksResult$
|
|
1195
|
+
];
|
|
1196
|
+
var ListQueues$ = [9, n0, _LQ,
|
|
1197
|
+
0, () => ListQueuesRequest$, () => ListQueuesResult$
|
|
1198
|
+
];
|
|
1199
|
+
var ListQueueTags$ = [9, n0, _LQT,
|
|
1200
|
+
0, () => ListQueueTagsRequest$, () => ListQueueTagsResult$
|
|
1201
|
+
];
|
|
1202
|
+
var PurgeQueue$ = [9, n0, _PQ,
|
|
1203
|
+
0, () => PurgeQueueRequest$, () => __Unit
|
|
1204
|
+
];
|
|
1205
|
+
var ReceiveMessage$ = [9, n0, _RM,
|
|
1206
|
+
0, () => ReceiveMessageRequest$, () => ReceiveMessageResult$
|
|
1207
|
+
];
|
|
1208
|
+
var RemovePermission$ = [9, n0, _RP,
|
|
1209
|
+
0, () => RemovePermissionRequest$, () => __Unit
|
|
1210
|
+
];
|
|
1211
|
+
var SendMessage$ = [9, n0, _SM,
|
|
1212
|
+
0, () => SendMessageRequest$, () => SendMessageResult$
|
|
1213
|
+
];
|
|
1214
|
+
var SendMessageBatch$ = [9, n0, _SMB,
|
|
1215
|
+
0, () => SendMessageBatchRequest$, () => SendMessageBatchResult$
|
|
1216
|
+
];
|
|
1217
|
+
var SetQueueAttributes$ = [9, n0, _SQA,
|
|
1218
|
+
0, () => SetQueueAttributesRequest$, () => __Unit
|
|
1219
|
+
];
|
|
1220
|
+
var StartMessageMoveTask$ = [9, n0, _SMMT,
|
|
1221
|
+
0, () => StartMessageMoveTaskRequest$, () => StartMessageMoveTaskResult$
|
|
1222
|
+
];
|
|
1223
|
+
var TagQueue$ = [9, n0, _TQ,
|
|
1224
|
+
0, () => TagQueueRequest$, () => __Unit
|
|
1225
|
+
];
|
|
1226
|
+
var UntagQueue$ = [9, n0, _UQ,
|
|
1227
|
+
0, () => UntagQueueRequest$, () => __Unit
|
|
1228
|
+
];
|
|
1229
|
+
|
|
1230
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1231
|
+
return {
|
|
1232
|
+
apiVersion: "2012-11-05",
|
|
1233
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1234
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1235
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1236
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1237
|
+
extensions: config?.extensions ?? [],
|
|
1238
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSQSHttpAuthSchemeProvider,
|
|
1239
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1240
|
+
{
|
|
1241
|
+
schemeId: "aws.auth#sigv4",
|
|
1242
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1243
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1244
|
+
},
|
|
1245
|
+
],
|
|
1246
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1247
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1248
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1249
|
+
defaultNamespace: "com.amazonaws.sqs",
|
|
1250
|
+
errorTypeRegistries,
|
|
1251
|
+
version: "2012-11-05",
|
|
1252
|
+
serviceTarget: "AmazonSQS",
|
|
1253
|
+
awsQueryCompatible: true,
|
|
1254
|
+
},
|
|
1255
|
+
serviceId: config?.serviceId ?? "SQS",
|
|
1256
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1257
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1258
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
|
|
1262
|
+
const getRuntimeConfig = (config) => {
|
|
1263
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1264
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1265
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1266
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1267
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1268
|
+
const loaderConfig = {
|
|
1269
|
+
profile: config?.profile,
|
|
1270
|
+
logger: clientSharedValues.logger,
|
|
1271
|
+
};
|
|
1272
|
+
return {
|
|
1273
|
+
...clientSharedValues,
|
|
1274
|
+
...config,
|
|
1275
|
+
runtime: "node",
|
|
1276
|
+
defaultsMode,
|
|
1277
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1278
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1279
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1280
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1281
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1282
|
+
md5: config?.md5 ?? Hash.bind(null, "md5"),
|
|
1283
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1284
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1285
|
+
retryMode: config?.retryMode ??
|
|
1286
|
+
loadConfig({
|
|
1287
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1288
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1289
|
+
}, config),
|
|
1290
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1291
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1292
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1293
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1294
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1295
|
+
};
|
|
1296
|
+
};
|
|
1297
|
+
|
|
35
1298
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
36
1299
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
37
1300
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -477,33 +1740,163 @@ const MessageSystemAttributeNameForSends = {
|
|
|
477
1740
|
AWSTraceHeader: "AWSTraceHeader",
|
|
478
1741
|
};
|
|
479
1742
|
|
|
1743
|
+
exports.AddPermission$ = AddPermission$;
|
|
480
1744
|
exports.AddPermissionCommand = AddPermissionCommand;
|
|
1745
|
+
exports.AddPermissionRequest$ = AddPermissionRequest$;
|
|
1746
|
+
exports.BatchEntryIdsNotDistinct = BatchEntryIdsNotDistinct;
|
|
1747
|
+
exports.BatchEntryIdsNotDistinct$ = BatchEntryIdsNotDistinct$;
|
|
1748
|
+
exports.BatchRequestTooLong = BatchRequestTooLong;
|
|
1749
|
+
exports.BatchRequestTooLong$ = BatchRequestTooLong$;
|
|
1750
|
+
exports.BatchResultErrorEntry$ = BatchResultErrorEntry$;
|
|
1751
|
+
exports.CancelMessageMoveTask$ = CancelMessageMoveTask$;
|
|
481
1752
|
exports.CancelMessageMoveTaskCommand = CancelMessageMoveTaskCommand;
|
|
1753
|
+
exports.CancelMessageMoveTaskRequest$ = CancelMessageMoveTaskRequest$;
|
|
1754
|
+
exports.CancelMessageMoveTaskResult$ = CancelMessageMoveTaskResult$;
|
|
1755
|
+
exports.ChangeMessageVisibility$ = ChangeMessageVisibility$;
|
|
1756
|
+
exports.ChangeMessageVisibilityBatch$ = ChangeMessageVisibilityBatch$;
|
|
482
1757
|
exports.ChangeMessageVisibilityBatchCommand = ChangeMessageVisibilityBatchCommand;
|
|
1758
|
+
exports.ChangeMessageVisibilityBatchRequest$ = ChangeMessageVisibilityBatchRequest$;
|
|
1759
|
+
exports.ChangeMessageVisibilityBatchRequestEntry$ = ChangeMessageVisibilityBatchRequestEntry$;
|
|
1760
|
+
exports.ChangeMessageVisibilityBatchResult$ = ChangeMessageVisibilityBatchResult$;
|
|
1761
|
+
exports.ChangeMessageVisibilityBatchResultEntry$ = ChangeMessageVisibilityBatchResultEntry$;
|
|
483
1762
|
exports.ChangeMessageVisibilityCommand = ChangeMessageVisibilityCommand;
|
|
1763
|
+
exports.ChangeMessageVisibilityRequest$ = ChangeMessageVisibilityRequest$;
|
|
1764
|
+
exports.CreateQueue$ = CreateQueue$;
|
|
484
1765
|
exports.CreateQueueCommand = CreateQueueCommand;
|
|
1766
|
+
exports.CreateQueueRequest$ = CreateQueueRequest$;
|
|
1767
|
+
exports.CreateQueueResult$ = CreateQueueResult$;
|
|
1768
|
+
exports.DeleteMessage$ = DeleteMessage$;
|
|
1769
|
+
exports.DeleteMessageBatch$ = DeleteMessageBatch$;
|
|
485
1770
|
exports.DeleteMessageBatchCommand = DeleteMessageBatchCommand;
|
|
1771
|
+
exports.DeleteMessageBatchRequest$ = DeleteMessageBatchRequest$;
|
|
1772
|
+
exports.DeleteMessageBatchRequestEntry$ = DeleteMessageBatchRequestEntry$;
|
|
1773
|
+
exports.DeleteMessageBatchResult$ = DeleteMessageBatchResult$;
|
|
1774
|
+
exports.DeleteMessageBatchResultEntry$ = DeleteMessageBatchResultEntry$;
|
|
486
1775
|
exports.DeleteMessageCommand = DeleteMessageCommand;
|
|
1776
|
+
exports.DeleteMessageRequest$ = DeleteMessageRequest$;
|
|
1777
|
+
exports.DeleteQueue$ = DeleteQueue$;
|
|
487
1778
|
exports.DeleteQueueCommand = DeleteQueueCommand;
|
|
1779
|
+
exports.DeleteQueueRequest$ = DeleteQueueRequest$;
|
|
1780
|
+
exports.EmptyBatchRequest = EmptyBatchRequest;
|
|
1781
|
+
exports.EmptyBatchRequest$ = EmptyBatchRequest$;
|
|
1782
|
+
exports.GetQueueAttributes$ = GetQueueAttributes$;
|
|
488
1783
|
exports.GetQueueAttributesCommand = GetQueueAttributesCommand;
|
|
1784
|
+
exports.GetQueueAttributesRequest$ = GetQueueAttributesRequest$;
|
|
1785
|
+
exports.GetQueueAttributesResult$ = GetQueueAttributesResult$;
|
|
1786
|
+
exports.GetQueueUrl$ = GetQueueUrl$;
|
|
489
1787
|
exports.GetQueueUrlCommand = GetQueueUrlCommand;
|
|
1788
|
+
exports.GetQueueUrlRequest$ = GetQueueUrlRequest$;
|
|
1789
|
+
exports.GetQueueUrlResult$ = GetQueueUrlResult$;
|
|
1790
|
+
exports.InvalidAddress = InvalidAddress;
|
|
1791
|
+
exports.InvalidAddress$ = InvalidAddress$;
|
|
1792
|
+
exports.InvalidAttributeName = InvalidAttributeName;
|
|
1793
|
+
exports.InvalidAttributeName$ = InvalidAttributeName$;
|
|
1794
|
+
exports.InvalidAttributeValue = InvalidAttributeValue;
|
|
1795
|
+
exports.InvalidAttributeValue$ = InvalidAttributeValue$;
|
|
1796
|
+
exports.InvalidBatchEntryId = InvalidBatchEntryId;
|
|
1797
|
+
exports.InvalidBatchEntryId$ = InvalidBatchEntryId$;
|
|
1798
|
+
exports.InvalidIdFormat = InvalidIdFormat;
|
|
1799
|
+
exports.InvalidIdFormat$ = InvalidIdFormat$;
|
|
1800
|
+
exports.InvalidMessageContents = InvalidMessageContents;
|
|
1801
|
+
exports.InvalidMessageContents$ = InvalidMessageContents$;
|
|
1802
|
+
exports.InvalidSecurity = InvalidSecurity;
|
|
1803
|
+
exports.InvalidSecurity$ = InvalidSecurity$;
|
|
1804
|
+
exports.KmsAccessDenied = KmsAccessDenied;
|
|
1805
|
+
exports.KmsAccessDenied$ = KmsAccessDenied$;
|
|
1806
|
+
exports.KmsDisabled = KmsDisabled;
|
|
1807
|
+
exports.KmsDisabled$ = KmsDisabled$;
|
|
1808
|
+
exports.KmsInvalidKeyUsage = KmsInvalidKeyUsage;
|
|
1809
|
+
exports.KmsInvalidKeyUsage$ = KmsInvalidKeyUsage$;
|
|
1810
|
+
exports.KmsInvalidState = KmsInvalidState;
|
|
1811
|
+
exports.KmsInvalidState$ = KmsInvalidState$;
|
|
1812
|
+
exports.KmsNotFound = KmsNotFound;
|
|
1813
|
+
exports.KmsNotFound$ = KmsNotFound$;
|
|
1814
|
+
exports.KmsOptInRequired = KmsOptInRequired;
|
|
1815
|
+
exports.KmsOptInRequired$ = KmsOptInRequired$;
|
|
1816
|
+
exports.KmsThrottled = KmsThrottled;
|
|
1817
|
+
exports.KmsThrottled$ = KmsThrottled$;
|
|
1818
|
+
exports.ListDeadLetterSourceQueues$ = ListDeadLetterSourceQueues$;
|
|
490
1819
|
exports.ListDeadLetterSourceQueuesCommand = ListDeadLetterSourceQueuesCommand;
|
|
1820
|
+
exports.ListDeadLetterSourceQueuesRequest$ = ListDeadLetterSourceQueuesRequest$;
|
|
1821
|
+
exports.ListDeadLetterSourceQueuesResult$ = ListDeadLetterSourceQueuesResult$;
|
|
1822
|
+
exports.ListMessageMoveTasks$ = ListMessageMoveTasks$;
|
|
491
1823
|
exports.ListMessageMoveTasksCommand = ListMessageMoveTasksCommand;
|
|
1824
|
+
exports.ListMessageMoveTasksRequest$ = ListMessageMoveTasksRequest$;
|
|
1825
|
+
exports.ListMessageMoveTasksResult$ = ListMessageMoveTasksResult$;
|
|
1826
|
+
exports.ListMessageMoveTasksResultEntry$ = ListMessageMoveTasksResultEntry$;
|
|
1827
|
+
exports.ListQueueTags$ = ListQueueTags$;
|
|
492
1828
|
exports.ListQueueTagsCommand = ListQueueTagsCommand;
|
|
1829
|
+
exports.ListQueueTagsRequest$ = ListQueueTagsRequest$;
|
|
1830
|
+
exports.ListQueueTagsResult$ = ListQueueTagsResult$;
|
|
1831
|
+
exports.ListQueues$ = ListQueues$;
|
|
493
1832
|
exports.ListQueuesCommand = ListQueuesCommand;
|
|
1833
|
+
exports.ListQueuesRequest$ = ListQueuesRequest$;
|
|
1834
|
+
exports.ListQueuesResult$ = ListQueuesResult$;
|
|
1835
|
+
exports.Message$ = Message$;
|
|
1836
|
+
exports.MessageAttributeValue$ = MessageAttributeValue$;
|
|
1837
|
+
exports.MessageNotInflight = MessageNotInflight;
|
|
1838
|
+
exports.MessageNotInflight$ = MessageNotInflight$;
|
|
494
1839
|
exports.MessageSystemAttributeName = MessageSystemAttributeName;
|
|
495
1840
|
exports.MessageSystemAttributeNameForSends = MessageSystemAttributeNameForSends;
|
|
1841
|
+
exports.MessageSystemAttributeValue$ = MessageSystemAttributeValue$;
|
|
1842
|
+
exports.OverLimit = OverLimit;
|
|
1843
|
+
exports.OverLimit$ = OverLimit$;
|
|
1844
|
+
exports.PurgeQueue$ = PurgeQueue$;
|
|
496
1845
|
exports.PurgeQueueCommand = PurgeQueueCommand;
|
|
1846
|
+
exports.PurgeQueueInProgress = PurgeQueueInProgress;
|
|
1847
|
+
exports.PurgeQueueInProgress$ = PurgeQueueInProgress$;
|
|
1848
|
+
exports.PurgeQueueRequest$ = PurgeQueueRequest$;
|
|
497
1849
|
exports.QueueAttributeName = QueueAttributeName;
|
|
1850
|
+
exports.QueueDeletedRecently = QueueDeletedRecently;
|
|
1851
|
+
exports.QueueDeletedRecently$ = QueueDeletedRecently$;
|
|
1852
|
+
exports.QueueDoesNotExist = QueueDoesNotExist;
|
|
1853
|
+
exports.QueueDoesNotExist$ = QueueDoesNotExist$;
|
|
1854
|
+
exports.QueueNameExists = QueueNameExists;
|
|
1855
|
+
exports.QueueNameExists$ = QueueNameExists$;
|
|
1856
|
+
exports.ReceiptHandleIsInvalid = ReceiptHandleIsInvalid;
|
|
1857
|
+
exports.ReceiptHandleIsInvalid$ = ReceiptHandleIsInvalid$;
|
|
1858
|
+
exports.ReceiveMessage$ = ReceiveMessage$;
|
|
498
1859
|
exports.ReceiveMessageCommand = ReceiveMessageCommand;
|
|
1860
|
+
exports.ReceiveMessageRequest$ = ReceiveMessageRequest$;
|
|
1861
|
+
exports.ReceiveMessageResult$ = ReceiveMessageResult$;
|
|
1862
|
+
exports.RemovePermission$ = RemovePermission$;
|
|
499
1863
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
1864
|
+
exports.RemovePermissionRequest$ = RemovePermissionRequest$;
|
|
1865
|
+
exports.RequestThrottled = RequestThrottled;
|
|
1866
|
+
exports.RequestThrottled$ = RequestThrottled$;
|
|
1867
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1868
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
500
1869
|
exports.SQS = SQS;
|
|
501
1870
|
exports.SQSClient = SQSClient;
|
|
1871
|
+
exports.SQSServiceException = SQSServiceException;
|
|
1872
|
+
exports.SQSServiceException$ = SQSServiceException$;
|
|
1873
|
+
exports.SendMessage$ = SendMessage$;
|
|
1874
|
+
exports.SendMessageBatch$ = SendMessageBatch$;
|
|
502
1875
|
exports.SendMessageBatchCommand = SendMessageBatchCommand;
|
|
1876
|
+
exports.SendMessageBatchRequest$ = SendMessageBatchRequest$;
|
|
1877
|
+
exports.SendMessageBatchRequestEntry$ = SendMessageBatchRequestEntry$;
|
|
1878
|
+
exports.SendMessageBatchResult$ = SendMessageBatchResult$;
|
|
1879
|
+
exports.SendMessageBatchResultEntry$ = SendMessageBatchResultEntry$;
|
|
503
1880
|
exports.SendMessageCommand = SendMessageCommand;
|
|
1881
|
+
exports.SendMessageRequest$ = SendMessageRequest$;
|
|
1882
|
+
exports.SendMessageResult$ = SendMessageResult$;
|
|
1883
|
+
exports.SetQueueAttributes$ = SetQueueAttributes$;
|
|
504
1884
|
exports.SetQueueAttributesCommand = SetQueueAttributesCommand;
|
|
1885
|
+
exports.SetQueueAttributesRequest$ = SetQueueAttributesRequest$;
|
|
1886
|
+
exports.StartMessageMoveTask$ = StartMessageMoveTask$;
|
|
505
1887
|
exports.StartMessageMoveTaskCommand = StartMessageMoveTaskCommand;
|
|
1888
|
+
exports.StartMessageMoveTaskRequest$ = StartMessageMoveTaskRequest$;
|
|
1889
|
+
exports.StartMessageMoveTaskResult$ = StartMessageMoveTaskResult$;
|
|
1890
|
+
exports.TagQueue$ = TagQueue$;
|
|
506
1891
|
exports.TagQueueCommand = TagQueueCommand;
|
|
1892
|
+
exports.TagQueueRequest$ = TagQueueRequest$;
|
|
1893
|
+
exports.TooManyEntriesInBatchRequest = TooManyEntriesInBatchRequest;
|
|
1894
|
+
exports.TooManyEntriesInBatchRequest$ = TooManyEntriesInBatchRequest$;
|
|
1895
|
+
exports.UnsupportedOperation = UnsupportedOperation;
|
|
1896
|
+
exports.UnsupportedOperation$ = UnsupportedOperation$;
|
|
1897
|
+
exports.UntagQueue$ = UntagQueue$;
|
|
507
1898
|
exports.UntagQueueCommand = UntagQueueCommand;
|
|
1899
|
+
exports.UntagQueueRequest$ = UntagQueueRequest$;
|
|
1900
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
508
1901
|
exports.paginateListDeadLetterSourceQueues = paginateListDeadLetterSourceQueues;
|
|
509
1902
|
exports.paginateListQueues = paginateListQueues;
|