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