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