@aws-sdk/client-sqs 3.445.0 → 3.447.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/README.md +8 -7
- package/dist-cjs/commands/AddPermissionCommand.js +3 -3
- package/dist-cjs/commands/CancelMessageMoveTaskCommand.js +3 -3
- package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +3 -3
- package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +3 -3
- package/dist-cjs/commands/CreateQueueCommand.js +3 -3
- package/dist-cjs/commands/DeleteMessageBatchCommand.js +3 -3
- package/dist-cjs/commands/DeleteMessageCommand.js +3 -3
- package/dist-cjs/commands/DeleteQueueCommand.js +3 -3
- package/dist-cjs/commands/GetQueueAttributesCommand.js +3 -3
- package/dist-cjs/commands/GetQueueUrlCommand.js +3 -3
- package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +3 -3
- package/dist-cjs/commands/ListMessageMoveTasksCommand.js +3 -3
- package/dist-cjs/commands/ListQueueTagsCommand.js +3 -3
- package/dist-cjs/commands/ListQueuesCommand.js +3 -3
- package/dist-cjs/commands/PurgeQueueCommand.js +3 -3
- package/dist-cjs/commands/ReceiveMessageCommand.js +3 -3
- package/dist-cjs/commands/RemovePermissionCommand.js +3 -3
- package/dist-cjs/commands/SendMessageBatchCommand.js +3 -3
- package/dist-cjs/commands/SendMessageCommand.js +3 -3
- package/dist-cjs/commands/SetQueueAttributesCommand.js +3 -3
- package/dist-cjs/commands/StartMessageMoveTaskCommand.js +3 -3
- package/dist-cjs/commands/TagQueueCommand.js +3 -3
- package/dist-cjs/commands/UntagQueueCommand.js +3 -3
- package/dist-cjs/models/models_0.js +164 -21
- package/dist-cjs/protocols/Aws_json1_0.js +2025 -0
- package/dist-es/commands/AddPermissionCommand.js +1 -1
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +1 -1
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +1 -1
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +1 -1
- package/dist-es/commands/CreateQueueCommand.js +1 -1
- package/dist-es/commands/DeleteMessageBatchCommand.js +1 -1
- package/dist-es/commands/DeleteMessageCommand.js +1 -1
- package/dist-es/commands/DeleteQueueCommand.js +1 -1
- package/dist-es/commands/GetQueueAttributesCommand.js +1 -1
- package/dist-es/commands/GetQueueUrlCommand.js +1 -1
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +1 -1
- package/dist-es/commands/ListMessageMoveTasksCommand.js +1 -1
- package/dist-es/commands/ListQueueTagsCommand.js +1 -1
- package/dist-es/commands/ListQueuesCommand.js +1 -1
- package/dist-es/commands/PurgeQueueCommand.js +1 -1
- package/dist-es/commands/ReceiveMessageCommand.js +1 -1
- package/dist-es/commands/RemovePermissionCommand.js +1 -1
- package/dist-es/commands/SendMessageBatchCommand.js +1 -1
- package/dist-es/commands/SendMessageCommand.js +1 -1
- package/dist-es/commands/SetQueueAttributesCommand.js +1 -1
- package/dist-es/commands/StartMessageMoveTaskCommand.js +1 -1
- package/dist-es/commands/TagQueueCommand.js +1 -1
- package/dist-es/commands/UntagQueueCommand.js +1 -1
- package/dist-es/models/models_0.js +148 -16
- package/dist-es/protocols/Aws_json1_0.js +1976 -0
- package/dist-types/SQS.d.ts +8 -7
- package/dist-types/SQSClient.d.ts +8 -7
- package/dist-types/commands/AddPermissionCommand.d.ts +46 -11
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +25 -0
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +34 -1
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +48 -8
- package/dist-types/commands/CreateQueueCommand.d.ts +45 -10
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +34 -1
- package/dist-types/commands/DeleteMessageCommand.d.ts +37 -6
- package/dist-types/commands/DeleteQueueCommand.d.ts +34 -3
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +33 -1
- package/dist-types/commands/GetQueueUrlCommand.d.ts +30 -2
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +28 -0
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +25 -0
- package/dist-types/commands/ListQueueTagsCommand.d.ts +38 -6
- package/dist-types/commands/ListQueuesCommand.d.ts +32 -4
- package/dist-types/commands/PurgeQueueCommand.d.ts +28 -0
- package/dist-types/commands/ReceiveMessageCommand.d.ts +73 -6
- package/dist-types/commands/RemovePermissionCommand.d.ts +37 -4
- package/dist-types/commands/SendMessageBatchCommand.d.ts +78 -9
- package/dist-types/commands/SendMessageCommand.d.ts +70 -3
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +53 -9
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +25 -0
- package/dist-types/commands/TagQueueCommand.d.ts +44 -10
- package/dist-types/commands/UntagQueueCommand.d.ts +38 -5
- package/dist-types/index.d.ts +8 -7
- package/dist-types/models/models_0.d.ts +617 -373
- package/dist-types/protocols/{Aws_query.d.ts → Aws_json1_0.d.ts} +46 -46
- package/dist-types/ts3.4/models/models_0.d.ts +78 -21
- package/package.json +1 -2
- package/dist-cjs/protocols/Aws_query.js +0 -2367
- package/dist-es/protocols/Aws_query.js +0 -2318
- /package/dist-types/ts3.4/protocols/{Aws_query.d.ts → Aws_json1_0.d.ts} +0 -0
|
@@ -24,186 +24,186 @@ import { StartMessageMoveTaskCommandInput, StartMessageMoveTaskCommandOutput } f
|
|
|
24
24
|
import { TagQueueCommandInput, TagQueueCommandOutput } from "../commands/TagQueueCommand";
|
|
25
25
|
import { UntagQueueCommandInput, UntagQueueCommandOutput } from "../commands/UntagQueueCommand";
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* serializeAws_json1_0AddPermissionCommand
|
|
28
28
|
*/
|
|
29
29
|
export declare const se_AddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* serializeAws_json1_0CancelMessageMoveTaskCommand
|
|
32
32
|
*/
|
|
33
33
|
export declare const se_CancelMessageMoveTaskCommand: (input: CancelMessageMoveTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* serializeAws_json1_0ChangeMessageVisibilityCommand
|
|
36
36
|
*/
|
|
37
37
|
export declare const se_ChangeMessageVisibilityCommand: (input: ChangeMessageVisibilityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* serializeAws_json1_0ChangeMessageVisibilityBatchCommand
|
|
40
40
|
*/
|
|
41
41
|
export declare const se_ChangeMessageVisibilityBatchCommand: (input: ChangeMessageVisibilityBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* serializeAws_json1_0CreateQueueCommand
|
|
44
44
|
*/
|
|
45
45
|
export declare const se_CreateQueueCommand: (input: CreateQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* serializeAws_json1_0DeleteMessageCommand
|
|
48
48
|
*/
|
|
49
49
|
export declare const se_DeleteMessageCommand: (input: DeleteMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* serializeAws_json1_0DeleteMessageBatchCommand
|
|
52
52
|
*/
|
|
53
53
|
export declare const se_DeleteMessageBatchCommand: (input: DeleteMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* serializeAws_json1_0DeleteQueueCommand
|
|
56
56
|
*/
|
|
57
57
|
export declare const se_DeleteQueueCommand: (input: DeleteQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* serializeAws_json1_0GetQueueAttributesCommand
|
|
60
60
|
*/
|
|
61
61
|
export declare const se_GetQueueAttributesCommand: (input: GetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* serializeAws_json1_0GetQueueUrlCommand
|
|
64
64
|
*/
|
|
65
65
|
export declare const se_GetQueueUrlCommand: (input: GetQueueUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* serializeAws_json1_0ListDeadLetterSourceQueuesCommand
|
|
68
68
|
*/
|
|
69
69
|
export declare const se_ListDeadLetterSourceQueuesCommand: (input: ListDeadLetterSourceQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* serializeAws_json1_0ListMessageMoveTasksCommand
|
|
72
72
|
*/
|
|
73
73
|
export declare const se_ListMessageMoveTasksCommand: (input: ListMessageMoveTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* serializeAws_json1_0ListQueuesCommand
|
|
76
76
|
*/
|
|
77
77
|
export declare const se_ListQueuesCommand: (input: ListQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* serializeAws_json1_0ListQueueTagsCommand
|
|
80
80
|
*/
|
|
81
81
|
export declare const se_ListQueueTagsCommand: (input: ListQueueTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* serializeAws_json1_0PurgeQueueCommand
|
|
84
84
|
*/
|
|
85
85
|
export declare const se_PurgeQueueCommand: (input: PurgeQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* serializeAws_json1_0ReceiveMessageCommand
|
|
88
88
|
*/
|
|
89
89
|
export declare const se_ReceiveMessageCommand: (input: ReceiveMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* serializeAws_json1_0RemovePermissionCommand
|
|
92
92
|
*/
|
|
93
93
|
export declare const se_RemovePermissionCommand: (input: RemovePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
95
|
+
* serializeAws_json1_0SendMessageCommand
|
|
96
96
|
*/
|
|
97
97
|
export declare const se_SendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
99
|
+
* serializeAws_json1_0SendMessageBatchCommand
|
|
100
100
|
*/
|
|
101
101
|
export declare const se_SendMessageBatchCommand: (input: SendMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* serializeAws_json1_0SetQueueAttributesCommand
|
|
104
104
|
*/
|
|
105
105
|
export declare const se_SetQueueAttributesCommand: (input: SetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* serializeAws_json1_0StartMessageMoveTaskCommand
|
|
108
108
|
*/
|
|
109
109
|
export declare const se_StartMessageMoveTaskCommand: (input: StartMessageMoveTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* serializeAws_json1_0TagQueueCommand
|
|
112
112
|
*/
|
|
113
113
|
export declare const se_TagQueueCommand: (input: TagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* serializeAws_json1_0UntagQueueCommand
|
|
116
116
|
*/
|
|
117
117
|
export declare const se_UntagQueueCommand: (input: UntagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* deserializeAws_json1_0AddPermissionCommand
|
|
120
120
|
*/
|
|
121
121
|
export declare const de_AddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* deserializeAws_json1_0CancelMessageMoveTaskCommand
|
|
124
124
|
*/
|
|
125
125
|
export declare const de_CancelMessageMoveTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMessageMoveTaskCommandOutput>;
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* deserializeAws_json1_0ChangeMessageVisibilityCommand
|
|
128
128
|
*/
|
|
129
129
|
export declare const de_ChangeMessageVisibilityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityCommandOutput>;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* deserializeAws_json1_0ChangeMessageVisibilityBatchCommand
|
|
132
132
|
*/
|
|
133
133
|
export declare const de_ChangeMessageVisibilityBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityBatchCommandOutput>;
|
|
134
134
|
/**
|
|
135
|
-
*
|
|
135
|
+
* deserializeAws_json1_0CreateQueueCommand
|
|
136
136
|
*/
|
|
137
137
|
export declare const de_CreateQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueCommandOutput>;
|
|
138
138
|
/**
|
|
139
|
-
*
|
|
139
|
+
* deserializeAws_json1_0DeleteMessageCommand
|
|
140
140
|
*/
|
|
141
141
|
export declare const de_DeleteMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageCommandOutput>;
|
|
142
142
|
/**
|
|
143
|
-
*
|
|
143
|
+
* deserializeAws_json1_0DeleteMessageBatchCommand
|
|
144
144
|
*/
|
|
145
145
|
export declare const de_DeleteMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageBatchCommandOutput>;
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* deserializeAws_json1_0DeleteQueueCommand
|
|
148
148
|
*/
|
|
149
149
|
export declare const de_DeleteQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueueCommandOutput>;
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* deserializeAws_json1_0GetQueueAttributesCommand
|
|
152
152
|
*/
|
|
153
153
|
export declare const de_GetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueAttributesCommandOutput>;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* deserializeAws_json1_0GetQueueUrlCommand
|
|
156
156
|
*/
|
|
157
157
|
export declare const de_GetQueueUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueUrlCommandOutput>;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* deserializeAws_json1_0ListDeadLetterSourceQueuesCommand
|
|
160
160
|
*/
|
|
161
161
|
export declare const de_ListDeadLetterSourceQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
|
|
162
162
|
/**
|
|
163
|
-
*
|
|
163
|
+
* deserializeAws_json1_0ListMessageMoveTasksCommand
|
|
164
164
|
*/
|
|
165
165
|
export declare const de_ListMessageMoveTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMessageMoveTasksCommandOutput>;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* deserializeAws_json1_0ListQueuesCommand
|
|
168
168
|
*/
|
|
169
169
|
export declare const de_ListQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuesCommandOutput>;
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* deserializeAws_json1_0ListQueueTagsCommand
|
|
172
172
|
*/
|
|
173
173
|
export declare const de_ListQueueTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueueTagsCommandOutput>;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* deserializeAws_json1_0PurgeQueueCommand
|
|
176
176
|
*/
|
|
177
177
|
export declare const de_PurgeQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurgeQueueCommandOutput>;
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* deserializeAws_json1_0ReceiveMessageCommand
|
|
180
180
|
*/
|
|
181
181
|
export declare const de_ReceiveMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReceiveMessageCommandOutput>;
|
|
182
182
|
/**
|
|
183
|
-
*
|
|
183
|
+
* deserializeAws_json1_0RemovePermissionCommand
|
|
184
184
|
*/
|
|
185
185
|
export declare const de_RemovePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemovePermissionCommandOutput>;
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* deserializeAws_json1_0SendMessageCommand
|
|
188
188
|
*/
|
|
189
189
|
export declare const de_SendMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageCommandOutput>;
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* deserializeAws_json1_0SendMessageBatchCommand
|
|
192
192
|
*/
|
|
193
193
|
export declare const de_SendMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageBatchCommandOutput>;
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* deserializeAws_json1_0SetQueueAttributesCommand
|
|
196
196
|
*/
|
|
197
197
|
export declare const de_SetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetQueueAttributesCommandOutput>;
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* deserializeAws_json1_0StartMessageMoveTaskCommand
|
|
200
200
|
*/
|
|
201
201
|
export declare const de_StartMessageMoveTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMessageMoveTaskCommandOutput>;
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* deserializeAws_json1_0TagQueueCommand
|
|
204
204
|
*/
|
|
205
205
|
export declare const de_TagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagQueueCommandOutput>;
|
|
206
206
|
/**
|
|
207
|
-
*
|
|
207
|
+
* deserializeAws_json1_0UntagQueueCommand
|
|
208
208
|
*/
|
|
209
209
|
export declare const de_UntagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagQueueCommandOutput>;
|
|
@@ -6,11 +6,38 @@ export interface AddPermissionRequest {
|
|
|
6
6
|
AWSAccountIds: string[] | undefined;
|
|
7
7
|
Actions: string[] | undefined;
|
|
8
8
|
}
|
|
9
|
+
export declare class InvalidAddress extends __BaseException {
|
|
10
|
+
readonly name: "InvalidAddress";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
constructor(opts: __ExceptionOptionType<InvalidAddress, __BaseException>);
|
|
13
|
+
}
|
|
14
|
+
export declare class InvalidSecurity extends __BaseException {
|
|
15
|
+
readonly name: "InvalidSecurity";
|
|
16
|
+
readonly $fault: "client";
|
|
17
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurity, __BaseException>);
|
|
18
|
+
}
|
|
9
19
|
export declare class OverLimit extends __BaseException {
|
|
10
20
|
readonly name: "OverLimit";
|
|
11
21
|
readonly $fault: "client";
|
|
12
22
|
constructor(opts: __ExceptionOptionType<OverLimit, __BaseException>);
|
|
13
23
|
}
|
|
24
|
+
export declare class QueueDoesNotExist extends __BaseException {
|
|
25
|
+
readonly name: "QueueDoesNotExist";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(opts: __ExceptionOptionType<QueueDoesNotExist, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
export declare class RequestThrottled extends __BaseException {
|
|
30
|
+
readonly name: "RequestThrottled";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
constructor(opts: __ExceptionOptionType<RequestThrottled, __BaseException>);
|
|
33
|
+
}
|
|
34
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
35
|
+
readonly name: "UnsupportedOperation";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
14
41
|
export interface CancelMessageMoveTaskRequest {
|
|
15
42
|
TaskHandle: string | undefined;
|
|
16
43
|
}
|
|
@@ -24,13 +51,6 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
24
51
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
25
52
|
);
|
|
26
53
|
}
|
|
27
|
-
export declare class UnsupportedOperation extends __BaseException {
|
|
28
|
-
readonly name: "UnsupportedOperation";
|
|
29
|
-
readonly $fault: "client";
|
|
30
|
-
constructor(
|
|
31
|
-
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
32
|
-
);
|
|
33
|
-
}
|
|
34
54
|
export interface ChangeMessageVisibilityRequest {
|
|
35
55
|
QueueUrl: string | undefined;
|
|
36
56
|
ReceiptHandle: string | undefined;
|
|
@@ -124,12 +144,26 @@ export type QueueAttributeName =
|
|
|
124
144
|
(typeof QueueAttributeName)[keyof typeof QueueAttributeName];
|
|
125
145
|
export interface CreateQueueRequest {
|
|
126
146
|
QueueName: string | undefined;
|
|
127
|
-
tags?: Record<string, string>;
|
|
128
147
|
Attributes?: Partial<Record<QueueAttributeName, string>>;
|
|
148
|
+
tags?: Record<string, string>;
|
|
129
149
|
}
|
|
130
150
|
export interface CreateQueueResult {
|
|
131
151
|
QueueUrl?: string;
|
|
132
152
|
}
|
|
153
|
+
export declare class InvalidAttributeName extends __BaseException {
|
|
154
|
+
readonly name: "InvalidAttributeName";
|
|
155
|
+
readonly $fault: "client";
|
|
156
|
+
constructor(
|
|
157
|
+
opts: __ExceptionOptionType<InvalidAttributeName, __BaseException>
|
|
158
|
+
);
|
|
159
|
+
}
|
|
160
|
+
export declare class InvalidAttributeValue extends __BaseException {
|
|
161
|
+
readonly name: "InvalidAttributeValue";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
constructor(
|
|
164
|
+
opts: __ExceptionOptionType<InvalidAttributeValue, __BaseException>
|
|
165
|
+
);
|
|
166
|
+
}
|
|
133
167
|
export declare class QueueDeletedRecently extends __BaseException {
|
|
134
168
|
readonly name: "QueueDeletedRecently";
|
|
135
169
|
readonly $fault: "client";
|
|
@@ -176,13 +210,6 @@ export interface GetQueueAttributesRequest {
|
|
|
176
210
|
export interface GetQueueAttributesResult {
|
|
177
211
|
Attributes?: Partial<Record<QueueAttributeName, string>>;
|
|
178
212
|
}
|
|
179
|
-
export declare class InvalidAttributeName extends __BaseException {
|
|
180
|
-
readonly name: "InvalidAttributeName";
|
|
181
|
-
readonly $fault: "client";
|
|
182
|
-
constructor(
|
|
183
|
-
opts: __ExceptionOptionType<InvalidAttributeName, __BaseException>
|
|
184
|
-
);
|
|
185
|
-
}
|
|
186
213
|
export interface GetQueueUrlRequest {
|
|
187
214
|
QueueName: string | undefined;
|
|
188
215
|
QueueOwnerAWSAccountId?: string;
|
|
@@ -190,11 +217,6 @@ export interface GetQueueUrlRequest {
|
|
|
190
217
|
export interface GetQueueUrlResult {
|
|
191
218
|
QueueUrl?: string;
|
|
192
219
|
}
|
|
193
|
-
export declare class QueueDoesNotExist extends __BaseException {
|
|
194
|
-
readonly name: "QueueDoesNotExist";
|
|
195
|
-
readonly $fault: "client";
|
|
196
|
-
constructor(opts: __ExceptionOptionType<QueueDoesNotExist, __BaseException>);
|
|
197
|
-
}
|
|
198
220
|
export interface ListDeadLetterSourceQueuesRequest {
|
|
199
221
|
QueueUrl: string | undefined;
|
|
200
222
|
NextToken?: string;
|
|
@@ -228,8 +250,8 @@ export interface ListQueuesRequest {
|
|
|
228
250
|
MaxResults?: number;
|
|
229
251
|
}
|
|
230
252
|
export interface ListQueuesResult {
|
|
231
|
-
NextToken?: string;
|
|
232
253
|
QueueUrls?: string[];
|
|
254
|
+
NextToken?: string;
|
|
233
255
|
}
|
|
234
256
|
export interface ListQueueTagsRequest {
|
|
235
257
|
QueueUrl: string | undefined;
|
|
@@ -247,6 +269,41 @@ export declare class PurgeQueueInProgress extends __BaseException {
|
|
|
247
269
|
export interface PurgeQueueRequest {
|
|
248
270
|
QueueUrl: string | undefined;
|
|
249
271
|
}
|
|
272
|
+
export declare class KmsAccessDenied extends __BaseException {
|
|
273
|
+
readonly name: "KmsAccessDenied";
|
|
274
|
+
readonly $fault: "client";
|
|
275
|
+
constructor(opts: __ExceptionOptionType<KmsAccessDenied, __BaseException>);
|
|
276
|
+
}
|
|
277
|
+
export declare class KmsDisabled extends __BaseException {
|
|
278
|
+
readonly name: "KmsDisabled";
|
|
279
|
+
readonly $fault: "client";
|
|
280
|
+
constructor(opts: __ExceptionOptionType<KmsDisabled, __BaseException>);
|
|
281
|
+
}
|
|
282
|
+
export declare class KmsInvalidKeyUsage extends __BaseException {
|
|
283
|
+
readonly name: "KmsInvalidKeyUsage";
|
|
284
|
+
readonly $fault: "client";
|
|
285
|
+
constructor(opts: __ExceptionOptionType<KmsInvalidKeyUsage, __BaseException>);
|
|
286
|
+
}
|
|
287
|
+
export declare class KmsInvalidState extends __BaseException {
|
|
288
|
+
readonly name: "KmsInvalidState";
|
|
289
|
+
readonly $fault: "client";
|
|
290
|
+
constructor(opts: __ExceptionOptionType<KmsInvalidState, __BaseException>);
|
|
291
|
+
}
|
|
292
|
+
export declare class KmsNotFound extends __BaseException {
|
|
293
|
+
readonly name: "KmsNotFound";
|
|
294
|
+
readonly $fault: "client";
|
|
295
|
+
constructor(opts: __ExceptionOptionType<KmsNotFound, __BaseException>);
|
|
296
|
+
}
|
|
297
|
+
export declare class KmsOptInRequired extends __BaseException {
|
|
298
|
+
readonly name: "KmsOptInRequired";
|
|
299
|
+
readonly $fault: "client";
|
|
300
|
+
constructor(opts: __ExceptionOptionType<KmsOptInRequired, __BaseException>);
|
|
301
|
+
}
|
|
302
|
+
export declare class KmsThrottled extends __BaseException {
|
|
303
|
+
readonly name: "KmsThrottled";
|
|
304
|
+
readonly $fault: "client";
|
|
305
|
+
constructor(opts: __ExceptionOptionType<KmsThrottled, __BaseException>);
|
|
306
|
+
}
|
|
250
307
|
export interface ReceiveMessageRequest {
|
|
251
308
|
QueueUrl: string | undefined;
|
|
252
309
|
AttributeNames?: QueueAttributeName[];
|
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.447.0",
|
|
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",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"@smithy/util-endpoints": "^1.0.2",
|
|
60
60
|
"@smithy/util-retry": "^2.0.5",
|
|
61
61
|
"@smithy/util-utf8": "^2.0.0",
|
|
62
|
-
"fast-xml-parser": "4.2.5",
|
|
63
62
|
"tslib": "^2.5.0"
|
|
64
63
|
},
|
|
65
64
|
"devDependencies": {
|