@aws-sdk/client-sqs 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/SQS.d.ts +364 -105
- package/dist-types/ts3.4/SQSClient.d.ts +250 -95
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SQSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +634 -545
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +36 -36
|
@@ -1,545 +1,634 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { SQSServiceException as __BaseException } from "./SQSServiceException";
|
|
3
|
-
|
|
4
|
-
export interface AddPermissionRequest {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export declare class BatchEntryIdsNotDistinct extends __BaseException {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export interface BatchResultErrorEntry {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
export declare class
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
export interface
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
export
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
export interface
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
export interface
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SQSServiceException as __BaseException } from "./SQSServiceException";
|
|
3
|
+
|
|
4
|
+
export interface AddPermissionRequest {
|
|
5
|
+
QueueUrl: string | undefined;
|
|
6
|
+
|
|
7
|
+
Label: string | undefined;
|
|
8
|
+
|
|
9
|
+
AWSAccountIds: string[] | undefined;
|
|
10
|
+
|
|
11
|
+
Actions: string[] | undefined;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export declare class OverLimit extends __BaseException {
|
|
15
|
+
readonly name: "OverLimit";
|
|
16
|
+
readonly $fault: "client";
|
|
17
|
+
|
|
18
|
+
constructor(opts: __ExceptionOptionType<OverLimit, __BaseException>);
|
|
19
|
+
}
|
|
20
|
+
export interface ChangeMessageVisibilityRequest {
|
|
21
|
+
QueueUrl: string | undefined;
|
|
22
|
+
|
|
23
|
+
ReceiptHandle: string | undefined;
|
|
24
|
+
|
|
25
|
+
VisibilityTimeout: number | undefined;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export declare class MessageNotInflight extends __BaseException {
|
|
29
|
+
readonly name: "MessageNotInflight";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
|
|
32
|
+
constructor(opts: __ExceptionOptionType<MessageNotInflight, __BaseException>);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export declare class ReceiptHandleIsInvalid extends __BaseException {
|
|
36
|
+
readonly name: "ReceiptHandleIsInvalid";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ReceiptHandleIsInvalid, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export declare class BatchEntryIdsNotDistinct extends __BaseException {
|
|
45
|
+
readonly name: "BatchEntryIdsNotDistinct";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<BatchEntryIdsNotDistinct, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export interface ChangeMessageVisibilityBatchRequestEntry {
|
|
54
|
+
Id: string | undefined;
|
|
55
|
+
|
|
56
|
+
ReceiptHandle: string | undefined;
|
|
57
|
+
|
|
58
|
+
VisibilityTimeout?: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface ChangeMessageVisibilityBatchRequest {
|
|
62
|
+
QueueUrl: string | undefined;
|
|
63
|
+
|
|
64
|
+
Entries: ChangeMessageVisibilityBatchRequestEntry[] | undefined;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface BatchResultErrorEntry {
|
|
68
|
+
Id: string | undefined;
|
|
69
|
+
|
|
70
|
+
SenderFault: boolean | undefined;
|
|
71
|
+
|
|
72
|
+
Code: string | undefined;
|
|
73
|
+
|
|
74
|
+
Message?: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface ChangeMessageVisibilityBatchResultEntry {
|
|
78
|
+
Id: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface ChangeMessageVisibilityBatchResult {
|
|
82
|
+
Successful: ChangeMessageVisibilityBatchResultEntry[] | undefined;
|
|
83
|
+
|
|
84
|
+
Failed: BatchResultErrorEntry[] | undefined;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export declare class EmptyBatchRequest extends __BaseException {
|
|
88
|
+
readonly name: "EmptyBatchRequest";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
|
|
91
|
+
constructor(opts: __ExceptionOptionType<EmptyBatchRequest, __BaseException>);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export declare class InvalidBatchEntryId extends __BaseException {
|
|
95
|
+
readonly name: "InvalidBatchEntryId";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
|
|
98
|
+
constructor(
|
|
99
|
+
opts: __ExceptionOptionType<InvalidBatchEntryId, __BaseException>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export declare class TooManyEntriesInBatchRequest extends __BaseException {
|
|
104
|
+
readonly name: "TooManyEntriesInBatchRequest";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
|
|
107
|
+
constructor(
|
|
108
|
+
opts: __ExceptionOptionType<TooManyEntriesInBatchRequest, __BaseException>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
export declare type QueueAttributeName =
|
|
112
|
+
| "All"
|
|
113
|
+
| "ApproximateNumberOfMessages"
|
|
114
|
+
| "ApproximateNumberOfMessagesDelayed"
|
|
115
|
+
| "ApproximateNumberOfMessagesNotVisible"
|
|
116
|
+
| "ContentBasedDeduplication"
|
|
117
|
+
| "CreatedTimestamp"
|
|
118
|
+
| "DeduplicationScope"
|
|
119
|
+
| "DelaySeconds"
|
|
120
|
+
| "FifoQueue"
|
|
121
|
+
| "FifoThroughputLimit"
|
|
122
|
+
| "KmsDataKeyReusePeriodSeconds"
|
|
123
|
+
| "KmsMasterKeyId"
|
|
124
|
+
| "LastModifiedTimestamp"
|
|
125
|
+
| "MaximumMessageSize"
|
|
126
|
+
| "MessageRetentionPeriod"
|
|
127
|
+
| "Policy"
|
|
128
|
+
| "QueueArn"
|
|
129
|
+
| "ReceiveMessageWaitTimeSeconds"
|
|
130
|
+
| "RedriveAllowPolicy"
|
|
131
|
+
| "RedrivePolicy"
|
|
132
|
+
| "SqsManagedSseEnabled"
|
|
133
|
+
| "VisibilityTimeout";
|
|
134
|
+
|
|
135
|
+
export interface CreateQueueRequest {
|
|
136
|
+
QueueName: string | undefined;
|
|
137
|
+
|
|
138
|
+
tags?: Record<string, string>;
|
|
139
|
+
|
|
140
|
+
Attributes?: Record<string, string>;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export interface CreateQueueResult {
|
|
144
|
+
QueueUrl?: string;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export declare class QueueDeletedRecently extends __BaseException {
|
|
148
|
+
readonly name: "QueueDeletedRecently";
|
|
149
|
+
readonly $fault: "client";
|
|
150
|
+
|
|
151
|
+
constructor(
|
|
152
|
+
opts: __ExceptionOptionType<QueueDeletedRecently, __BaseException>
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export declare class QueueNameExists extends __BaseException {
|
|
157
|
+
readonly name: "QueueNameExists";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
|
|
160
|
+
constructor(opts: __ExceptionOptionType<QueueNameExists, __BaseException>);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface DeleteMessageRequest {
|
|
164
|
+
QueueUrl: string | undefined;
|
|
165
|
+
|
|
166
|
+
ReceiptHandle: string | undefined;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export declare class InvalidIdFormat extends __BaseException {
|
|
170
|
+
readonly name: "InvalidIdFormat";
|
|
171
|
+
readonly $fault: "client";
|
|
172
|
+
|
|
173
|
+
constructor(opts: __ExceptionOptionType<InvalidIdFormat, __BaseException>);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export interface DeleteMessageBatchRequestEntry {
|
|
177
|
+
Id: string | undefined;
|
|
178
|
+
|
|
179
|
+
ReceiptHandle: string | undefined;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export interface DeleteMessageBatchRequest {
|
|
183
|
+
QueueUrl: string | undefined;
|
|
184
|
+
|
|
185
|
+
Entries: DeleteMessageBatchRequestEntry[] | undefined;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
export interface DeleteMessageBatchResultEntry {
|
|
189
|
+
Id: string | undefined;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export interface DeleteMessageBatchResult {
|
|
193
|
+
Successful: DeleteMessageBatchResultEntry[] | undefined;
|
|
194
|
+
|
|
195
|
+
Failed: BatchResultErrorEntry[] | undefined;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface DeleteQueueRequest {
|
|
199
|
+
QueueUrl: string | undefined;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface GetQueueAttributesRequest {
|
|
203
|
+
QueueUrl: string | undefined;
|
|
204
|
+
|
|
205
|
+
AttributeNames?: (QueueAttributeName | string)[];
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface GetQueueAttributesResult {
|
|
209
|
+
Attributes?: Record<string, string>;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
export declare class InvalidAttributeName extends __BaseException {
|
|
213
|
+
readonly name: "InvalidAttributeName";
|
|
214
|
+
readonly $fault: "client";
|
|
215
|
+
|
|
216
|
+
constructor(
|
|
217
|
+
opts: __ExceptionOptionType<InvalidAttributeName, __BaseException>
|
|
218
|
+
);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export interface GetQueueUrlRequest {
|
|
222
|
+
QueueName: string | undefined;
|
|
223
|
+
|
|
224
|
+
QueueOwnerAWSAccountId?: string;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export interface GetQueueUrlResult {
|
|
228
|
+
QueueUrl?: string;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export declare class QueueDoesNotExist extends __BaseException {
|
|
232
|
+
readonly name: "QueueDoesNotExist";
|
|
233
|
+
readonly $fault: "client";
|
|
234
|
+
|
|
235
|
+
constructor(opts: __ExceptionOptionType<QueueDoesNotExist, __BaseException>);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export interface ListDeadLetterSourceQueuesRequest {
|
|
239
|
+
QueueUrl: string | undefined;
|
|
240
|
+
|
|
241
|
+
NextToken?: string;
|
|
242
|
+
|
|
243
|
+
MaxResults?: number;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface ListDeadLetterSourceQueuesResult {
|
|
247
|
+
queueUrls: string[] | undefined;
|
|
248
|
+
|
|
249
|
+
NextToken?: string;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface ListQueuesRequest {
|
|
253
|
+
QueueNamePrefix?: string;
|
|
254
|
+
|
|
255
|
+
NextToken?: string;
|
|
256
|
+
|
|
257
|
+
MaxResults?: number;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface ListQueuesResult {
|
|
261
|
+
NextToken?: string;
|
|
262
|
+
|
|
263
|
+
QueueUrls?: string[];
|
|
264
|
+
}
|
|
265
|
+
export interface ListQueueTagsRequest {
|
|
266
|
+
QueueUrl: string | undefined;
|
|
267
|
+
}
|
|
268
|
+
export interface ListQueueTagsResult {
|
|
269
|
+
Tags?: Record<string, string>;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export declare class PurgeQueueInProgress extends __BaseException {
|
|
273
|
+
readonly name: "PurgeQueueInProgress";
|
|
274
|
+
readonly $fault: "client";
|
|
275
|
+
|
|
276
|
+
constructor(
|
|
277
|
+
opts: __ExceptionOptionType<PurgeQueueInProgress, __BaseException>
|
|
278
|
+
);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
export interface PurgeQueueRequest {
|
|
282
|
+
QueueUrl: string | undefined;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export interface ReceiveMessageRequest {
|
|
286
|
+
QueueUrl: string | undefined;
|
|
287
|
+
|
|
288
|
+
AttributeNames?: (QueueAttributeName | string)[];
|
|
289
|
+
|
|
290
|
+
MessageAttributeNames?: string[];
|
|
291
|
+
|
|
292
|
+
MaxNumberOfMessages?: number;
|
|
293
|
+
|
|
294
|
+
VisibilityTimeout?: number;
|
|
295
|
+
|
|
296
|
+
WaitTimeSeconds?: number;
|
|
297
|
+
|
|
298
|
+
ReceiveRequestAttemptId?: string;
|
|
299
|
+
}
|
|
300
|
+
export declare type MessageSystemAttributeName =
|
|
301
|
+
| "AWSTraceHeader"
|
|
302
|
+
| "ApproximateFirstReceiveTimestamp"
|
|
303
|
+
| "ApproximateReceiveCount"
|
|
304
|
+
| "MessageDeduplicationId"
|
|
305
|
+
| "MessageGroupId"
|
|
306
|
+
| "SenderId"
|
|
307
|
+
| "SentTimestamp"
|
|
308
|
+
| "SequenceNumber";
|
|
309
|
+
|
|
310
|
+
export interface MessageAttributeValue {
|
|
311
|
+
StringValue?: string;
|
|
312
|
+
|
|
313
|
+
BinaryValue?: Uint8Array;
|
|
314
|
+
|
|
315
|
+
StringListValues?: string[];
|
|
316
|
+
|
|
317
|
+
BinaryListValues?: Uint8Array[];
|
|
318
|
+
|
|
319
|
+
DataType: string | undefined;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface Message {
|
|
323
|
+
MessageId?: string;
|
|
324
|
+
|
|
325
|
+
ReceiptHandle?: string;
|
|
326
|
+
|
|
327
|
+
MD5OfBody?: string;
|
|
328
|
+
|
|
329
|
+
Body?: string;
|
|
330
|
+
|
|
331
|
+
Attributes?: Record<string, string>;
|
|
332
|
+
|
|
333
|
+
MD5OfMessageAttributes?: string;
|
|
334
|
+
|
|
335
|
+
MessageAttributes?: Record<string, MessageAttributeValue>;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
export interface ReceiveMessageResult {
|
|
339
|
+
Messages?: Message[];
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export interface RemovePermissionRequest {
|
|
343
|
+
QueueUrl: string | undefined;
|
|
344
|
+
|
|
345
|
+
Label: string | undefined;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export declare class InvalidMessageContents extends __BaseException {
|
|
349
|
+
readonly name: "InvalidMessageContents";
|
|
350
|
+
readonly $fault: "client";
|
|
351
|
+
|
|
352
|
+
constructor(
|
|
353
|
+
opts: __ExceptionOptionType<InvalidMessageContents, __BaseException>
|
|
354
|
+
);
|
|
355
|
+
}
|
|
356
|
+
export declare type MessageSystemAttributeNameForSends = "AWSTraceHeader";
|
|
357
|
+
|
|
358
|
+
export interface MessageSystemAttributeValue {
|
|
359
|
+
StringValue?: string;
|
|
360
|
+
|
|
361
|
+
BinaryValue?: Uint8Array;
|
|
362
|
+
|
|
363
|
+
StringListValues?: string[];
|
|
364
|
+
|
|
365
|
+
BinaryListValues?: Uint8Array[];
|
|
366
|
+
|
|
367
|
+
DataType: string | undefined;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export interface SendMessageRequest {
|
|
371
|
+
QueueUrl: string | undefined;
|
|
372
|
+
|
|
373
|
+
MessageBody: string | undefined;
|
|
374
|
+
|
|
375
|
+
DelaySeconds?: number;
|
|
376
|
+
|
|
377
|
+
MessageAttributes?: Record<string, MessageAttributeValue>;
|
|
378
|
+
|
|
379
|
+
MessageSystemAttributes?: Record<string, MessageSystemAttributeValue>;
|
|
380
|
+
|
|
381
|
+
MessageDeduplicationId?: string;
|
|
382
|
+
|
|
383
|
+
MessageGroupId?: string;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
export interface SendMessageResult {
|
|
387
|
+
MD5OfMessageBody?: string;
|
|
388
|
+
|
|
389
|
+
MD5OfMessageAttributes?: string;
|
|
390
|
+
|
|
391
|
+
MD5OfMessageSystemAttributes?: string;
|
|
392
|
+
|
|
393
|
+
MessageId?: string;
|
|
394
|
+
|
|
395
|
+
SequenceNumber?: string;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
399
|
+
readonly name: "UnsupportedOperation";
|
|
400
|
+
readonly $fault: "client";
|
|
401
|
+
|
|
402
|
+
constructor(
|
|
403
|
+
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
404
|
+
);
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export declare class BatchRequestTooLong extends __BaseException {
|
|
408
|
+
readonly name: "BatchRequestTooLong";
|
|
409
|
+
readonly $fault: "client";
|
|
410
|
+
|
|
411
|
+
constructor(
|
|
412
|
+
opts: __ExceptionOptionType<BatchRequestTooLong, __BaseException>
|
|
413
|
+
);
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export interface SendMessageBatchRequestEntry {
|
|
417
|
+
Id: string | undefined;
|
|
418
|
+
|
|
419
|
+
MessageBody: string | undefined;
|
|
420
|
+
|
|
421
|
+
DelaySeconds?: number;
|
|
422
|
+
|
|
423
|
+
MessageAttributes?: Record<string, MessageAttributeValue>;
|
|
424
|
+
|
|
425
|
+
MessageSystemAttributes?: Record<string, MessageSystemAttributeValue>;
|
|
426
|
+
|
|
427
|
+
MessageDeduplicationId?: string;
|
|
428
|
+
|
|
429
|
+
MessageGroupId?: string;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export interface SendMessageBatchRequest {
|
|
433
|
+
QueueUrl: string | undefined;
|
|
434
|
+
|
|
435
|
+
Entries: SendMessageBatchRequestEntry[] | undefined;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export interface SendMessageBatchResultEntry {
|
|
439
|
+
Id: string | undefined;
|
|
440
|
+
|
|
441
|
+
MessageId: string | undefined;
|
|
442
|
+
|
|
443
|
+
MD5OfMessageBody: string | undefined;
|
|
444
|
+
|
|
445
|
+
MD5OfMessageAttributes?: string;
|
|
446
|
+
|
|
447
|
+
MD5OfMessageSystemAttributes?: string;
|
|
448
|
+
|
|
449
|
+
SequenceNumber?: string;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
export interface SendMessageBatchResult {
|
|
453
|
+
Successful: SendMessageBatchResultEntry[] | undefined;
|
|
454
|
+
|
|
455
|
+
Failed: BatchResultErrorEntry[] | undefined;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export interface SetQueueAttributesRequest {
|
|
459
|
+
QueueUrl: string | undefined;
|
|
460
|
+
|
|
461
|
+
Attributes: Record<string, string> | undefined;
|
|
462
|
+
}
|
|
463
|
+
export interface TagQueueRequest {
|
|
464
|
+
QueueUrl: string | undefined;
|
|
465
|
+
|
|
466
|
+
Tags: Record<string, string> | undefined;
|
|
467
|
+
}
|
|
468
|
+
export interface UntagQueueRequest {
|
|
469
|
+
QueueUrl: string | undefined;
|
|
470
|
+
|
|
471
|
+
TagKeys: string[] | undefined;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
export declare const AddPermissionRequestFilterSensitiveLog: (
|
|
475
|
+
obj: AddPermissionRequest
|
|
476
|
+
) => any;
|
|
477
|
+
|
|
478
|
+
export declare const ChangeMessageVisibilityRequestFilterSensitiveLog: (
|
|
479
|
+
obj: ChangeMessageVisibilityRequest
|
|
480
|
+
) => any;
|
|
481
|
+
|
|
482
|
+
export declare const ChangeMessageVisibilityBatchRequestEntryFilterSensitiveLog: (
|
|
483
|
+
obj: ChangeMessageVisibilityBatchRequestEntry
|
|
484
|
+
) => any;
|
|
485
|
+
|
|
486
|
+
export declare const ChangeMessageVisibilityBatchRequestFilterSensitiveLog: (
|
|
487
|
+
obj: ChangeMessageVisibilityBatchRequest
|
|
488
|
+
) => any;
|
|
489
|
+
|
|
490
|
+
export declare const BatchResultErrorEntryFilterSensitiveLog: (
|
|
491
|
+
obj: BatchResultErrorEntry
|
|
492
|
+
) => any;
|
|
493
|
+
|
|
494
|
+
export declare const ChangeMessageVisibilityBatchResultEntryFilterSensitiveLog: (
|
|
495
|
+
obj: ChangeMessageVisibilityBatchResultEntry
|
|
496
|
+
) => any;
|
|
497
|
+
|
|
498
|
+
export declare const ChangeMessageVisibilityBatchResultFilterSensitiveLog: (
|
|
499
|
+
obj: ChangeMessageVisibilityBatchResult
|
|
500
|
+
) => any;
|
|
501
|
+
|
|
502
|
+
export declare const CreateQueueRequestFilterSensitiveLog: (
|
|
503
|
+
obj: CreateQueueRequest
|
|
504
|
+
) => any;
|
|
505
|
+
|
|
506
|
+
export declare const CreateQueueResultFilterSensitiveLog: (
|
|
507
|
+
obj: CreateQueueResult
|
|
508
|
+
) => any;
|
|
509
|
+
|
|
510
|
+
export declare const DeleteMessageRequestFilterSensitiveLog: (
|
|
511
|
+
obj: DeleteMessageRequest
|
|
512
|
+
) => any;
|
|
513
|
+
|
|
514
|
+
export declare const DeleteMessageBatchRequestEntryFilterSensitiveLog: (
|
|
515
|
+
obj: DeleteMessageBatchRequestEntry
|
|
516
|
+
) => any;
|
|
517
|
+
|
|
518
|
+
export declare const DeleteMessageBatchRequestFilterSensitiveLog: (
|
|
519
|
+
obj: DeleteMessageBatchRequest
|
|
520
|
+
) => any;
|
|
521
|
+
|
|
522
|
+
export declare const DeleteMessageBatchResultEntryFilterSensitiveLog: (
|
|
523
|
+
obj: DeleteMessageBatchResultEntry
|
|
524
|
+
) => any;
|
|
525
|
+
|
|
526
|
+
export declare const DeleteMessageBatchResultFilterSensitiveLog: (
|
|
527
|
+
obj: DeleteMessageBatchResult
|
|
528
|
+
) => any;
|
|
529
|
+
|
|
530
|
+
export declare const DeleteQueueRequestFilterSensitiveLog: (
|
|
531
|
+
obj: DeleteQueueRequest
|
|
532
|
+
) => any;
|
|
533
|
+
|
|
534
|
+
export declare const GetQueueAttributesRequestFilterSensitiveLog: (
|
|
535
|
+
obj: GetQueueAttributesRequest
|
|
536
|
+
) => any;
|
|
537
|
+
|
|
538
|
+
export declare const GetQueueAttributesResultFilterSensitiveLog: (
|
|
539
|
+
obj: GetQueueAttributesResult
|
|
540
|
+
) => any;
|
|
541
|
+
|
|
542
|
+
export declare const GetQueueUrlRequestFilterSensitiveLog: (
|
|
543
|
+
obj: GetQueueUrlRequest
|
|
544
|
+
) => any;
|
|
545
|
+
|
|
546
|
+
export declare const GetQueueUrlResultFilterSensitiveLog: (
|
|
547
|
+
obj: GetQueueUrlResult
|
|
548
|
+
) => any;
|
|
549
|
+
|
|
550
|
+
export declare const ListDeadLetterSourceQueuesRequestFilterSensitiveLog: (
|
|
551
|
+
obj: ListDeadLetterSourceQueuesRequest
|
|
552
|
+
) => any;
|
|
553
|
+
|
|
554
|
+
export declare const ListDeadLetterSourceQueuesResultFilterSensitiveLog: (
|
|
555
|
+
obj: ListDeadLetterSourceQueuesResult
|
|
556
|
+
) => any;
|
|
557
|
+
|
|
558
|
+
export declare const ListQueuesRequestFilterSensitiveLog: (
|
|
559
|
+
obj: ListQueuesRequest
|
|
560
|
+
) => any;
|
|
561
|
+
|
|
562
|
+
export declare const ListQueuesResultFilterSensitiveLog: (
|
|
563
|
+
obj: ListQueuesResult
|
|
564
|
+
) => any;
|
|
565
|
+
|
|
566
|
+
export declare const ListQueueTagsRequestFilterSensitiveLog: (
|
|
567
|
+
obj: ListQueueTagsRequest
|
|
568
|
+
) => any;
|
|
569
|
+
|
|
570
|
+
export declare const ListQueueTagsResultFilterSensitiveLog: (
|
|
571
|
+
obj: ListQueueTagsResult
|
|
572
|
+
) => any;
|
|
573
|
+
|
|
574
|
+
export declare const PurgeQueueRequestFilterSensitiveLog: (
|
|
575
|
+
obj: PurgeQueueRequest
|
|
576
|
+
) => any;
|
|
577
|
+
|
|
578
|
+
export declare const ReceiveMessageRequestFilterSensitiveLog: (
|
|
579
|
+
obj: ReceiveMessageRequest
|
|
580
|
+
) => any;
|
|
581
|
+
|
|
582
|
+
export declare const MessageAttributeValueFilterSensitiveLog: (
|
|
583
|
+
obj: MessageAttributeValue
|
|
584
|
+
) => any;
|
|
585
|
+
|
|
586
|
+
export declare const MessageFilterSensitiveLog: (obj: Message) => any;
|
|
587
|
+
|
|
588
|
+
export declare const ReceiveMessageResultFilterSensitiveLog: (
|
|
589
|
+
obj: ReceiveMessageResult
|
|
590
|
+
) => any;
|
|
591
|
+
|
|
592
|
+
export declare const RemovePermissionRequestFilterSensitiveLog: (
|
|
593
|
+
obj: RemovePermissionRequest
|
|
594
|
+
) => any;
|
|
595
|
+
|
|
596
|
+
export declare const MessageSystemAttributeValueFilterSensitiveLog: (
|
|
597
|
+
obj: MessageSystemAttributeValue
|
|
598
|
+
) => any;
|
|
599
|
+
|
|
600
|
+
export declare const SendMessageRequestFilterSensitiveLog: (
|
|
601
|
+
obj: SendMessageRequest
|
|
602
|
+
) => any;
|
|
603
|
+
|
|
604
|
+
export declare const SendMessageResultFilterSensitiveLog: (
|
|
605
|
+
obj: SendMessageResult
|
|
606
|
+
) => any;
|
|
607
|
+
|
|
608
|
+
export declare const SendMessageBatchRequestEntryFilterSensitiveLog: (
|
|
609
|
+
obj: SendMessageBatchRequestEntry
|
|
610
|
+
) => any;
|
|
611
|
+
|
|
612
|
+
export declare const SendMessageBatchRequestFilterSensitiveLog: (
|
|
613
|
+
obj: SendMessageBatchRequest
|
|
614
|
+
) => any;
|
|
615
|
+
|
|
616
|
+
export declare const SendMessageBatchResultEntryFilterSensitiveLog: (
|
|
617
|
+
obj: SendMessageBatchResultEntry
|
|
618
|
+
) => any;
|
|
619
|
+
|
|
620
|
+
export declare const SendMessageBatchResultFilterSensitiveLog: (
|
|
621
|
+
obj: SendMessageBatchResult
|
|
622
|
+
) => any;
|
|
623
|
+
|
|
624
|
+
export declare const SetQueueAttributesRequestFilterSensitiveLog: (
|
|
625
|
+
obj: SetQueueAttributesRequest
|
|
626
|
+
) => any;
|
|
627
|
+
|
|
628
|
+
export declare const TagQueueRequestFilterSensitiveLog: (
|
|
629
|
+
obj: TagQueueRequest
|
|
630
|
+
) => any;
|
|
631
|
+
|
|
632
|
+
export declare const UntagQueueRequestFilterSensitiveLog: (
|
|
633
|
+
obj: UntagQueueRequest
|
|
634
|
+
) => any;
|