@aws-sdk/client-sqs 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/SQS.d.ts +364 -105
- package/dist-types/ts3.4/SQSClient.d.ts +250 -95
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SQSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +634 -545
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +36 -36
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
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
|
+
}
|