@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.
Files changed (50) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/SQSServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +211 -1
  5. package/dist-cjs/protocols/Aws_query.js +160 -460
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/SQSServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +194 -1
  9. package/dist-es/protocols/Aws_query.js +327 -467
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/SQSServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +114 -49
  13. package/dist-types/ts3.4/SQS.d.ts +105 -0
  14. package/dist-types/ts3.4/SQSClient.d.ts +95 -0
  15. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  37. package/dist-types/ts3.4/index.d.ts +6 -0
  38. package/dist-types/ts3.4/models/SQSServiceException.d.ts +6 -0
  39. package/dist-types/ts3.4/models/index.d.ts +1 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +651 -0
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  42. package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  45. package/dist-types/ts3.4/protocols/Aws_query.d.ts +62 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +39 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +40 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +38 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  50. package/package.json +35 -35
@@ -3,3 +3,4 @@ export * from "./SQSClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { SQSServiceException } from "./models/SQSServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from SQS service.
4
+ */
5
+ export declare class SQSServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SQSServiceException as __BaseException } from "./SQSServiceException";
2
3
  /**
3
4
  * <p></p>
4
5
  */
@@ -39,9 +40,13 @@ export declare namespace AddPermissionRequest {
39
40
  * <code>AddPermission</code> returns this error if the maximum number of permissions
40
41
  * for the queue is reached.</p>
41
42
  */
42
- export interface OverLimit extends __SmithyException, $MetadataBearer {
43
- name: "OverLimit";
44
- $fault: "client";
43
+ export declare class OverLimit extends __BaseException {
44
+ readonly name: "OverLimit";
45
+ readonly $fault: "client";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<OverLimit, __BaseException>);
45
50
  }
46
51
  export interface ChangeMessageVisibilityRequest {
47
52
  /**
@@ -69,23 +74,35 @@ export declare namespace ChangeMessageVisibilityRequest {
69
74
  /**
70
75
  * <p>The specified message isn't in flight.</p>
71
76
  */
72
- export interface MessageNotInflight extends __SmithyException, $MetadataBearer {
73
- name: "MessageNotInflight";
74
- $fault: "client";
77
+ export declare class MessageNotInflight extends __BaseException {
78
+ readonly name: "MessageNotInflight";
79
+ readonly $fault: "client";
80
+ /**
81
+ * @internal
82
+ */
83
+ constructor(opts: __ExceptionOptionType<MessageNotInflight, __BaseException>);
75
84
  }
76
85
  /**
77
86
  * <p>The specified receipt handle isn't valid.</p>
78
87
  */
79
- export interface ReceiptHandleIsInvalid extends __SmithyException, $MetadataBearer {
80
- name: "ReceiptHandleIsInvalid";
81
- $fault: "client";
88
+ export declare class ReceiptHandleIsInvalid extends __BaseException {
89
+ readonly name: "ReceiptHandleIsInvalid";
90
+ readonly $fault: "client";
91
+ /**
92
+ * @internal
93
+ */
94
+ constructor(opts: __ExceptionOptionType<ReceiptHandleIsInvalid, __BaseException>);
82
95
  }
83
96
  /**
84
97
  * <p>Two or more batch entries in the request have the same <code>Id</code>.</p>
85
98
  */
86
- export interface BatchEntryIdsNotDistinct extends __SmithyException, $MetadataBearer {
87
- name: "BatchEntryIdsNotDistinct";
88
- $fault: "client";
99
+ export declare class BatchEntryIdsNotDistinct extends __BaseException {
100
+ readonly name: "BatchEntryIdsNotDistinct";
101
+ readonly $fault: "client";
102
+ /**
103
+ * @internal
104
+ */
105
+ constructor(opts: __ExceptionOptionType<BatchEntryIdsNotDistinct, __BaseException>);
89
106
  }
90
107
  /**
91
108
  * <p>Encloses a receipt handle and an entry id for each message in <code>
@@ -223,23 +240,35 @@ export declare namespace ChangeMessageVisibilityBatchResult {
223
240
  /**
224
241
  * <p>The batch request doesn't contain any entries.</p>
225
242
  */
226
- export interface EmptyBatchRequest extends __SmithyException, $MetadataBearer {
227
- name: "EmptyBatchRequest";
228
- $fault: "client";
243
+ export declare class EmptyBatchRequest extends __BaseException {
244
+ readonly name: "EmptyBatchRequest";
245
+ readonly $fault: "client";
246
+ /**
247
+ * @internal
248
+ */
249
+ constructor(opts: __ExceptionOptionType<EmptyBatchRequest, __BaseException>);
229
250
  }
230
251
  /**
231
252
  * <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the specification.</p>
232
253
  */
233
- export interface InvalidBatchEntryId extends __SmithyException, $MetadataBearer {
234
- name: "InvalidBatchEntryId";
235
- $fault: "client";
254
+ export declare class InvalidBatchEntryId extends __BaseException {
255
+ readonly name: "InvalidBatchEntryId";
256
+ readonly $fault: "client";
257
+ /**
258
+ * @internal
259
+ */
260
+ constructor(opts: __ExceptionOptionType<InvalidBatchEntryId, __BaseException>);
236
261
  }
237
262
  /**
238
263
  * <p>The batch request contains more entries than permissible.</p>
239
264
  */
240
- export interface TooManyEntriesInBatchRequest extends __SmithyException, $MetadataBearer {
241
- name: "TooManyEntriesInBatchRequest";
242
- $fault: "client";
265
+ export declare class TooManyEntriesInBatchRequest extends __BaseException {
266
+ readonly name: "TooManyEntriesInBatchRequest";
267
+ readonly $fault: "client";
268
+ /**
269
+ * @internal
270
+ */
271
+ constructor(opts: __ExceptionOptionType<TooManyEntriesInBatchRequest, __BaseException>);
243
272
  }
244
273
  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";
245
274
  /**
@@ -489,17 +518,25 @@ export declare namespace CreateQueueResult {
489
518
  * <p>You must wait 60 seconds after deleting a queue before you can create another queue
490
519
  * with the same name.</p>
491
520
  */
492
- export interface QueueDeletedRecently extends __SmithyException, $MetadataBearer {
493
- name: "QueueDeletedRecently";
494
- $fault: "client";
521
+ export declare class QueueDeletedRecently extends __BaseException {
522
+ readonly name: "QueueDeletedRecently";
523
+ readonly $fault: "client";
524
+ /**
525
+ * @internal
526
+ */
527
+ constructor(opts: __ExceptionOptionType<QueueDeletedRecently, __BaseException>);
495
528
  }
496
529
  /**
497
530
  * <p>A queue with this name already exists. Amazon SQS returns this error only if the request
498
531
  * includes attributes whose values differ from those of the existing queue.</p>
499
532
  */
500
- export interface QueueNameExists extends __SmithyException, $MetadataBearer {
501
- name: "QueueNameExists";
502
- $fault: "client";
533
+ export declare class QueueNameExists extends __BaseException {
534
+ readonly name: "QueueNameExists";
535
+ readonly $fault: "client";
536
+ /**
537
+ * @internal
538
+ */
539
+ constructor(opts: __ExceptionOptionType<QueueNameExists, __BaseException>);
503
540
  }
504
541
  /**
505
542
  * <p></p>
@@ -524,9 +561,13 @@ export declare namespace DeleteMessageRequest {
524
561
  /**
525
562
  * <p>The specified receipt handle isn't valid for the current version.</p>
526
563
  */
527
- export interface InvalidIdFormat extends __SmithyException, $MetadataBearer {
528
- name: "InvalidIdFormat";
529
- $fault: "client";
564
+ export declare class InvalidIdFormat extends __BaseException {
565
+ readonly name: "InvalidIdFormat";
566
+ readonly $fault: "client";
567
+ /**
568
+ * @internal
569
+ */
570
+ constructor(opts: __ExceptionOptionType<InvalidIdFormat, __BaseException>);
530
571
  }
531
572
  /**
532
573
  * <p>Encloses a receipt handle and an identifier for it.</p>
@@ -840,9 +881,13 @@ export declare namespace GetQueueAttributesResult {
840
881
  /**
841
882
  * <p>The specified attribute doesn't exist.</p>
842
883
  */
843
- export interface InvalidAttributeName extends __SmithyException, $MetadataBearer {
844
- name: "InvalidAttributeName";
845
- $fault: "client";
884
+ export declare class InvalidAttributeName extends __BaseException {
885
+ readonly name: "InvalidAttributeName";
886
+ readonly $fault: "client";
887
+ /**
888
+ * @internal
889
+ */
890
+ constructor(opts: __ExceptionOptionType<InvalidAttributeName, __BaseException>);
846
891
  }
847
892
  /**
848
893
  * <p></p>
@@ -882,9 +927,13 @@ export declare namespace GetQueueUrlResult {
882
927
  /**
883
928
  * <p>The specified queue doesn't exist.</p>
884
929
  */
885
- export interface QueueDoesNotExist extends __SmithyException, $MetadataBearer {
886
- name: "QueueDoesNotExist";
887
- $fault: "client";
930
+ export declare class QueueDoesNotExist extends __BaseException {
931
+ readonly name: "QueueDoesNotExist";
932
+ readonly $fault: "client";
933
+ /**
934
+ * @internal
935
+ */
936
+ constructor(opts: __ExceptionOptionType<QueueDoesNotExist, __BaseException>);
888
937
  }
889
938
  /**
890
939
  * <p></p>
@@ -1005,9 +1054,13 @@ export declare namespace ListQueueTagsResult {
1005
1054
  /**
1006
1055
  * <p>Indicates that the specified queue previously received a <code>PurgeQueue</code> request within the last 60 seconds (the time it can take to delete the messages in the queue).</p>
1007
1056
  */
1008
- export interface PurgeQueueInProgress extends __SmithyException, $MetadataBearer {
1009
- name: "PurgeQueueInProgress";
1010
- $fault: "client";
1057
+ export declare class PurgeQueueInProgress extends __BaseException {
1058
+ readonly name: "PurgeQueueInProgress";
1059
+ readonly $fault: "client";
1060
+ /**
1061
+ * @internal
1062
+ */
1063
+ constructor(opts: __ExceptionOptionType<PurgeQueueInProgress, __BaseException>);
1011
1064
  }
1012
1065
  /**
1013
1066
  * <p></p>
@@ -1362,9 +1415,13 @@ export declare namespace RemovePermissionRequest {
1362
1415
  /**
1363
1416
  * <p>The message contains characters outside the allowed set.</p>
1364
1417
  */
1365
- export interface InvalidMessageContents extends __SmithyException, $MetadataBearer {
1366
- name: "InvalidMessageContents";
1367
- $fault: "client";
1418
+ export declare class InvalidMessageContents extends __BaseException {
1419
+ readonly name: "InvalidMessageContents";
1420
+ readonly $fault: "client";
1421
+ /**
1422
+ * @internal
1423
+ */
1424
+ constructor(opts: __ExceptionOptionType<InvalidMessageContents, __BaseException>);
1368
1425
  }
1369
1426
  export declare type MessageSystemAttributeNameForSends = "AWSTraceHeader";
1370
1427
  /**
@@ -1585,16 +1642,24 @@ export declare namespace SendMessageResult {
1585
1642
  /**
1586
1643
  * <p>Error code 400. Unsupported operation.</p>
1587
1644
  */
1588
- export interface UnsupportedOperation extends __SmithyException, $MetadataBearer {
1589
- name: "UnsupportedOperation";
1590
- $fault: "client";
1645
+ export declare class UnsupportedOperation extends __BaseException {
1646
+ readonly name: "UnsupportedOperation";
1647
+ readonly $fault: "client";
1648
+ /**
1649
+ * @internal
1650
+ */
1651
+ constructor(opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>);
1591
1652
  }
1592
1653
  /**
1593
1654
  * <p>The length of all the messages put together is more than the limit.</p>
1594
1655
  */
1595
- export interface BatchRequestTooLong extends __SmithyException, $MetadataBearer {
1596
- name: "BatchRequestTooLong";
1597
- $fault: "client";
1656
+ export declare class BatchRequestTooLong extends __BaseException {
1657
+ readonly name: "BatchRequestTooLong";
1658
+ readonly $fault: "client";
1659
+ /**
1660
+ * @internal
1661
+ */
1662
+ constructor(opts: __ExceptionOptionType<BatchRequestTooLong, __BaseException>);
1598
1663
  }
1599
1664
  /**
1600
1665
  * <p>Contains the details of a single Amazon SQS message along with an <code>Id</code>.</p>
@@ -0,0 +1,105 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
3
+ import { ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput } from "./commands/ChangeMessageVisibilityBatchCommand";
4
+ import { ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput } from "./commands/ChangeMessageVisibilityCommand";
5
+ import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
6
+ import { DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput } from "./commands/DeleteMessageBatchCommand";
7
+ import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
8
+ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
9
+ import { GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput } from "./commands/GetQueueAttributesCommand";
10
+ import { GetQueueUrlCommandInput, GetQueueUrlCommandOutput } from "./commands/GetQueueUrlCommand";
11
+ import { ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput } from "./commands/ListDeadLetterSourceQueuesCommand";
12
+ import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
13
+ import { ListQueueTagsCommandInput, ListQueueTagsCommandOutput } from "./commands/ListQueueTagsCommand";
14
+ import { PurgeQueueCommandInput, PurgeQueueCommandOutput } from "./commands/PurgeQueueCommand";
15
+ import { ReceiveMessageCommandInput, ReceiveMessageCommandOutput } from "./commands/ReceiveMessageCommand";
16
+ import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
17
+ import { SendMessageBatchCommandInput, SendMessageBatchCommandOutput } from "./commands/SendMessageBatchCommand";
18
+ import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
19
+ import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "./commands/SetQueueAttributesCommand";
20
+ import { TagQueueCommandInput, TagQueueCommandOutput } from "./commands/TagQueueCommand";
21
+ import { UntagQueueCommandInput, UntagQueueCommandOutput } from "./commands/UntagQueueCommand";
22
+ import { SQSClient } from "./SQSClient";
23
+
24
+ export declare class SQS extends SQSClient {
25
+
26
+ addPermission(args: AddPermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddPermissionCommandOutput>;
27
+ addPermission(args: AddPermissionCommandInput, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
28
+ addPermission(args: AddPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
29
+
30
+ changeMessageVisibility(args: ChangeMessageVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<ChangeMessageVisibilityCommandOutput>;
31
+ changeMessageVisibility(args: ChangeMessageVisibilityCommandInput, cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void): void;
32
+ changeMessageVisibility(args: ChangeMessageVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void): void;
33
+
34
+ changeMessageVisibilityBatch(args: ChangeMessageVisibilityBatchCommandInput, options?: __HttpHandlerOptions): Promise<ChangeMessageVisibilityBatchCommandOutput>;
35
+ changeMessageVisibilityBatch(args: ChangeMessageVisibilityBatchCommandInput, cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void): void;
36
+ changeMessageVisibilityBatch(args: ChangeMessageVisibilityBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void): void;
37
+
38
+ createQueue(args: CreateQueueCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueCommandOutput>;
39
+ createQueue(args: CreateQueueCommandInput, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
40
+ createQueue(args: CreateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
41
+
42
+ deleteMessage(args: DeleteMessageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMessageCommandOutput>;
43
+ deleteMessage(args: DeleteMessageCommandInput, cb: (err: any, data?: DeleteMessageCommandOutput) => void): void;
44
+ deleteMessage(args: DeleteMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMessageCommandOutput) => void): void;
45
+
46
+ deleteMessageBatch(args: DeleteMessageBatchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMessageBatchCommandOutput>;
47
+ deleteMessageBatch(args: DeleteMessageBatchCommandInput, cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void): void;
48
+ deleteMessageBatch(args: DeleteMessageBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void): void;
49
+
50
+ deleteQueue(args: DeleteQueueCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueueCommandOutput>;
51
+ deleteQueue(args: DeleteQueueCommandInput, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
52
+ deleteQueue(args: DeleteQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
53
+
54
+ getQueueAttributes(args: GetQueueAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueAttributesCommandOutput>;
55
+ getQueueAttributes(args: GetQueueAttributesCommandInput, cb: (err: any, data?: GetQueueAttributesCommandOutput) => void): void;
56
+ getQueueAttributes(args: GetQueueAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueAttributesCommandOutput) => void): void;
57
+
58
+ getQueueUrl(args: GetQueueUrlCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueUrlCommandOutput>;
59
+ getQueueUrl(args: GetQueueUrlCommandInput, cb: (err: any, data?: GetQueueUrlCommandOutput) => void): void;
60
+ getQueueUrl(args: GetQueueUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueUrlCommandOutput) => void): void;
61
+
62
+ listDeadLetterSourceQueues(args: ListDeadLetterSourceQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListDeadLetterSourceQueuesCommandOutput>;
63
+ listDeadLetterSourceQueues(args: ListDeadLetterSourceQueuesCommandInput, cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void): void;
64
+ listDeadLetterSourceQueues(args: ListDeadLetterSourceQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void): void;
65
+
66
+ listQueues(args: ListQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuesCommandOutput>;
67
+ listQueues(args: ListQueuesCommandInput, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
68
+ listQueues(args: ListQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
69
+
70
+ listQueueTags(args: ListQueueTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueTagsCommandOutput>;
71
+ listQueueTags(args: ListQueueTagsCommandInput, cb: (err: any, data?: ListQueueTagsCommandOutput) => void): void;
72
+ listQueueTags(args: ListQueueTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueTagsCommandOutput) => void): void;
73
+
74
+ purgeQueue(args: PurgeQueueCommandInput, options?: __HttpHandlerOptions): Promise<PurgeQueueCommandOutput>;
75
+ purgeQueue(args: PurgeQueueCommandInput, cb: (err: any, data?: PurgeQueueCommandOutput) => void): void;
76
+ purgeQueue(args: PurgeQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurgeQueueCommandOutput) => void): void;
77
+
78
+ receiveMessage(args: ReceiveMessageCommandInput, options?: __HttpHandlerOptions): Promise<ReceiveMessageCommandOutput>;
79
+ receiveMessage(args: ReceiveMessageCommandInput, cb: (err: any, data?: ReceiveMessageCommandOutput) => void): void;
80
+ receiveMessage(args: ReceiveMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReceiveMessageCommandOutput) => void): void;
81
+
82
+ removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemovePermissionCommandOutput>;
83
+ removePermission(args: RemovePermissionCommandInput, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
84
+ removePermission(args: RemovePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
85
+
86
+ sendMessage(args: SendMessageCommandInput, options?: __HttpHandlerOptions): Promise<SendMessageCommandOutput>;
87
+ sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
88
+ sendMessage(args: SendMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
89
+
90
+ sendMessageBatch(args: SendMessageBatchCommandInput, options?: __HttpHandlerOptions): Promise<SendMessageBatchCommandOutput>;
91
+ sendMessageBatch(args: SendMessageBatchCommandInput, cb: (err: any, data?: SendMessageBatchCommandOutput) => void): void;
92
+ sendMessageBatch(args: SendMessageBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageBatchCommandOutput) => void): void;
93
+
94
+ setQueueAttributes(args: SetQueueAttributesCommandInput, options?: __HttpHandlerOptions): Promise<SetQueueAttributesCommandOutput>;
95
+ setQueueAttributes(args: SetQueueAttributesCommandInput, cb: (err: any, data?: SetQueueAttributesCommandOutput) => void): void;
96
+ setQueueAttributes(args: SetQueueAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetQueueAttributesCommandOutput) => void): void;
97
+
98
+ tagQueue(args: TagQueueCommandInput, options?: __HttpHandlerOptions): Promise<TagQueueCommandOutput>;
99
+ tagQueue(args: TagQueueCommandInput, cb: (err: any, data?: TagQueueCommandOutput) => void): void;
100
+ tagQueue(args: TagQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagQueueCommandOutput) => void): void;
101
+
102
+ untagQueue(args: UntagQueueCommandInput, options?: __HttpHandlerOptions): Promise<UntagQueueCommandOutput>;
103
+ untagQueue(args: UntagQueueCommandInput, cb: (err: any, data?: UntagQueueCommandOutput) => void): void;
104
+ untagQueue(args: UntagQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagQueueCommandOutput) => void): void;
105
+ }
@@ -0,0 +1,95 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
10
+ import { ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput } from "./commands/ChangeMessageVisibilityBatchCommand";
11
+ import { ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput } from "./commands/ChangeMessageVisibilityCommand";
12
+ import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
13
+ import { DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput } from "./commands/DeleteMessageBatchCommand";
14
+ import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
15
+ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
16
+ import { GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput } from "./commands/GetQueueAttributesCommand";
17
+ import { GetQueueUrlCommandInput, GetQueueUrlCommandOutput } from "./commands/GetQueueUrlCommand";
18
+ import { ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput } from "./commands/ListDeadLetterSourceQueuesCommand";
19
+ import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
20
+ import { ListQueueTagsCommandInput, ListQueueTagsCommandOutput } from "./commands/ListQueueTagsCommand";
21
+ import { PurgeQueueCommandInput, PurgeQueueCommandOutput } from "./commands/PurgeQueueCommand";
22
+ import { ReceiveMessageCommandInput, ReceiveMessageCommandOutput } from "./commands/ReceiveMessageCommand";
23
+ import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
24
+ import { SendMessageBatchCommandInput, SendMessageBatchCommandOutput } from "./commands/SendMessageBatchCommand";
25
+ import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
26
+ import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "./commands/SetQueueAttributesCommand";
27
+ import { TagQueueCommandInput, TagQueueCommandOutput } from "./commands/TagQueueCommand";
28
+ import { UntagQueueCommandInput, UntagQueueCommandOutput } from "./commands/UntagQueueCommand";
29
+ export declare type ServiceInputTypes = AddPermissionCommandInput | ChangeMessageVisibilityBatchCommandInput | ChangeMessageVisibilityCommandInput | CreateQueueCommandInput | DeleteMessageBatchCommandInput | DeleteMessageCommandInput | DeleteQueueCommandInput | GetQueueAttributesCommandInput | GetQueueUrlCommandInput | ListDeadLetterSourceQueuesCommandInput | ListQueueTagsCommandInput | ListQueuesCommandInput | PurgeQueueCommandInput | ReceiveMessageCommandInput | RemovePermissionCommandInput | SendMessageBatchCommandInput | SendMessageCommandInput | SetQueueAttributesCommandInput | TagQueueCommandInput | UntagQueueCommandInput;
30
+ export declare type ServiceOutputTypes = AddPermissionCommandOutput | ChangeMessageVisibilityBatchCommandOutput | ChangeMessageVisibilityCommandOutput | CreateQueueCommandOutput | DeleteMessageBatchCommandOutput | DeleteMessageCommandOutput | DeleteQueueCommandOutput | GetQueueAttributesCommandOutput | GetQueueUrlCommandOutput | ListDeadLetterSourceQueuesCommandOutput | ListQueueTagsCommandOutput | ListQueuesCommandOutput | PurgeQueueCommandOutput | ReceiveMessageCommandOutput | RemovePermissionCommandOutput | SendMessageBatchCommandOutput | SendMessageCommandOutput | SetQueueAttributesCommandOutput | TagQueueCommandOutput | UntagQueueCommandOutput;
31
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
32
+
33
+ requestHandler?: __HttpHandler;
34
+
35
+ sha256?: __HashConstructor;
36
+
37
+ urlParser?: __UrlParser;
38
+
39
+ bodyLengthChecker?: (body: any) => number | undefined;
40
+
41
+ streamCollector?: __StreamCollector;
42
+
43
+ base64Decoder?: __Decoder;
44
+
45
+ base64Encoder?: __Encoder;
46
+
47
+ utf8Decoder?: __Decoder;
48
+
49
+ utf8Encoder?: __Encoder;
50
+
51
+ runtime?: string;
52
+
53
+ disableHostPrefix?: boolean;
54
+
55
+ maxAttempts?: number | __Provider<number>;
56
+
57
+ retryMode?: string | __Provider<string>;
58
+
59
+ logger?: __Logger;
60
+
61
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
62
+
63
+ useFipsEndpoint?: boolean | __Provider<boolean>;
64
+
65
+ serviceId?: string;
66
+
67
+ region?: string | __Provider<string>;
68
+
69
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
70
+
71
+ regionInfoProvider?: RegionInfoProvider;
72
+
73
+ md5?: __HashConstructor;
74
+
75
+ defaultUserAgentProvider?: Provider<__UserAgent>;
76
+
77
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
78
+ }
79
+ declare type SQSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
80
+
81
+ export interface SQSClientConfig extends SQSClientConfigType {
82
+ }
83
+ declare type SQSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
84
+
85
+ export interface SQSClientResolvedConfig extends SQSClientResolvedConfigType {
86
+ }
87
+
88
+ export declare class SQSClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig> {
89
+
90
+ readonly config: SQSClientResolvedConfig;
91
+ constructor(configuration: SQSClientConfig);
92
+
93
+ destroy(): void;
94
+ }
95
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AddPermissionRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface AddPermissionCommandInput extends AddPermissionRequest {
6
+ }
7
+ export interface AddPermissionCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class AddPermissionCommand extends $Command<AddPermissionCommandInput, AddPermissionCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: AddPermissionCommandInput;
12
+ constructor(input: AddPermissionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddPermissionCommandInput, AddPermissionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface ChangeMessageVisibilityBatchCommandInput extends ChangeMessageVisibilityBatchRequest {
6
+ }
7
+ export interface ChangeMessageVisibilityBatchCommandOutput extends ChangeMessageVisibilityBatchResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ChangeMessageVisibilityBatchCommand extends $Command<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: ChangeMessageVisibilityBatchCommandInput;
12
+ constructor(input: ChangeMessageVisibilityBatchCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChangeMessageVisibilityRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface ChangeMessageVisibilityCommandInput extends ChangeMessageVisibilityRequest {
6
+ }
7
+ export interface ChangeMessageVisibilityCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class ChangeMessageVisibilityCommand extends $Command<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: ChangeMessageVisibilityCommandInput;
12
+ constructor(input: ChangeMessageVisibilityCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateQueueRequest, CreateQueueResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface CreateQueueCommandInput extends CreateQueueRequest {
6
+ }
7
+ export interface CreateQueueCommandOutput extends CreateQueueResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: CreateQueueCommandInput;
12
+ constructor(input: CreateQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteMessageBatchRequest, DeleteMessageBatchResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface DeleteMessageBatchCommandInput extends DeleteMessageBatchRequest {
6
+ }
7
+ export interface DeleteMessageBatchCommandOutput extends DeleteMessageBatchResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteMessageBatchCommand extends $Command<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: DeleteMessageBatchCommandInput;
12
+ constructor(input: DeleteMessageBatchCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteMessageRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface DeleteMessageCommandInput extends DeleteMessageRequest {
6
+ }
7
+ export interface DeleteMessageCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteMessageCommand extends $Command<DeleteMessageCommandInput, DeleteMessageCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: DeleteMessageCommandInput;
12
+ constructor(input: DeleteMessageCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMessageCommandInput, DeleteMessageCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteQueueRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface DeleteQueueCommandInput extends DeleteQueueRequest {
6
+ }
7
+ export interface DeleteQueueCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: DeleteQueueCommandInput;
12
+ constructor(input: DeleteQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetQueueAttributesRequest, GetQueueAttributesResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface GetQueueAttributesCommandInput extends GetQueueAttributesRequest {
6
+ }
7
+ export interface GetQueueAttributesCommandOutput extends GetQueueAttributesResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetQueueAttributesCommand extends $Command<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: GetQueueAttributesCommandInput;
12
+ constructor(input: GetQueueAttributesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }