@aws-sdk/client-sqs 3.169.0 → 3.171.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 +344 -105
  3. package/dist-types/ts3.4/SQSClient.d.ts +224 -95
  4. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
  17. package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
  19. package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
  22. package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
  23. package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -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 +7 -6
  28. package/dist-types/ts3.4/models/index.d.ts +1 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +452 -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 +66 -39
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -40
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sqs
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-sqs
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-sqs
@@ -1,105 +1,344 @@
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
+ export declare class SQS extends SQSClient {
84
+ addPermission(
85
+ args: AddPermissionCommandInput,
86
+ options?: __HttpHandlerOptions
87
+ ): Promise<AddPermissionCommandOutput>;
88
+ addPermission(
89
+ args: AddPermissionCommandInput,
90
+ cb: (err: any, data?: AddPermissionCommandOutput) => void
91
+ ): void;
92
+ addPermission(
93
+ args: AddPermissionCommandInput,
94
+ options: __HttpHandlerOptions,
95
+ cb: (err: any, data?: AddPermissionCommandOutput) => void
96
+ ): void;
97
+ changeMessageVisibility(
98
+ args: ChangeMessageVisibilityCommandInput,
99
+ options?: __HttpHandlerOptions
100
+ ): Promise<ChangeMessageVisibilityCommandOutput>;
101
+ changeMessageVisibility(
102
+ args: ChangeMessageVisibilityCommandInput,
103
+ cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void
104
+ ): void;
105
+ changeMessageVisibility(
106
+ args: ChangeMessageVisibilityCommandInput,
107
+ options: __HttpHandlerOptions,
108
+ cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void
109
+ ): void;
110
+ changeMessageVisibilityBatch(
111
+ args: ChangeMessageVisibilityBatchCommandInput,
112
+ options?: __HttpHandlerOptions
113
+ ): Promise<ChangeMessageVisibilityBatchCommandOutput>;
114
+ changeMessageVisibilityBatch(
115
+ args: ChangeMessageVisibilityBatchCommandInput,
116
+ cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void
117
+ ): void;
118
+ changeMessageVisibilityBatch(
119
+ args: ChangeMessageVisibilityBatchCommandInput,
120
+ options: __HttpHandlerOptions,
121
+ cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void
122
+ ): void;
123
+ createQueue(
124
+ args: CreateQueueCommandInput,
125
+ options?: __HttpHandlerOptions
126
+ ): Promise<CreateQueueCommandOutput>;
127
+ createQueue(
128
+ args: CreateQueueCommandInput,
129
+ cb: (err: any, data?: CreateQueueCommandOutput) => void
130
+ ): void;
131
+ createQueue(
132
+ args: CreateQueueCommandInput,
133
+ options: __HttpHandlerOptions,
134
+ cb: (err: any, data?: CreateQueueCommandOutput) => void
135
+ ): void;
136
+ deleteMessage(
137
+ args: DeleteMessageCommandInput,
138
+ options?: __HttpHandlerOptions
139
+ ): Promise<DeleteMessageCommandOutput>;
140
+ deleteMessage(
141
+ args: DeleteMessageCommandInput,
142
+ cb: (err: any, data?: DeleteMessageCommandOutput) => void
143
+ ): void;
144
+ deleteMessage(
145
+ args: DeleteMessageCommandInput,
146
+ options: __HttpHandlerOptions,
147
+ cb: (err: any, data?: DeleteMessageCommandOutput) => void
148
+ ): void;
149
+ deleteMessageBatch(
150
+ args: DeleteMessageBatchCommandInput,
151
+ options?: __HttpHandlerOptions
152
+ ): Promise<DeleteMessageBatchCommandOutput>;
153
+ deleteMessageBatch(
154
+ args: DeleteMessageBatchCommandInput,
155
+ cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void
156
+ ): void;
157
+ deleteMessageBatch(
158
+ args: DeleteMessageBatchCommandInput,
159
+ options: __HttpHandlerOptions,
160
+ cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void
161
+ ): void;
162
+ deleteQueue(
163
+ args: DeleteQueueCommandInput,
164
+ options?: __HttpHandlerOptions
165
+ ): Promise<DeleteQueueCommandOutput>;
166
+ deleteQueue(
167
+ args: DeleteQueueCommandInput,
168
+ cb: (err: any, data?: DeleteQueueCommandOutput) => void
169
+ ): void;
170
+ deleteQueue(
171
+ args: DeleteQueueCommandInput,
172
+ options: __HttpHandlerOptions,
173
+ cb: (err: any, data?: DeleteQueueCommandOutput) => void
174
+ ): void;
175
+ getQueueAttributes(
176
+ args: GetQueueAttributesCommandInput,
177
+ options?: __HttpHandlerOptions
178
+ ): Promise<GetQueueAttributesCommandOutput>;
179
+ getQueueAttributes(
180
+ args: GetQueueAttributesCommandInput,
181
+ cb: (err: any, data?: GetQueueAttributesCommandOutput) => void
182
+ ): void;
183
+ getQueueAttributes(
184
+ args: GetQueueAttributesCommandInput,
185
+ options: __HttpHandlerOptions,
186
+ cb: (err: any, data?: GetQueueAttributesCommandOutput) => void
187
+ ): void;
188
+ getQueueUrl(
189
+ args: GetQueueUrlCommandInput,
190
+ options?: __HttpHandlerOptions
191
+ ): Promise<GetQueueUrlCommandOutput>;
192
+ getQueueUrl(
193
+ args: GetQueueUrlCommandInput,
194
+ cb: (err: any, data?: GetQueueUrlCommandOutput) => void
195
+ ): void;
196
+ getQueueUrl(
197
+ args: GetQueueUrlCommandInput,
198
+ options: __HttpHandlerOptions,
199
+ cb: (err: any, data?: GetQueueUrlCommandOutput) => void
200
+ ): void;
201
+ listDeadLetterSourceQueues(
202
+ args: ListDeadLetterSourceQueuesCommandInput,
203
+ options?: __HttpHandlerOptions
204
+ ): Promise<ListDeadLetterSourceQueuesCommandOutput>;
205
+ listDeadLetterSourceQueues(
206
+ args: ListDeadLetterSourceQueuesCommandInput,
207
+ cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void
208
+ ): void;
209
+ listDeadLetterSourceQueues(
210
+ args: ListDeadLetterSourceQueuesCommandInput,
211
+ options: __HttpHandlerOptions,
212
+ cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void
213
+ ): void;
214
+ listQueues(
215
+ args: ListQueuesCommandInput,
216
+ options?: __HttpHandlerOptions
217
+ ): Promise<ListQueuesCommandOutput>;
218
+ listQueues(
219
+ args: ListQueuesCommandInput,
220
+ cb: (err: any, data?: ListQueuesCommandOutput) => void
221
+ ): void;
222
+ listQueues(
223
+ args: ListQueuesCommandInput,
224
+ options: __HttpHandlerOptions,
225
+ cb: (err: any, data?: ListQueuesCommandOutput) => void
226
+ ): void;
227
+ listQueueTags(
228
+ args: ListQueueTagsCommandInput,
229
+ options?: __HttpHandlerOptions
230
+ ): Promise<ListQueueTagsCommandOutput>;
231
+ listQueueTags(
232
+ args: ListQueueTagsCommandInput,
233
+ cb: (err: any, data?: ListQueueTagsCommandOutput) => void
234
+ ): void;
235
+ listQueueTags(
236
+ args: ListQueueTagsCommandInput,
237
+ options: __HttpHandlerOptions,
238
+ cb: (err: any, data?: ListQueueTagsCommandOutput) => void
239
+ ): void;
240
+ purgeQueue(
241
+ args: PurgeQueueCommandInput,
242
+ options?: __HttpHandlerOptions
243
+ ): Promise<PurgeQueueCommandOutput>;
244
+ purgeQueue(
245
+ args: PurgeQueueCommandInput,
246
+ cb: (err: any, data?: PurgeQueueCommandOutput) => void
247
+ ): void;
248
+ purgeQueue(
249
+ args: PurgeQueueCommandInput,
250
+ options: __HttpHandlerOptions,
251
+ cb: (err: any, data?: PurgeQueueCommandOutput) => void
252
+ ): void;
253
+ receiveMessage(
254
+ args: ReceiveMessageCommandInput,
255
+ options?: __HttpHandlerOptions
256
+ ): Promise<ReceiveMessageCommandOutput>;
257
+ receiveMessage(
258
+ args: ReceiveMessageCommandInput,
259
+ cb: (err: any, data?: ReceiveMessageCommandOutput) => void
260
+ ): void;
261
+ receiveMessage(
262
+ args: ReceiveMessageCommandInput,
263
+ options: __HttpHandlerOptions,
264
+ cb: (err: any, data?: ReceiveMessageCommandOutput) => void
265
+ ): void;
266
+ removePermission(
267
+ args: RemovePermissionCommandInput,
268
+ options?: __HttpHandlerOptions
269
+ ): Promise<RemovePermissionCommandOutput>;
270
+ removePermission(
271
+ args: RemovePermissionCommandInput,
272
+ cb: (err: any, data?: RemovePermissionCommandOutput) => void
273
+ ): void;
274
+ removePermission(
275
+ args: RemovePermissionCommandInput,
276
+ options: __HttpHandlerOptions,
277
+ cb: (err: any, data?: RemovePermissionCommandOutput) => void
278
+ ): void;
279
+ sendMessage(
280
+ args: SendMessageCommandInput,
281
+ options?: __HttpHandlerOptions
282
+ ): Promise<SendMessageCommandOutput>;
283
+ sendMessage(
284
+ args: SendMessageCommandInput,
285
+ cb: (err: any, data?: SendMessageCommandOutput) => void
286
+ ): void;
287
+ sendMessage(
288
+ args: SendMessageCommandInput,
289
+ options: __HttpHandlerOptions,
290
+ cb: (err: any, data?: SendMessageCommandOutput) => void
291
+ ): void;
292
+ sendMessageBatch(
293
+ args: SendMessageBatchCommandInput,
294
+ options?: __HttpHandlerOptions
295
+ ): Promise<SendMessageBatchCommandOutput>;
296
+ sendMessageBatch(
297
+ args: SendMessageBatchCommandInput,
298
+ cb: (err: any, data?: SendMessageBatchCommandOutput) => void
299
+ ): void;
300
+ sendMessageBatch(
301
+ args: SendMessageBatchCommandInput,
302
+ options: __HttpHandlerOptions,
303
+ cb: (err: any, data?: SendMessageBatchCommandOutput) => void
304
+ ): void;
305
+ setQueueAttributes(
306
+ args: SetQueueAttributesCommandInput,
307
+ options?: __HttpHandlerOptions
308
+ ): Promise<SetQueueAttributesCommandOutput>;
309
+ setQueueAttributes(
310
+ args: SetQueueAttributesCommandInput,
311
+ cb: (err: any, data?: SetQueueAttributesCommandOutput) => void
312
+ ): void;
313
+ setQueueAttributes(
314
+ args: SetQueueAttributesCommandInput,
315
+ options: __HttpHandlerOptions,
316
+ cb: (err: any, data?: SetQueueAttributesCommandOutput) => void
317
+ ): void;
318
+ tagQueue(
319
+ args: TagQueueCommandInput,
320
+ options?: __HttpHandlerOptions
321
+ ): Promise<TagQueueCommandOutput>;
322
+ tagQueue(
323
+ args: TagQueueCommandInput,
324
+ cb: (err: any, data?: TagQueueCommandOutput) => void
325
+ ): void;
326
+ tagQueue(
327
+ args: TagQueueCommandInput,
328
+ options: __HttpHandlerOptions,
329
+ cb: (err: any, data?: TagQueueCommandOutput) => void
330
+ ): void;
331
+ untagQueue(
332
+ args: UntagQueueCommandInput,
333
+ options?: __HttpHandlerOptions
334
+ ): Promise<UntagQueueCommandOutput>;
335
+ untagQueue(
336
+ args: UntagQueueCommandInput,
337
+ cb: (err: any, data?: UntagQueueCommandOutput) => void
338
+ ): void;
339
+ untagQueue(
340
+ args: UntagQueueCommandInput,
341
+ options: __HttpHandlerOptions,
342
+ cb: (err: any, data?: UntagQueueCommandOutput) => void
343
+ ): void;
344
+ }