@aws-sdk/client-sqs 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SQS.d.ts +364 -105
  3. package/dist-types/ts3.4/SQSClient.d.ts +250 -95
  4. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +33 -17
  22. package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/index.d.ts +20 -20
  25. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  26. package/dist-types/ts3.4/index.d.ts +6 -6
  27. package/dist-types/ts3.4/models/SQSServiceException.d.ts +8 -6
  28. package/dist-types/ts3.4/models/index.d.ts +1 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +634 -545
  30. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  31. package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  34. package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -39
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -40
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -38
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  39. package/package.json +36 -36
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sqs
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-sqs
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-sqs
@@ -1,105 +1,364 @@
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
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AddPermissionCommandInput,
4
+ AddPermissionCommandOutput,
5
+ } from "./commands/AddPermissionCommand";
6
+ import {
7
+ ChangeMessageVisibilityBatchCommandInput,
8
+ ChangeMessageVisibilityBatchCommandOutput,
9
+ } from "./commands/ChangeMessageVisibilityBatchCommand";
10
+ import {
11
+ ChangeMessageVisibilityCommandInput,
12
+ ChangeMessageVisibilityCommandOutput,
13
+ } from "./commands/ChangeMessageVisibilityCommand";
14
+ import {
15
+ CreateQueueCommandInput,
16
+ CreateQueueCommandOutput,
17
+ } from "./commands/CreateQueueCommand";
18
+ import {
19
+ DeleteMessageBatchCommandInput,
20
+ DeleteMessageBatchCommandOutput,
21
+ } from "./commands/DeleteMessageBatchCommand";
22
+ import {
23
+ DeleteMessageCommandInput,
24
+ DeleteMessageCommandOutput,
25
+ } from "./commands/DeleteMessageCommand";
26
+ import {
27
+ DeleteQueueCommandInput,
28
+ DeleteQueueCommandOutput,
29
+ } from "./commands/DeleteQueueCommand";
30
+ import {
31
+ GetQueueAttributesCommandInput,
32
+ GetQueueAttributesCommandOutput,
33
+ } from "./commands/GetQueueAttributesCommand";
34
+ import {
35
+ GetQueueUrlCommandInput,
36
+ GetQueueUrlCommandOutput,
37
+ } from "./commands/GetQueueUrlCommand";
38
+ import {
39
+ ListDeadLetterSourceQueuesCommandInput,
40
+ ListDeadLetterSourceQueuesCommandOutput,
41
+ } from "./commands/ListDeadLetterSourceQueuesCommand";
42
+ import {
43
+ ListQueuesCommandInput,
44
+ ListQueuesCommandOutput,
45
+ } from "./commands/ListQueuesCommand";
46
+ import {
47
+ ListQueueTagsCommandInput,
48
+ ListQueueTagsCommandOutput,
49
+ } from "./commands/ListQueueTagsCommand";
50
+ import {
51
+ PurgeQueueCommandInput,
52
+ PurgeQueueCommandOutput,
53
+ } from "./commands/PurgeQueueCommand";
54
+ import {
55
+ ReceiveMessageCommandInput,
56
+ ReceiveMessageCommandOutput,
57
+ } from "./commands/ReceiveMessageCommand";
58
+ import {
59
+ RemovePermissionCommandInput,
60
+ RemovePermissionCommandOutput,
61
+ } from "./commands/RemovePermissionCommand";
62
+ import {
63
+ SendMessageBatchCommandInput,
64
+ SendMessageBatchCommandOutput,
65
+ } from "./commands/SendMessageBatchCommand";
66
+ import {
67
+ SendMessageCommandInput,
68
+ SendMessageCommandOutput,
69
+ } from "./commands/SendMessageCommand";
70
+ import {
71
+ SetQueueAttributesCommandInput,
72
+ SetQueueAttributesCommandOutput,
73
+ } from "./commands/SetQueueAttributesCommand";
74
+ import {
75
+ TagQueueCommandInput,
76
+ TagQueueCommandOutput,
77
+ } from "./commands/TagQueueCommand";
78
+ import {
79
+ UntagQueueCommandInput,
80
+ UntagQueueCommandOutput,
81
+ } from "./commands/UntagQueueCommand";
82
+ import { SQSClient } from "./SQSClient";
83
+
84
+ export declare class SQS extends SQSClient {
85
+ addPermission(
86
+ args: AddPermissionCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<AddPermissionCommandOutput>;
89
+ addPermission(
90
+ args: AddPermissionCommandInput,
91
+ cb: (err: any, data?: AddPermissionCommandOutput) => void
92
+ ): void;
93
+ addPermission(
94
+ args: AddPermissionCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: AddPermissionCommandOutput) => void
97
+ ): void;
98
+
99
+ changeMessageVisibility(
100
+ args: ChangeMessageVisibilityCommandInput,
101
+ options?: __HttpHandlerOptions
102
+ ): Promise<ChangeMessageVisibilityCommandOutput>;
103
+ changeMessageVisibility(
104
+ args: ChangeMessageVisibilityCommandInput,
105
+ cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void
106
+ ): void;
107
+ changeMessageVisibility(
108
+ args: ChangeMessageVisibilityCommandInput,
109
+ options: __HttpHandlerOptions,
110
+ cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void
111
+ ): void;
112
+
113
+ changeMessageVisibilityBatch(
114
+ args: ChangeMessageVisibilityBatchCommandInput,
115
+ options?: __HttpHandlerOptions
116
+ ): Promise<ChangeMessageVisibilityBatchCommandOutput>;
117
+ changeMessageVisibilityBatch(
118
+ args: ChangeMessageVisibilityBatchCommandInput,
119
+ cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void
120
+ ): void;
121
+ changeMessageVisibilityBatch(
122
+ args: ChangeMessageVisibilityBatchCommandInput,
123
+ options: __HttpHandlerOptions,
124
+ cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void
125
+ ): void;
126
+
127
+ createQueue(
128
+ args: CreateQueueCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<CreateQueueCommandOutput>;
131
+ createQueue(
132
+ args: CreateQueueCommandInput,
133
+ cb: (err: any, data?: CreateQueueCommandOutput) => void
134
+ ): void;
135
+ createQueue(
136
+ args: CreateQueueCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: CreateQueueCommandOutput) => void
139
+ ): void;
140
+
141
+ deleteMessage(
142
+ args: DeleteMessageCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<DeleteMessageCommandOutput>;
145
+ deleteMessage(
146
+ args: DeleteMessageCommandInput,
147
+ cb: (err: any, data?: DeleteMessageCommandOutput) => void
148
+ ): void;
149
+ deleteMessage(
150
+ args: DeleteMessageCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: DeleteMessageCommandOutput) => void
153
+ ): void;
154
+
155
+ deleteMessageBatch(
156
+ args: DeleteMessageBatchCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<DeleteMessageBatchCommandOutput>;
159
+ deleteMessageBatch(
160
+ args: DeleteMessageBatchCommandInput,
161
+ cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void
162
+ ): void;
163
+ deleteMessageBatch(
164
+ args: DeleteMessageBatchCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void
167
+ ): void;
168
+
169
+ deleteQueue(
170
+ args: DeleteQueueCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<DeleteQueueCommandOutput>;
173
+ deleteQueue(
174
+ args: DeleteQueueCommandInput,
175
+ cb: (err: any, data?: DeleteQueueCommandOutput) => void
176
+ ): void;
177
+ deleteQueue(
178
+ args: DeleteQueueCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: DeleteQueueCommandOutput) => void
181
+ ): void;
182
+
183
+ getQueueAttributes(
184
+ args: GetQueueAttributesCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<GetQueueAttributesCommandOutput>;
187
+ getQueueAttributes(
188
+ args: GetQueueAttributesCommandInput,
189
+ cb: (err: any, data?: GetQueueAttributesCommandOutput) => void
190
+ ): void;
191
+ getQueueAttributes(
192
+ args: GetQueueAttributesCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: GetQueueAttributesCommandOutput) => void
195
+ ): void;
196
+
197
+ getQueueUrl(
198
+ args: GetQueueUrlCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<GetQueueUrlCommandOutput>;
201
+ getQueueUrl(
202
+ args: GetQueueUrlCommandInput,
203
+ cb: (err: any, data?: GetQueueUrlCommandOutput) => void
204
+ ): void;
205
+ getQueueUrl(
206
+ args: GetQueueUrlCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: GetQueueUrlCommandOutput) => void
209
+ ): void;
210
+
211
+ listDeadLetterSourceQueues(
212
+ args: ListDeadLetterSourceQueuesCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<ListDeadLetterSourceQueuesCommandOutput>;
215
+ listDeadLetterSourceQueues(
216
+ args: ListDeadLetterSourceQueuesCommandInput,
217
+ cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void
218
+ ): void;
219
+ listDeadLetterSourceQueues(
220
+ args: ListDeadLetterSourceQueuesCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void
223
+ ): void;
224
+
225
+ listQueues(
226
+ args: ListQueuesCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<ListQueuesCommandOutput>;
229
+ listQueues(
230
+ args: ListQueuesCommandInput,
231
+ cb: (err: any, data?: ListQueuesCommandOutput) => void
232
+ ): void;
233
+ listQueues(
234
+ args: ListQueuesCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: ListQueuesCommandOutput) => void
237
+ ): void;
238
+
239
+ listQueueTags(
240
+ args: ListQueueTagsCommandInput,
241
+ options?: __HttpHandlerOptions
242
+ ): Promise<ListQueueTagsCommandOutput>;
243
+ listQueueTags(
244
+ args: ListQueueTagsCommandInput,
245
+ cb: (err: any, data?: ListQueueTagsCommandOutput) => void
246
+ ): void;
247
+ listQueueTags(
248
+ args: ListQueueTagsCommandInput,
249
+ options: __HttpHandlerOptions,
250
+ cb: (err: any, data?: ListQueueTagsCommandOutput) => void
251
+ ): void;
252
+
253
+ purgeQueue(
254
+ args: PurgeQueueCommandInput,
255
+ options?: __HttpHandlerOptions
256
+ ): Promise<PurgeQueueCommandOutput>;
257
+ purgeQueue(
258
+ args: PurgeQueueCommandInput,
259
+ cb: (err: any, data?: PurgeQueueCommandOutput) => void
260
+ ): void;
261
+ purgeQueue(
262
+ args: PurgeQueueCommandInput,
263
+ options: __HttpHandlerOptions,
264
+ cb: (err: any, data?: PurgeQueueCommandOutput) => void
265
+ ): void;
266
+
267
+ receiveMessage(
268
+ args: ReceiveMessageCommandInput,
269
+ options?: __HttpHandlerOptions
270
+ ): Promise<ReceiveMessageCommandOutput>;
271
+ receiveMessage(
272
+ args: ReceiveMessageCommandInput,
273
+ cb: (err: any, data?: ReceiveMessageCommandOutput) => void
274
+ ): void;
275
+ receiveMessage(
276
+ args: ReceiveMessageCommandInput,
277
+ options: __HttpHandlerOptions,
278
+ cb: (err: any, data?: ReceiveMessageCommandOutput) => void
279
+ ): void;
280
+
281
+ removePermission(
282
+ args: RemovePermissionCommandInput,
283
+ options?: __HttpHandlerOptions
284
+ ): Promise<RemovePermissionCommandOutput>;
285
+ removePermission(
286
+ args: RemovePermissionCommandInput,
287
+ cb: (err: any, data?: RemovePermissionCommandOutput) => void
288
+ ): void;
289
+ removePermission(
290
+ args: RemovePermissionCommandInput,
291
+ options: __HttpHandlerOptions,
292
+ cb: (err: any, data?: RemovePermissionCommandOutput) => void
293
+ ): void;
294
+
295
+ sendMessage(
296
+ args: SendMessageCommandInput,
297
+ options?: __HttpHandlerOptions
298
+ ): Promise<SendMessageCommandOutput>;
299
+ sendMessage(
300
+ args: SendMessageCommandInput,
301
+ cb: (err: any, data?: SendMessageCommandOutput) => void
302
+ ): void;
303
+ sendMessage(
304
+ args: SendMessageCommandInput,
305
+ options: __HttpHandlerOptions,
306
+ cb: (err: any, data?: SendMessageCommandOutput) => void
307
+ ): void;
308
+
309
+ sendMessageBatch(
310
+ args: SendMessageBatchCommandInput,
311
+ options?: __HttpHandlerOptions
312
+ ): Promise<SendMessageBatchCommandOutput>;
313
+ sendMessageBatch(
314
+ args: SendMessageBatchCommandInput,
315
+ cb: (err: any, data?: SendMessageBatchCommandOutput) => void
316
+ ): void;
317
+ sendMessageBatch(
318
+ args: SendMessageBatchCommandInput,
319
+ options: __HttpHandlerOptions,
320
+ cb: (err: any, data?: SendMessageBatchCommandOutput) => void
321
+ ): void;
322
+
323
+ setQueueAttributes(
324
+ args: SetQueueAttributesCommandInput,
325
+ options?: __HttpHandlerOptions
326
+ ): Promise<SetQueueAttributesCommandOutput>;
327
+ setQueueAttributes(
328
+ args: SetQueueAttributesCommandInput,
329
+ cb: (err: any, data?: SetQueueAttributesCommandOutput) => void
330
+ ): void;
331
+ setQueueAttributes(
332
+ args: SetQueueAttributesCommandInput,
333
+ options: __HttpHandlerOptions,
334
+ cb: (err: any, data?: SetQueueAttributesCommandOutput) => void
335
+ ): void;
336
+
337
+ tagQueue(
338
+ args: TagQueueCommandInput,
339
+ options?: __HttpHandlerOptions
340
+ ): Promise<TagQueueCommandOutput>;
341
+ tagQueue(
342
+ args: TagQueueCommandInput,
343
+ cb: (err: any, data?: TagQueueCommandOutput) => void
344
+ ): void;
345
+ tagQueue(
346
+ args: TagQueueCommandInput,
347
+ options: __HttpHandlerOptions,
348
+ cb: (err: any, data?: TagQueueCommandOutput) => void
349
+ ): void;
350
+
351
+ untagQueue(
352
+ args: UntagQueueCommandInput,
353
+ options?: __HttpHandlerOptions
354
+ ): Promise<UntagQueueCommandOutput>;
355
+ untagQueue(
356
+ args: UntagQueueCommandInput,
357
+ cb: (err: any, data?: UntagQueueCommandOutput) => void
358
+ ): void;
359
+ untagQueue(
360
+ args: UntagQueueCommandInput,
361
+ options: __HttpHandlerOptions,
362
+ cb: (err: any, data?: UntagQueueCommandOutput) => void
363
+ ): void;
364
+ }