@aws-sdk/client-sqs 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_query.js +2 -2
- package/dist-es/SQS.js +89 -82
- package/dist-es/SQSClient.js +28 -22
- package/dist-es/commands/AddPermissionCommand.js +29 -22
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +28 -21
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +29 -22
- package/dist-es/commands/CreateQueueCommand.js +28 -21
- package/dist-es/commands/DeleteMessageBatchCommand.js +28 -21
- package/dist-es/commands/DeleteMessageCommand.js +29 -22
- package/dist-es/commands/DeleteQueueCommand.js +29 -22
- package/dist-es/commands/GetQueueAttributesCommand.js +28 -21
- package/dist-es/commands/GetQueueUrlCommand.js +28 -21
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +28 -21
- package/dist-es/commands/ListQueueTagsCommand.js +28 -21
- package/dist-es/commands/ListQueuesCommand.js +28 -21
- package/dist-es/commands/PurgeQueueCommand.js +29 -22
- package/dist-es/commands/ReceiveMessageCommand.js +28 -21
- package/dist-es/commands/RemovePermissionCommand.js +29 -22
- package/dist-es/commands/SendMessageBatchCommand.js +28 -21
- package/dist-es/commands/SendMessageCommand.js +28 -21
- package/dist-es/commands/SetQueueAttributesCommand.js +29 -22
- package/dist-es/commands/TagQueueCommand.js +29 -22
- package/dist-es/commands/UntagQueueCommand.js +29 -22
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SQSServiceException.js +10 -5
- package/dist-es/models/models_0.js +234 -315
- package/dist-es/pagination/ListDeadLetterSourceQueuesPaginator.js +68 -25
- package/dist-es/pagination/ListQueuesPaginator.js +68 -25
- package/dist-es/protocols/Aws_query.js +1910 -1414
- package/dist-es/runtimeConfig.browser.js +12 -27
- package/dist-es/runtimeConfig.js +12 -31
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +35 -35
|
@@ -1,316 +1,235 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SQSServiceException as __BaseException } from "./SQSServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
export
|
|
195
|
-
|
|
196
|
-
});
|
|
197
|
-
export
|
|
198
|
-
|
|
199
|
-
});
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
});
|
|
203
|
-
export
|
|
204
|
-
|
|
205
|
-
});
|
|
206
|
-
export
|
|
207
|
-
|
|
208
|
-
});
|
|
209
|
-
export
|
|
210
|
-
|
|
211
|
-
});
|
|
212
|
-
export
|
|
213
|
-
|
|
214
|
-
});
|
|
215
|
-
export
|
|
216
|
-
|
|
217
|
-
});
|
|
218
|
-
export
|
|
219
|
-
|
|
220
|
-
});
|
|
221
|
-
export
|
|
222
|
-
|
|
223
|
-
});
|
|
224
|
-
export
|
|
225
|
-
|
|
226
|
-
});
|
|
227
|
-
export
|
|
228
|
-
|
|
229
|
-
});
|
|
230
|
-
export
|
|
231
|
-
|
|
232
|
-
});
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
});
|
|
236
|
-
export const DeleteQueueRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const GetQueueAttributesRequestFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const GetQueueAttributesResultFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const GetQueueUrlRequestFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const GetQueueUrlResultFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const ListDeadLetterSourceQueuesRequestFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const ListDeadLetterSourceQueuesResultFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const ListQueuesRequestFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const ListQueuesResultFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const ListQueueTagsRequestFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const ListQueueTagsResultFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const PurgeQueueRequestFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const ReceiveMessageRequestFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const MessageAttributeValueFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const MessageFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
export const ReceiveMessageResultFilterSensitiveLog = (obj) => ({
|
|
282
|
-
...obj,
|
|
283
|
-
});
|
|
284
|
-
export const RemovePermissionRequestFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
});
|
|
287
|
-
export const MessageSystemAttributeValueFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
});
|
|
290
|
-
export const SendMessageRequestFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
export const SendMessageResultFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const SendMessageBatchRequestEntryFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
|
-
export const SendMessageBatchRequestFilterSensitiveLog = (obj) => ({
|
|
300
|
-
...obj,
|
|
301
|
-
});
|
|
302
|
-
export const SendMessageBatchResultEntryFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
});
|
|
305
|
-
export const SendMessageBatchResultFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
});
|
|
308
|
-
export const SetQueueAttributesRequestFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
});
|
|
311
|
-
export const TagQueueRequestFilterSensitiveLog = (obj) => ({
|
|
312
|
-
...obj,
|
|
313
|
-
});
|
|
314
|
-
export const UntagQueueRequestFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
});
|
|
3
|
+
var OverLimit = (function (_super) {
|
|
4
|
+
__extends(OverLimit, _super);
|
|
5
|
+
function OverLimit(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "OverLimit", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "OverLimit";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, OverLimit.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return OverLimit;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { OverLimit };
|
|
15
|
+
var MessageNotInflight = (function (_super) {
|
|
16
|
+
__extends(MessageNotInflight, _super);
|
|
17
|
+
function MessageNotInflight(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "MessageNotInflight", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "MessageNotInflight";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, MessageNotInflight.prototype);
|
|
22
|
+
return _this;
|
|
23
|
+
}
|
|
24
|
+
return MessageNotInflight;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { MessageNotInflight };
|
|
27
|
+
var ReceiptHandleIsInvalid = (function (_super) {
|
|
28
|
+
__extends(ReceiptHandleIsInvalid, _super);
|
|
29
|
+
function ReceiptHandleIsInvalid(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "ReceiptHandleIsInvalid", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "ReceiptHandleIsInvalid";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, ReceiptHandleIsInvalid.prototype);
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
return ReceiptHandleIsInvalid;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { ReceiptHandleIsInvalid };
|
|
39
|
+
var BatchEntryIdsNotDistinct = (function (_super) {
|
|
40
|
+
__extends(BatchEntryIdsNotDistinct, _super);
|
|
41
|
+
function BatchEntryIdsNotDistinct(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "BatchEntryIdsNotDistinct", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "BatchEntryIdsNotDistinct";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, BatchEntryIdsNotDistinct.prototype);
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return BatchEntryIdsNotDistinct;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { BatchEntryIdsNotDistinct };
|
|
51
|
+
var EmptyBatchRequest = (function (_super) {
|
|
52
|
+
__extends(EmptyBatchRequest, _super);
|
|
53
|
+
function EmptyBatchRequest(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "EmptyBatchRequest", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "EmptyBatchRequest";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, EmptyBatchRequest.prototype);
|
|
58
|
+
return _this;
|
|
59
|
+
}
|
|
60
|
+
return EmptyBatchRequest;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { EmptyBatchRequest };
|
|
63
|
+
var InvalidBatchEntryId = (function (_super) {
|
|
64
|
+
__extends(InvalidBatchEntryId, _super);
|
|
65
|
+
function InvalidBatchEntryId(opts) {
|
|
66
|
+
var _this = _super.call(this, __assign({ name: "InvalidBatchEntryId", $fault: "client" }, opts)) || this;
|
|
67
|
+
_this.name = "InvalidBatchEntryId";
|
|
68
|
+
_this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(_this, InvalidBatchEntryId.prototype);
|
|
70
|
+
return _this;
|
|
71
|
+
}
|
|
72
|
+
return InvalidBatchEntryId;
|
|
73
|
+
}(__BaseException));
|
|
74
|
+
export { InvalidBatchEntryId };
|
|
75
|
+
var TooManyEntriesInBatchRequest = (function (_super) {
|
|
76
|
+
__extends(TooManyEntriesInBatchRequest, _super);
|
|
77
|
+
function TooManyEntriesInBatchRequest(opts) {
|
|
78
|
+
var _this = _super.call(this, __assign({ name: "TooManyEntriesInBatchRequest", $fault: "client" }, opts)) || this;
|
|
79
|
+
_this.name = "TooManyEntriesInBatchRequest";
|
|
80
|
+
_this.$fault = "client";
|
|
81
|
+
Object.setPrototypeOf(_this, TooManyEntriesInBatchRequest.prototype);
|
|
82
|
+
return _this;
|
|
83
|
+
}
|
|
84
|
+
return TooManyEntriesInBatchRequest;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { TooManyEntriesInBatchRequest };
|
|
87
|
+
var QueueDeletedRecently = (function (_super) {
|
|
88
|
+
__extends(QueueDeletedRecently, _super);
|
|
89
|
+
function QueueDeletedRecently(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "QueueDeletedRecently", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "QueueDeletedRecently";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, QueueDeletedRecently.prototype);
|
|
94
|
+
return _this;
|
|
95
|
+
}
|
|
96
|
+
return QueueDeletedRecently;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { QueueDeletedRecently };
|
|
99
|
+
var QueueNameExists = (function (_super) {
|
|
100
|
+
__extends(QueueNameExists, _super);
|
|
101
|
+
function QueueNameExists(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "QueueNameExists", $fault: "client" }, opts)) || this;
|
|
103
|
+
_this.name = "QueueNameExists";
|
|
104
|
+
_this.$fault = "client";
|
|
105
|
+
Object.setPrototypeOf(_this, QueueNameExists.prototype);
|
|
106
|
+
return _this;
|
|
107
|
+
}
|
|
108
|
+
return QueueNameExists;
|
|
109
|
+
}(__BaseException));
|
|
110
|
+
export { QueueNameExists };
|
|
111
|
+
var InvalidIdFormat = (function (_super) {
|
|
112
|
+
__extends(InvalidIdFormat, _super);
|
|
113
|
+
function InvalidIdFormat(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "InvalidIdFormat", $fault: "client" }, opts)) || this;
|
|
115
|
+
_this.name = "InvalidIdFormat";
|
|
116
|
+
_this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(_this, InvalidIdFormat.prototype);
|
|
118
|
+
return _this;
|
|
119
|
+
}
|
|
120
|
+
return InvalidIdFormat;
|
|
121
|
+
}(__BaseException));
|
|
122
|
+
export { InvalidIdFormat };
|
|
123
|
+
var InvalidAttributeName = (function (_super) {
|
|
124
|
+
__extends(InvalidAttributeName, _super);
|
|
125
|
+
function InvalidAttributeName(opts) {
|
|
126
|
+
var _this = _super.call(this, __assign({ name: "InvalidAttributeName", $fault: "client" }, opts)) || this;
|
|
127
|
+
_this.name = "InvalidAttributeName";
|
|
128
|
+
_this.$fault = "client";
|
|
129
|
+
Object.setPrototypeOf(_this, InvalidAttributeName.prototype);
|
|
130
|
+
return _this;
|
|
131
|
+
}
|
|
132
|
+
return InvalidAttributeName;
|
|
133
|
+
}(__BaseException));
|
|
134
|
+
export { InvalidAttributeName };
|
|
135
|
+
var QueueDoesNotExist = (function (_super) {
|
|
136
|
+
__extends(QueueDoesNotExist, _super);
|
|
137
|
+
function QueueDoesNotExist(opts) {
|
|
138
|
+
var _this = _super.call(this, __assign({ name: "QueueDoesNotExist", $fault: "client" }, opts)) || this;
|
|
139
|
+
_this.name = "QueueDoesNotExist";
|
|
140
|
+
_this.$fault = "client";
|
|
141
|
+
Object.setPrototypeOf(_this, QueueDoesNotExist.prototype);
|
|
142
|
+
return _this;
|
|
143
|
+
}
|
|
144
|
+
return QueueDoesNotExist;
|
|
145
|
+
}(__BaseException));
|
|
146
|
+
export { QueueDoesNotExist };
|
|
147
|
+
var PurgeQueueInProgress = (function (_super) {
|
|
148
|
+
__extends(PurgeQueueInProgress, _super);
|
|
149
|
+
function PurgeQueueInProgress(opts) {
|
|
150
|
+
var _this = _super.call(this, __assign({ name: "PurgeQueueInProgress", $fault: "client" }, opts)) || this;
|
|
151
|
+
_this.name = "PurgeQueueInProgress";
|
|
152
|
+
_this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(_this, PurgeQueueInProgress.prototype);
|
|
154
|
+
return _this;
|
|
155
|
+
}
|
|
156
|
+
return PurgeQueueInProgress;
|
|
157
|
+
}(__BaseException));
|
|
158
|
+
export { PurgeQueueInProgress };
|
|
159
|
+
var InvalidMessageContents = (function (_super) {
|
|
160
|
+
__extends(InvalidMessageContents, _super);
|
|
161
|
+
function InvalidMessageContents(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "InvalidMessageContents", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "InvalidMessageContents";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, InvalidMessageContents.prototype);
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return InvalidMessageContents;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { InvalidMessageContents };
|
|
171
|
+
var UnsupportedOperation = (function (_super) {
|
|
172
|
+
__extends(UnsupportedOperation, _super);
|
|
173
|
+
function UnsupportedOperation(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperation", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "UnsupportedOperation";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, UnsupportedOperation.prototype);
|
|
178
|
+
return _this;
|
|
179
|
+
}
|
|
180
|
+
return UnsupportedOperation;
|
|
181
|
+
}(__BaseException));
|
|
182
|
+
export { UnsupportedOperation };
|
|
183
|
+
var BatchRequestTooLong = (function (_super) {
|
|
184
|
+
__extends(BatchRequestTooLong, _super);
|
|
185
|
+
function BatchRequestTooLong(opts) {
|
|
186
|
+
var _this = _super.call(this, __assign({ name: "BatchRequestTooLong", $fault: "client" }, opts)) || this;
|
|
187
|
+
_this.name = "BatchRequestTooLong";
|
|
188
|
+
_this.$fault = "client";
|
|
189
|
+
Object.setPrototypeOf(_this, BatchRequestTooLong.prototype);
|
|
190
|
+
return _this;
|
|
191
|
+
}
|
|
192
|
+
return BatchRequestTooLong;
|
|
193
|
+
}(__BaseException));
|
|
194
|
+
export { BatchRequestTooLong };
|
|
195
|
+
export var AddPermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var ChangeMessageVisibilityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var ChangeMessageVisibilityBatchRequestEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var ChangeMessageVisibilityBatchRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var BatchResultErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var ChangeMessageVisibilityBatchResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var ChangeMessageVisibilityBatchResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var CreateQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var CreateQueueResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var DeleteMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var DeleteMessageBatchRequestEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var DeleteMessageBatchRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var DeleteMessageBatchResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var DeleteMessageBatchResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var DeleteQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var GetQueueAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var GetQueueAttributesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
export var GetQueueUrlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
+
export var GetQueueUrlResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
+
export var ListDeadLetterSourceQueuesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
+
export var ListDeadLetterSourceQueuesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var ListQueuesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var ListQueuesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var ListQueueTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var ListQueueTagsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var PurgeQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var ReceiveMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var MessageAttributeValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var MessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var ReceiveMessageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var RemovePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var MessageSystemAttributeValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var SendMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var SendMessageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var SendMessageBatchRequestEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var SendMessageBatchRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var SendMessageBatchResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var SendMessageBatchResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var SetQueueAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var TagQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var UntagQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|