@aws-sdk/client-sqs 3.345.0 → 3.347.1
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/README.md +34 -6
- package/dist-cjs/SQS.js +6 -0
- package/dist-cjs/commands/CancelMessageMoveTaskCommand.js +46 -0
- package/dist-cjs/commands/ListMessageMoveTasksCommand.js +46 -0
- package/dist-cjs/commands/StartMessageMoveTaskCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +28 -14
- package/dist-cjs/protocols/Aws_query.js +247 -1
- package/dist-es/SQS.js +6 -0
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +42 -0
- package/dist-es/commands/ListMessageMoveTasksCommand.js +42 -0
- package/dist-es/commands/StartMessageMoveTaskCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +25 -12
- package/dist-es/protocols/Aws_query.js +242 -2
- package/dist-types/SQS.d.ts +31 -6
- package/dist-types/SQSClient.d.ts +15 -8
- package/dist-types/commands/AddPermissionCommand.d.ts +17 -23
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +92 -0
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +9 -12
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +22 -13
- package/dist-types/commands/CreateQueueCommand.d.ts +17 -16
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +6 -10
- package/dist-types/commands/DeleteMessageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +13 -8
- package/dist-types/commands/GetQueueUrlCommand.d.ts +7 -4
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +11 -10
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +93 -0
- package/dist-types/commands/ListQueueTagsCommand.d.ts +3 -2
- package/dist-types/commands/ListQueuesCommand.d.ts +12 -10
- package/dist-types/commands/PurgeQueueCommand.d.ts +7 -5
- package/dist-types/commands/ReceiveMessageCommand.d.ts +25 -14
- package/dist-types/commands/RemovePermissionCommand.d.ts +3 -2
- package/dist-types/commands/SendMessageBatchCommand.d.ts +14 -13
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +7 -3
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +100 -0
- package/dist-types/commands/TagQueueCommand.d.ts +1 -1
- package/dist-types/commands/UntagQueueCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +10 -6
- package/dist-types/models/models_0.d.ts +852 -359
- package/dist-types/protocols/Aws_query.d.ts +27 -0
- package/dist-types/ts3.4/SQS.d.ts +51 -0
- package/dist-types/ts3.4/SQSClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -7
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
- package/package.json +31 -31
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { AddPermissionCommandInput, AddPermissionCommandOutput } from "../commands/AddPermissionCommand";
|
|
4
|
+
import { CancelMessageMoveTaskCommandInput, CancelMessageMoveTaskCommandOutput } from "../commands/CancelMessageMoveTaskCommand";
|
|
4
5
|
import { ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput } from "../commands/ChangeMessageVisibilityBatchCommand";
|
|
5
6
|
import { ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput } from "../commands/ChangeMessageVisibilityCommand";
|
|
6
7
|
import { CreateQueueCommandInput, CreateQueueCommandOutput } from "../commands/CreateQueueCommand";
|
|
@@ -10,6 +11,7 @@ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "../commands/D
|
|
|
10
11
|
import { GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput } from "../commands/GetQueueAttributesCommand";
|
|
11
12
|
import { GetQueueUrlCommandInput, GetQueueUrlCommandOutput } from "../commands/GetQueueUrlCommand";
|
|
12
13
|
import { ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput } from "../commands/ListDeadLetterSourceQueuesCommand";
|
|
14
|
+
import { ListMessageMoveTasksCommandInput, ListMessageMoveTasksCommandOutput } from "../commands/ListMessageMoveTasksCommand";
|
|
13
15
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
|
|
14
16
|
import { ListQueueTagsCommandInput, ListQueueTagsCommandOutput } from "../commands/ListQueueTagsCommand";
|
|
15
17
|
import { PurgeQueueCommandInput, PurgeQueueCommandOutput } from "../commands/PurgeQueueCommand";
|
|
@@ -18,12 +20,17 @@ import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "../
|
|
|
18
20
|
import { SendMessageBatchCommandInput, SendMessageBatchCommandOutput } from "../commands/SendMessageBatchCommand";
|
|
19
21
|
import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/SendMessageCommand";
|
|
20
22
|
import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "../commands/SetQueueAttributesCommand";
|
|
23
|
+
import { StartMessageMoveTaskCommandInput, StartMessageMoveTaskCommandOutput } from "../commands/StartMessageMoveTaskCommand";
|
|
21
24
|
import { TagQueueCommandInput, TagQueueCommandOutput } from "../commands/TagQueueCommand";
|
|
22
25
|
import { UntagQueueCommandInput, UntagQueueCommandOutput } from "../commands/UntagQueueCommand";
|
|
23
26
|
/**
|
|
24
27
|
* serializeAws_queryAddPermissionCommand
|
|
25
28
|
*/
|
|
26
29
|
export declare const se_AddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_queryCancelMessageMoveTaskCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_CancelMessageMoveTaskCommand: (input: CancelMessageMoveTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
34
|
/**
|
|
28
35
|
* serializeAws_queryChangeMessageVisibilityCommand
|
|
29
36
|
*/
|
|
@@ -60,6 +67,10 @@ export declare const se_GetQueueUrlCommand: (input: GetQueueUrlCommandInput, con
|
|
|
60
67
|
* serializeAws_queryListDeadLetterSourceQueuesCommand
|
|
61
68
|
*/
|
|
62
69
|
export declare const se_ListDeadLetterSourceQueuesCommand: (input: ListDeadLetterSourceQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_queryListMessageMoveTasksCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_ListMessageMoveTasksCommand: (input: ListMessageMoveTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
74
|
/**
|
|
64
75
|
* serializeAws_queryListQueuesCommand
|
|
65
76
|
*/
|
|
@@ -92,6 +103,10 @@ export declare const se_SendMessageBatchCommand: (input: SendMessageBatchCommand
|
|
|
92
103
|
* serializeAws_querySetQueueAttributesCommand
|
|
93
104
|
*/
|
|
94
105
|
export declare const se_SetQueueAttributesCommand: (input: SetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* serializeAws_queryStartMessageMoveTaskCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const se_StartMessageMoveTaskCommand: (input: StartMessageMoveTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
110
|
/**
|
|
96
111
|
* serializeAws_queryTagQueueCommand
|
|
97
112
|
*/
|
|
@@ -104,6 +119,10 @@ export declare const se_UntagQueueCommand: (input: UntagQueueCommandInput, conte
|
|
|
104
119
|
* deserializeAws_queryAddPermissionCommand
|
|
105
120
|
*/
|
|
106
121
|
export declare const de_AddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* deserializeAws_queryCancelMessageMoveTaskCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const de_CancelMessageMoveTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMessageMoveTaskCommandOutput>;
|
|
107
126
|
/**
|
|
108
127
|
* deserializeAws_queryChangeMessageVisibilityCommand
|
|
109
128
|
*/
|
|
@@ -140,6 +159,10 @@ export declare const de_GetQueueUrlCommand: (output: __HttpResponse, context: __
|
|
|
140
159
|
* deserializeAws_queryListDeadLetterSourceQueuesCommand
|
|
141
160
|
*/
|
|
142
161
|
export declare const de_ListDeadLetterSourceQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
|
|
162
|
+
/**
|
|
163
|
+
* deserializeAws_queryListMessageMoveTasksCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const de_ListMessageMoveTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMessageMoveTasksCommandOutput>;
|
|
143
166
|
/**
|
|
144
167
|
* deserializeAws_queryListQueuesCommand
|
|
145
168
|
*/
|
|
@@ -172,6 +195,10 @@ export declare const de_SendMessageBatchCommand: (output: __HttpResponse, contex
|
|
|
172
195
|
* deserializeAws_querySetQueueAttributesCommand
|
|
173
196
|
*/
|
|
174
197
|
export declare const de_SetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetQueueAttributesCommandOutput>;
|
|
198
|
+
/**
|
|
199
|
+
* deserializeAws_queryStartMessageMoveTaskCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const de_StartMessageMoveTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMessageMoveTaskCommandOutput>;
|
|
175
202
|
/**
|
|
176
203
|
* deserializeAws_queryTagQueueCommand
|
|
177
204
|
*/
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
AddPermissionCommandInput,
|
|
4
4
|
AddPermissionCommandOutput,
|
|
5
5
|
} from "./commands/AddPermissionCommand";
|
|
6
|
+
import {
|
|
7
|
+
CancelMessageMoveTaskCommandInput,
|
|
8
|
+
CancelMessageMoveTaskCommandOutput,
|
|
9
|
+
} from "./commands/CancelMessageMoveTaskCommand";
|
|
6
10
|
import {
|
|
7
11
|
ChangeMessageVisibilityBatchCommandInput,
|
|
8
12
|
ChangeMessageVisibilityBatchCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
ListDeadLetterSourceQueuesCommandInput,
|
|
40
44
|
ListDeadLetterSourceQueuesCommandOutput,
|
|
41
45
|
} from "./commands/ListDeadLetterSourceQueuesCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListMessageMoveTasksCommandInput,
|
|
48
|
+
ListMessageMoveTasksCommandOutput,
|
|
49
|
+
} from "./commands/ListMessageMoveTasksCommand";
|
|
42
50
|
import {
|
|
43
51
|
ListQueuesCommandInput,
|
|
44
52
|
ListQueuesCommandOutput,
|
|
@@ -71,6 +79,10 @@ import {
|
|
|
71
79
|
SetQueueAttributesCommandInput,
|
|
72
80
|
SetQueueAttributesCommandOutput,
|
|
73
81
|
} from "./commands/SetQueueAttributesCommand";
|
|
82
|
+
import {
|
|
83
|
+
StartMessageMoveTaskCommandInput,
|
|
84
|
+
StartMessageMoveTaskCommandOutput,
|
|
85
|
+
} from "./commands/StartMessageMoveTaskCommand";
|
|
74
86
|
import {
|
|
75
87
|
TagQueueCommandInput,
|
|
76
88
|
TagQueueCommandOutput,
|
|
@@ -94,6 +106,19 @@ export interface SQS {
|
|
|
94
106
|
options: __HttpHandlerOptions,
|
|
95
107
|
cb: (err: any, data?: AddPermissionCommandOutput) => void
|
|
96
108
|
): void;
|
|
109
|
+
cancelMessageMoveTask(
|
|
110
|
+
args: CancelMessageMoveTaskCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<CancelMessageMoveTaskCommandOutput>;
|
|
113
|
+
cancelMessageMoveTask(
|
|
114
|
+
args: CancelMessageMoveTaskCommandInput,
|
|
115
|
+
cb: (err: any, data?: CancelMessageMoveTaskCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
cancelMessageMoveTask(
|
|
118
|
+
args: CancelMessageMoveTaskCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: CancelMessageMoveTaskCommandOutput) => void
|
|
121
|
+
): void;
|
|
97
122
|
changeMessageVisibility(
|
|
98
123
|
args: ChangeMessageVisibilityCommandInput,
|
|
99
124
|
options?: __HttpHandlerOptions
|
|
@@ -211,6 +236,19 @@ export interface SQS {
|
|
|
211
236
|
options: __HttpHandlerOptions,
|
|
212
237
|
cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void
|
|
213
238
|
): void;
|
|
239
|
+
listMessageMoveTasks(
|
|
240
|
+
args: ListMessageMoveTasksCommandInput,
|
|
241
|
+
options?: __HttpHandlerOptions
|
|
242
|
+
): Promise<ListMessageMoveTasksCommandOutput>;
|
|
243
|
+
listMessageMoveTasks(
|
|
244
|
+
args: ListMessageMoveTasksCommandInput,
|
|
245
|
+
cb: (err: any, data?: ListMessageMoveTasksCommandOutput) => void
|
|
246
|
+
): void;
|
|
247
|
+
listMessageMoveTasks(
|
|
248
|
+
args: ListMessageMoveTasksCommandInput,
|
|
249
|
+
options: __HttpHandlerOptions,
|
|
250
|
+
cb: (err: any, data?: ListMessageMoveTasksCommandOutput) => void
|
|
251
|
+
): void;
|
|
214
252
|
listQueues(
|
|
215
253
|
args: ListQueuesCommandInput,
|
|
216
254
|
options?: __HttpHandlerOptions
|
|
@@ -315,6 +353,19 @@ export interface SQS {
|
|
|
315
353
|
options: __HttpHandlerOptions,
|
|
316
354
|
cb: (err: any, data?: SetQueueAttributesCommandOutput) => void
|
|
317
355
|
): void;
|
|
356
|
+
startMessageMoveTask(
|
|
357
|
+
args: StartMessageMoveTaskCommandInput,
|
|
358
|
+
options?: __HttpHandlerOptions
|
|
359
|
+
): Promise<StartMessageMoveTaskCommandOutput>;
|
|
360
|
+
startMessageMoveTask(
|
|
361
|
+
args: StartMessageMoveTaskCommandInput,
|
|
362
|
+
cb: (err: any, data?: StartMessageMoveTaskCommandOutput) => void
|
|
363
|
+
): void;
|
|
364
|
+
startMessageMoveTask(
|
|
365
|
+
args: StartMessageMoveTaskCommandInput,
|
|
366
|
+
options: __HttpHandlerOptions,
|
|
367
|
+
cb: (err: any, data?: StartMessageMoveTaskCommandOutput) => void
|
|
368
|
+
): void;
|
|
318
369
|
tagQueue(
|
|
319
370
|
args: TagQueueCommandInput,
|
|
320
371
|
options?: __HttpHandlerOptions
|
|
@@ -50,6 +50,10 @@ import {
|
|
|
50
50
|
AddPermissionCommandInput,
|
|
51
51
|
AddPermissionCommandOutput,
|
|
52
52
|
} from "./commands/AddPermissionCommand";
|
|
53
|
+
import {
|
|
54
|
+
CancelMessageMoveTaskCommandInput,
|
|
55
|
+
CancelMessageMoveTaskCommandOutput,
|
|
56
|
+
} from "./commands/CancelMessageMoveTaskCommand";
|
|
53
57
|
import {
|
|
54
58
|
ChangeMessageVisibilityBatchCommandInput,
|
|
55
59
|
ChangeMessageVisibilityBatchCommandOutput,
|
|
@@ -86,6 +90,10 @@ import {
|
|
|
86
90
|
ListDeadLetterSourceQueuesCommandInput,
|
|
87
91
|
ListDeadLetterSourceQueuesCommandOutput,
|
|
88
92
|
} from "./commands/ListDeadLetterSourceQueuesCommand";
|
|
93
|
+
import {
|
|
94
|
+
ListMessageMoveTasksCommandInput,
|
|
95
|
+
ListMessageMoveTasksCommandOutput,
|
|
96
|
+
} from "./commands/ListMessageMoveTasksCommand";
|
|
89
97
|
import {
|
|
90
98
|
ListQueuesCommandInput,
|
|
91
99
|
ListQueuesCommandOutput,
|
|
@@ -118,6 +126,10 @@ import {
|
|
|
118
126
|
SetQueueAttributesCommandInput,
|
|
119
127
|
SetQueueAttributesCommandOutput,
|
|
120
128
|
} from "./commands/SetQueueAttributesCommand";
|
|
129
|
+
import {
|
|
130
|
+
StartMessageMoveTaskCommandInput,
|
|
131
|
+
StartMessageMoveTaskCommandOutput,
|
|
132
|
+
} from "./commands/StartMessageMoveTaskCommand";
|
|
121
133
|
import {
|
|
122
134
|
TagQueueCommandInput,
|
|
123
135
|
TagQueueCommandOutput,
|
|
@@ -134,6 +146,7 @@ import {
|
|
|
134
146
|
export { __Client };
|
|
135
147
|
export type ServiceInputTypes =
|
|
136
148
|
| AddPermissionCommandInput
|
|
149
|
+
| CancelMessageMoveTaskCommandInput
|
|
137
150
|
| ChangeMessageVisibilityBatchCommandInput
|
|
138
151
|
| ChangeMessageVisibilityCommandInput
|
|
139
152
|
| CreateQueueCommandInput
|
|
@@ -143,6 +156,7 @@ export type ServiceInputTypes =
|
|
|
143
156
|
| GetQueueAttributesCommandInput
|
|
144
157
|
| GetQueueUrlCommandInput
|
|
145
158
|
| ListDeadLetterSourceQueuesCommandInput
|
|
159
|
+
| ListMessageMoveTasksCommandInput
|
|
146
160
|
| ListQueueTagsCommandInput
|
|
147
161
|
| ListQueuesCommandInput
|
|
148
162
|
| PurgeQueueCommandInput
|
|
@@ -151,10 +165,12 @@ export type ServiceInputTypes =
|
|
|
151
165
|
| SendMessageBatchCommandInput
|
|
152
166
|
| SendMessageCommandInput
|
|
153
167
|
| SetQueueAttributesCommandInput
|
|
168
|
+
| StartMessageMoveTaskCommandInput
|
|
154
169
|
| TagQueueCommandInput
|
|
155
170
|
| UntagQueueCommandInput;
|
|
156
171
|
export type ServiceOutputTypes =
|
|
157
172
|
| AddPermissionCommandOutput
|
|
173
|
+
| CancelMessageMoveTaskCommandOutput
|
|
158
174
|
| ChangeMessageVisibilityBatchCommandOutput
|
|
159
175
|
| ChangeMessageVisibilityCommandOutput
|
|
160
176
|
| CreateQueueCommandOutput
|
|
@@ -164,6 +180,7 @@ export type ServiceOutputTypes =
|
|
|
164
180
|
| GetQueueAttributesCommandOutput
|
|
165
181
|
| GetQueueUrlCommandOutput
|
|
166
182
|
| ListDeadLetterSourceQueuesCommandOutput
|
|
183
|
+
| ListMessageMoveTasksCommandOutput
|
|
167
184
|
| ListQueueTagsCommandOutput
|
|
168
185
|
| ListQueuesCommandOutput
|
|
169
186
|
| PurgeQueueCommandOutput
|
|
@@ -172,6 +189,7 @@ export type ServiceOutputTypes =
|
|
|
172
189
|
| SendMessageBatchCommandOutput
|
|
173
190
|
| SendMessageCommandOutput
|
|
174
191
|
| SetQueueAttributesCommandOutput
|
|
192
|
+
| StartMessageMoveTaskCommandOutput
|
|
175
193
|
| TagQueueCommandOutput
|
|
176
194
|
| UntagQueueCommandOutput;
|
|
177
195
|
export interface ClientDefaults
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CancelMessageMoveTaskRequest,
|
|
11
|
+
CancelMessageMoveTaskResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SQSClientResolvedConfig,
|
|
17
|
+
} from "../SQSClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CancelMessageMoveTaskCommandInput
|
|
20
|
+
extends CancelMessageMoveTaskRequest {}
|
|
21
|
+
export interface CancelMessageMoveTaskCommandOutput
|
|
22
|
+
extends CancelMessageMoveTaskResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CancelMessageMoveTaskCommand extends $Command<
|
|
25
|
+
CancelMessageMoveTaskCommandInput,
|
|
26
|
+
CancelMessageMoveTaskCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CancelMessageMoveTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CancelMessageMoveTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: SQSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CancelMessageMoveTaskCommandInput,
|
|
38
|
+
CancelMessageMoveTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListMessageMoveTasksRequest,
|
|
11
|
+
ListMessageMoveTasksResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SQSClientResolvedConfig,
|
|
17
|
+
} from "../SQSClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListMessageMoveTasksCommandInput
|
|
20
|
+
extends ListMessageMoveTasksRequest {}
|
|
21
|
+
export interface ListMessageMoveTasksCommandOutput
|
|
22
|
+
extends ListMessageMoveTasksResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListMessageMoveTasksCommand extends $Command<
|
|
25
|
+
ListMessageMoveTasksCommandInput,
|
|
26
|
+
ListMessageMoveTasksCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListMessageMoveTasksCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListMessageMoveTasksCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: SQSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListMessageMoveTasksCommandInput,
|
|
38
|
+
ListMessageMoveTasksCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
StartMessageMoveTaskRequest,
|
|
11
|
+
StartMessageMoveTaskResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SQSClientResolvedConfig,
|
|
17
|
+
} from "../SQSClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartMessageMoveTaskCommandInput
|
|
20
|
+
extends StartMessageMoveTaskRequest {}
|
|
21
|
+
export interface StartMessageMoveTaskCommandOutput
|
|
22
|
+
extends StartMessageMoveTaskResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartMessageMoveTaskCommand extends $Command<
|
|
25
|
+
StartMessageMoveTaskCommandInput,
|
|
26
|
+
StartMessageMoveTaskCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartMessageMoveTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartMessageMoveTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: SQSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartMessageMoveTaskCommandInput,
|
|
38
|
+
StartMessageMoveTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./AddPermissionCommand";
|
|
2
|
+
export * from "./CancelMessageMoveTaskCommand";
|
|
2
3
|
export * from "./ChangeMessageVisibilityBatchCommand";
|
|
3
4
|
export * from "./ChangeMessageVisibilityCommand";
|
|
4
5
|
export * from "./CreateQueueCommand";
|
|
@@ -8,6 +9,7 @@ export * from "./DeleteQueueCommand";
|
|
|
8
9
|
export * from "./GetQueueAttributesCommand";
|
|
9
10
|
export * from "./GetQueueUrlCommand";
|
|
10
11
|
export * from "./ListDeadLetterSourceQueuesCommand";
|
|
12
|
+
export * from "./ListMessageMoveTasksCommand";
|
|
11
13
|
export * from "./ListQueueTagsCommand";
|
|
12
14
|
export * from "./ListQueuesCommand";
|
|
13
15
|
export * from "./PurgeQueueCommand";
|
|
@@ -16,5 +18,6 @@ export * from "./RemovePermissionCommand";
|
|
|
16
18
|
export * from "./SendMessageBatchCommand";
|
|
17
19
|
export * from "./SendMessageCommand";
|
|
18
20
|
export * from "./SetQueueAttributesCommand";
|
|
21
|
+
export * from "./StartMessageMoveTaskCommand";
|
|
19
22
|
export * from "./TagQueueCommand";
|
|
20
23
|
export * from "./UntagQueueCommand";
|
|
@@ -11,6 +11,26 @@ export declare class OverLimit extends __BaseException {
|
|
|
11
11
|
readonly $fault: "client";
|
|
12
12
|
constructor(opts: __ExceptionOptionType<OverLimit, __BaseException>);
|
|
13
13
|
}
|
|
14
|
+
export interface CancelMessageMoveTaskRequest {
|
|
15
|
+
TaskHandle: string | undefined;
|
|
16
|
+
}
|
|
17
|
+
export interface CancelMessageMoveTaskResult {
|
|
18
|
+
ApproximateNumberOfMessagesMoved?: number;
|
|
19
|
+
}
|
|
20
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
21
|
+
readonly name: "ResourceNotFoundException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
28
|
+
readonly name: "UnsupportedOperation";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
14
34
|
export interface ChangeMessageVisibilityRequest {
|
|
15
35
|
QueueUrl: string | undefined;
|
|
16
36
|
ReceiptHandle: string | undefined;
|
|
@@ -184,6 +204,24 @@ export interface ListDeadLetterSourceQueuesResult {
|
|
|
184
204
|
queueUrls: string[] | undefined;
|
|
185
205
|
NextToken?: string;
|
|
186
206
|
}
|
|
207
|
+
export interface ListMessageMoveTasksRequest {
|
|
208
|
+
SourceArn: string | undefined;
|
|
209
|
+
MaxResults?: number;
|
|
210
|
+
}
|
|
211
|
+
export interface ListMessageMoveTasksResultEntry {
|
|
212
|
+
TaskHandle?: string;
|
|
213
|
+
Status?: string;
|
|
214
|
+
SourceArn?: string;
|
|
215
|
+
DestinationArn?: string;
|
|
216
|
+
MaxNumberOfMessagesPerSecond?: number;
|
|
217
|
+
ApproximateNumberOfMessagesMoved?: number;
|
|
218
|
+
ApproximateNumberOfMessagesToMove?: number;
|
|
219
|
+
FailureReason?: string;
|
|
220
|
+
StartedTimestamp?: number;
|
|
221
|
+
}
|
|
222
|
+
export interface ListMessageMoveTasksResult {
|
|
223
|
+
Results?: ListMessageMoveTasksResultEntry[];
|
|
224
|
+
}
|
|
187
225
|
export interface ListQueuesRequest {
|
|
188
226
|
QueueNamePrefix?: string;
|
|
189
227
|
NextToken?: string;
|
|
@@ -222,6 +260,7 @@ export declare const MessageSystemAttributeName: {
|
|
|
222
260
|
readonly AWSTraceHeader: "AWSTraceHeader";
|
|
223
261
|
readonly ApproximateFirstReceiveTimestamp: "ApproximateFirstReceiveTimestamp";
|
|
224
262
|
readonly ApproximateReceiveCount: "ApproximateReceiveCount";
|
|
263
|
+
readonly DeadLetterQueueSourceArn: "DeadLetterQueueSourceArn";
|
|
225
264
|
readonly MessageDeduplicationId: "MessageDeduplicationId";
|
|
226
265
|
readonly MessageGroupId: "MessageGroupId";
|
|
227
266
|
readonly SenderId: "SenderId";
|
|
@@ -288,13 +327,6 @@ export interface SendMessageResult {
|
|
|
288
327
|
MessageId?: string;
|
|
289
328
|
SequenceNumber?: string;
|
|
290
329
|
}
|
|
291
|
-
export declare class UnsupportedOperation extends __BaseException {
|
|
292
|
-
readonly name: "UnsupportedOperation";
|
|
293
|
-
readonly $fault: "client";
|
|
294
|
-
constructor(
|
|
295
|
-
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
296
|
-
);
|
|
297
|
-
}
|
|
298
330
|
export declare class BatchRequestTooLong extends __BaseException {
|
|
299
331
|
readonly name: "BatchRequestTooLong";
|
|
300
332
|
readonly $fault: "client";
|
|
@@ -331,6 +363,14 @@ export interface SetQueueAttributesRequest {
|
|
|
331
363
|
QueueUrl: string | undefined;
|
|
332
364
|
Attributes: Record<string, string> | undefined;
|
|
333
365
|
}
|
|
366
|
+
export interface StartMessageMoveTaskRequest {
|
|
367
|
+
SourceArn: string | undefined;
|
|
368
|
+
DestinationArn?: string;
|
|
369
|
+
MaxNumberOfMessagesPerSecond?: number;
|
|
370
|
+
}
|
|
371
|
+
export interface StartMessageMoveTaskResult {
|
|
372
|
+
TaskHandle?: string;
|
|
373
|
+
}
|
|
334
374
|
export interface TagQueueRequest {
|
|
335
375
|
QueueUrl: string | undefined;
|
|
336
376
|
Tags: Record<string, string> | undefined;
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
AddPermissionCommandInput,
|
|
8
8
|
AddPermissionCommandOutput,
|
|
9
9
|
} from "../commands/AddPermissionCommand";
|
|
10
|
+
import {
|
|
11
|
+
CancelMessageMoveTaskCommandInput,
|
|
12
|
+
CancelMessageMoveTaskCommandOutput,
|
|
13
|
+
} from "../commands/CancelMessageMoveTaskCommand";
|
|
10
14
|
import {
|
|
11
15
|
ChangeMessageVisibilityBatchCommandInput,
|
|
12
16
|
ChangeMessageVisibilityBatchCommandOutput,
|
|
@@ -43,6 +47,10 @@ import {
|
|
|
43
47
|
ListDeadLetterSourceQueuesCommandInput,
|
|
44
48
|
ListDeadLetterSourceQueuesCommandOutput,
|
|
45
49
|
} from "../commands/ListDeadLetterSourceQueuesCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListMessageMoveTasksCommandInput,
|
|
52
|
+
ListMessageMoveTasksCommandOutput,
|
|
53
|
+
} from "../commands/ListMessageMoveTasksCommand";
|
|
46
54
|
import {
|
|
47
55
|
ListQueuesCommandInput,
|
|
48
56
|
ListQueuesCommandOutput,
|
|
@@ -75,6 +83,10 @@ import {
|
|
|
75
83
|
SetQueueAttributesCommandInput,
|
|
76
84
|
SetQueueAttributesCommandOutput,
|
|
77
85
|
} from "../commands/SetQueueAttributesCommand";
|
|
86
|
+
import {
|
|
87
|
+
StartMessageMoveTaskCommandInput,
|
|
88
|
+
StartMessageMoveTaskCommandOutput,
|
|
89
|
+
} from "../commands/StartMessageMoveTaskCommand";
|
|
78
90
|
import {
|
|
79
91
|
TagQueueCommandInput,
|
|
80
92
|
TagQueueCommandOutput,
|
|
@@ -87,6 +99,10 @@ export declare const se_AddPermissionCommand: (
|
|
|
87
99
|
input: AddPermissionCommandInput,
|
|
88
100
|
context: __SerdeContext
|
|
89
101
|
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_CancelMessageMoveTaskCommand: (
|
|
103
|
+
input: CancelMessageMoveTaskCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
90
106
|
export declare const se_ChangeMessageVisibilityCommand: (
|
|
91
107
|
input: ChangeMessageVisibilityCommandInput,
|
|
92
108
|
context: __SerdeContext
|
|
@@ -123,6 +139,10 @@ export declare const se_ListDeadLetterSourceQueuesCommand: (
|
|
|
123
139
|
input: ListDeadLetterSourceQueuesCommandInput,
|
|
124
140
|
context: __SerdeContext
|
|
125
141
|
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_ListMessageMoveTasksCommand: (
|
|
143
|
+
input: ListMessageMoveTasksCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
126
146
|
export declare const se_ListQueuesCommand: (
|
|
127
147
|
input: ListQueuesCommandInput,
|
|
128
148
|
context: __SerdeContext
|
|
@@ -155,6 +175,10 @@ export declare const se_SetQueueAttributesCommand: (
|
|
|
155
175
|
input: SetQueueAttributesCommandInput,
|
|
156
176
|
context: __SerdeContext
|
|
157
177
|
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_StartMessageMoveTaskCommand: (
|
|
179
|
+
input: StartMessageMoveTaskCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
158
182
|
export declare const se_TagQueueCommand: (
|
|
159
183
|
input: TagQueueCommandInput,
|
|
160
184
|
context: __SerdeContext
|
|
@@ -167,6 +191,10 @@ export declare const de_AddPermissionCommand: (
|
|
|
167
191
|
output: __HttpResponse,
|
|
168
192
|
context: __SerdeContext
|
|
169
193
|
) => Promise<AddPermissionCommandOutput>;
|
|
194
|
+
export declare const de_CancelMessageMoveTaskCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<CancelMessageMoveTaskCommandOutput>;
|
|
170
198
|
export declare const de_ChangeMessageVisibilityCommand: (
|
|
171
199
|
output: __HttpResponse,
|
|
172
200
|
context: __SerdeContext
|
|
@@ -203,6 +231,10 @@ export declare const de_ListDeadLetterSourceQueuesCommand: (
|
|
|
203
231
|
output: __HttpResponse,
|
|
204
232
|
context: __SerdeContext
|
|
205
233
|
) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
|
|
234
|
+
export declare const de_ListMessageMoveTasksCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<ListMessageMoveTasksCommandOutput>;
|
|
206
238
|
export declare const de_ListQueuesCommand: (
|
|
207
239
|
output: __HttpResponse,
|
|
208
240
|
context: __SerdeContext
|
|
@@ -235,6 +267,10 @@ export declare const de_SetQueueAttributesCommand: (
|
|
|
235
267
|
output: __HttpResponse,
|
|
236
268
|
context: __SerdeContext
|
|
237
269
|
) => Promise<SetQueueAttributesCommandOutput>;
|
|
270
|
+
export declare const de_StartMessageMoveTaskCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<StartMessageMoveTaskCommandOutput>;
|
|
238
274
|
export declare const de_TagQueueCommand: (
|
|
239
275
|
output: __HttpResponse,
|
|
240
276
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.347.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/md5-js": "3.
|
|
31
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
32
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
33
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
34
|
-
"@aws-sdk/middleware-logger": "3.
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
36
|
-
"@aws-sdk/middleware-retry": "3.
|
|
37
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
38
|
-
"@aws-sdk/middleware-serde": "3.
|
|
39
|
-
"@aws-sdk/middleware-signing": "3.
|
|
40
|
-
"@aws-sdk/middleware-stack": "3.
|
|
41
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
42
|
-
"@aws-sdk/node-config-provider": "3.
|
|
43
|
-
"@aws-sdk/node-http-handler": "3.
|
|
44
|
-
"@aws-sdk/smithy-client": "3.
|
|
45
|
-
"@aws-sdk/types": "3.
|
|
46
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.347.1",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.347.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.347.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.347.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.347.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
30
|
+
"@aws-sdk/md5-js": "3.347.0",
|
|
31
|
+
"@aws-sdk/middleware-content-length": "3.347.0",
|
|
32
|
+
"@aws-sdk/middleware-endpoint": "3.347.0",
|
|
33
|
+
"@aws-sdk/middleware-host-header": "3.347.0",
|
|
34
|
+
"@aws-sdk/middleware-logger": "3.347.0",
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.347.0",
|
|
36
|
+
"@aws-sdk/middleware-retry": "3.347.0",
|
|
37
|
+
"@aws-sdk/middleware-sdk-sqs": "3.347.0",
|
|
38
|
+
"@aws-sdk/middleware-serde": "3.347.0",
|
|
39
|
+
"@aws-sdk/middleware-signing": "3.347.0",
|
|
40
|
+
"@aws-sdk/middleware-stack": "3.347.0",
|
|
41
|
+
"@aws-sdk/middleware-user-agent": "3.347.0",
|
|
42
|
+
"@aws-sdk/node-config-provider": "3.347.0",
|
|
43
|
+
"@aws-sdk/node-http-handler": "3.347.0",
|
|
44
|
+
"@aws-sdk/smithy-client": "3.347.0",
|
|
45
|
+
"@aws-sdk/types": "3.347.0",
|
|
46
|
+
"@aws-sdk/url-parser": "3.347.0",
|
|
47
47
|
"@aws-sdk/util-base64": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-retry": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-browser": "3.347.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.347.0",
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.347.0",
|
|
53
|
+
"@aws-sdk/util-retry": "3.347.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.347.0",
|
|
56
56
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
57
57
|
"@smithy/protocol-http": "^1.0.1",
|
|
58
58
|
"@smithy/types": "^1.0.0",
|
|
59
|
-
"fast-xml-parser": "4.
|
|
59
|
+
"fast-xml-parser": "4.2.4",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|