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