@aws-sdk/client-sqs 3.183.0 → 3.185.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_query.js +2 -2
  3. package/dist-es/SQS.js +89 -82
  4. package/dist-es/SQSClient.js +28 -22
  5. package/dist-es/commands/AddPermissionCommand.js +29 -22
  6. package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +28 -21
  7. package/dist-es/commands/ChangeMessageVisibilityCommand.js +29 -22
  8. package/dist-es/commands/CreateQueueCommand.js +28 -21
  9. package/dist-es/commands/DeleteMessageBatchCommand.js +28 -21
  10. package/dist-es/commands/DeleteMessageCommand.js +29 -22
  11. package/dist-es/commands/DeleteQueueCommand.js +29 -22
  12. package/dist-es/commands/GetQueueAttributesCommand.js +28 -21
  13. package/dist-es/commands/GetQueueUrlCommand.js +28 -21
  14. package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +28 -21
  15. package/dist-es/commands/ListQueueTagsCommand.js +28 -21
  16. package/dist-es/commands/ListQueuesCommand.js +28 -21
  17. package/dist-es/commands/PurgeQueueCommand.js +29 -22
  18. package/dist-es/commands/ReceiveMessageCommand.js +28 -21
  19. package/dist-es/commands/RemovePermissionCommand.js +29 -22
  20. package/dist-es/commands/SendMessageBatchCommand.js +28 -21
  21. package/dist-es/commands/SendMessageCommand.js +28 -21
  22. package/dist-es/commands/SetQueueAttributesCommand.js +29 -22
  23. package/dist-es/commands/TagQueueCommand.js +29 -22
  24. package/dist-es/commands/UntagQueueCommand.js +29 -22
  25. package/dist-es/endpoints.js +8 -8
  26. package/dist-es/models/SQSServiceException.js +10 -5
  27. package/dist-es/models/models_0.js +234 -315
  28. package/dist-es/pagination/ListDeadLetterSourceQueuesPaginator.js +68 -25
  29. package/dist-es/pagination/ListQueuesPaginator.js +68 -25
  30. package/dist-es/protocols/Aws_query.js +1910 -1414
  31. package/dist-es/runtimeConfig.browser.js +12 -27
  32. package/dist-es/runtimeConfig.js +12 -31
  33. package/dist-es/runtimeConfig.native.js +5 -8
  34. package/dist-es/runtimeConfig.shared.js +11 -8
  35. package/package.json +5 -5
@@ -1,316 +1,235 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { SQSServiceException as __BaseException } from "./SQSServiceException";
2
- export class OverLimit extends __BaseException {
3
- constructor(opts) {
4
- super({
5
- name: "OverLimit",
6
- $fault: "client",
7
- ...opts,
8
- });
9
- this.name = "OverLimit";
10
- this.$fault = "client";
11
- Object.setPrototypeOf(this, OverLimit.prototype);
12
- }
13
- }
14
- export class MessageNotInflight extends __BaseException {
15
- constructor(opts) {
16
- super({
17
- name: "MessageNotInflight",
18
- $fault: "client",
19
- ...opts,
20
- });
21
- this.name = "MessageNotInflight";
22
- this.$fault = "client";
23
- Object.setPrototypeOf(this, MessageNotInflight.prototype);
24
- }
25
- }
26
- export class ReceiptHandleIsInvalid extends __BaseException {
27
- constructor(opts) {
28
- super({
29
- name: "ReceiptHandleIsInvalid",
30
- $fault: "client",
31
- ...opts,
32
- });
33
- this.name = "ReceiptHandleIsInvalid";
34
- this.$fault = "client";
35
- Object.setPrototypeOf(this, ReceiptHandleIsInvalid.prototype);
36
- }
37
- }
38
- export class BatchEntryIdsNotDistinct extends __BaseException {
39
- constructor(opts) {
40
- super({
41
- name: "BatchEntryIdsNotDistinct",
42
- $fault: "client",
43
- ...opts,
44
- });
45
- this.name = "BatchEntryIdsNotDistinct";
46
- this.$fault = "client";
47
- Object.setPrototypeOf(this, BatchEntryIdsNotDistinct.prototype);
48
- }
49
- }
50
- export class EmptyBatchRequest extends __BaseException {
51
- constructor(opts) {
52
- super({
53
- name: "EmptyBatchRequest",
54
- $fault: "client",
55
- ...opts,
56
- });
57
- this.name = "EmptyBatchRequest";
58
- this.$fault = "client";
59
- Object.setPrototypeOf(this, EmptyBatchRequest.prototype);
60
- }
61
- }
62
- export class InvalidBatchEntryId extends __BaseException {
63
- constructor(opts) {
64
- super({
65
- name: "InvalidBatchEntryId",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- this.name = "InvalidBatchEntryId";
70
- this.$fault = "client";
71
- Object.setPrototypeOf(this, InvalidBatchEntryId.prototype);
72
- }
73
- }
74
- export class TooManyEntriesInBatchRequest extends __BaseException {
75
- constructor(opts) {
76
- super({
77
- name: "TooManyEntriesInBatchRequest",
78
- $fault: "client",
79
- ...opts,
80
- });
81
- this.name = "TooManyEntriesInBatchRequest";
82
- this.$fault = "client";
83
- Object.setPrototypeOf(this, TooManyEntriesInBatchRequest.prototype);
84
- }
85
- }
86
- export class QueueDeletedRecently extends __BaseException {
87
- constructor(opts) {
88
- super({
89
- name: "QueueDeletedRecently",
90
- $fault: "client",
91
- ...opts,
92
- });
93
- this.name = "QueueDeletedRecently";
94
- this.$fault = "client";
95
- Object.setPrototypeOf(this, QueueDeletedRecently.prototype);
96
- }
97
- }
98
- export class QueueNameExists extends __BaseException {
99
- constructor(opts) {
100
- super({
101
- name: "QueueNameExists",
102
- $fault: "client",
103
- ...opts,
104
- });
105
- this.name = "QueueNameExists";
106
- this.$fault = "client";
107
- Object.setPrototypeOf(this, QueueNameExists.prototype);
108
- }
109
- }
110
- export class InvalidIdFormat extends __BaseException {
111
- constructor(opts) {
112
- super({
113
- name: "InvalidIdFormat",
114
- $fault: "client",
115
- ...opts,
116
- });
117
- this.name = "InvalidIdFormat";
118
- this.$fault = "client";
119
- Object.setPrototypeOf(this, InvalidIdFormat.prototype);
120
- }
121
- }
122
- export class InvalidAttributeName extends __BaseException {
123
- constructor(opts) {
124
- super({
125
- name: "InvalidAttributeName",
126
- $fault: "client",
127
- ...opts,
128
- });
129
- this.name = "InvalidAttributeName";
130
- this.$fault = "client";
131
- Object.setPrototypeOf(this, InvalidAttributeName.prototype);
132
- }
133
- }
134
- export class QueueDoesNotExist extends __BaseException {
135
- constructor(opts) {
136
- super({
137
- name: "QueueDoesNotExist",
138
- $fault: "client",
139
- ...opts,
140
- });
141
- this.name = "QueueDoesNotExist";
142
- this.$fault = "client";
143
- Object.setPrototypeOf(this, QueueDoesNotExist.prototype);
144
- }
145
- }
146
- export class PurgeQueueInProgress extends __BaseException {
147
- constructor(opts) {
148
- super({
149
- name: "PurgeQueueInProgress",
150
- $fault: "client",
151
- ...opts,
152
- });
153
- this.name = "PurgeQueueInProgress";
154
- this.$fault = "client";
155
- Object.setPrototypeOf(this, PurgeQueueInProgress.prototype);
156
- }
157
- }
158
- export class InvalidMessageContents extends __BaseException {
159
- constructor(opts) {
160
- super({
161
- name: "InvalidMessageContents",
162
- $fault: "client",
163
- ...opts,
164
- });
165
- this.name = "InvalidMessageContents";
166
- this.$fault = "client";
167
- Object.setPrototypeOf(this, InvalidMessageContents.prototype);
168
- }
169
- }
170
- export class UnsupportedOperation extends __BaseException {
171
- constructor(opts) {
172
- super({
173
- name: "UnsupportedOperation",
174
- $fault: "client",
175
- ...opts,
176
- });
177
- this.name = "UnsupportedOperation";
178
- this.$fault = "client";
179
- Object.setPrototypeOf(this, UnsupportedOperation.prototype);
180
- }
181
- }
182
- export class BatchRequestTooLong extends __BaseException {
183
- constructor(opts) {
184
- super({
185
- name: "BatchRequestTooLong",
186
- $fault: "client",
187
- ...opts,
188
- });
189
- this.name = "BatchRequestTooLong";
190
- this.$fault = "client";
191
- Object.setPrototypeOf(this, BatchRequestTooLong.prototype);
192
- }
193
- }
194
- export const AddPermissionRequestFilterSensitiveLog = (obj) => ({
195
- ...obj,
196
- });
197
- export const ChangeMessageVisibilityRequestFilterSensitiveLog = (obj) => ({
198
- ...obj,
199
- });
200
- export const ChangeMessageVisibilityBatchRequestEntryFilterSensitiveLog = (obj) => ({
201
- ...obj,
202
- });
203
- export const ChangeMessageVisibilityBatchRequestFilterSensitiveLog = (obj) => ({
204
- ...obj,
205
- });
206
- export const BatchResultErrorEntryFilterSensitiveLog = (obj) => ({
207
- ...obj,
208
- });
209
- export const ChangeMessageVisibilityBatchResultEntryFilterSensitiveLog = (obj) => ({
210
- ...obj,
211
- });
212
- export const ChangeMessageVisibilityBatchResultFilterSensitiveLog = (obj) => ({
213
- ...obj,
214
- });
215
- export const CreateQueueRequestFilterSensitiveLog = (obj) => ({
216
- ...obj,
217
- });
218
- export const CreateQueueResultFilterSensitiveLog = (obj) => ({
219
- ...obj,
220
- });
221
- export const DeleteMessageRequestFilterSensitiveLog = (obj) => ({
222
- ...obj,
223
- });
224
- export const DeleteMessageBatchRequestEntryFilterSensitiveLog = (obj) => ({
225
- ...obj,
226
- });
227
- export const DeleteMessageBatchRequestFilterSensitiveLog = (obj) => ({
228
- ...obj,
229
- });
230
- export const DeleteMessageBatchResultEntryFilterSensitiveLog = (obj) => ({
231
- ...obj,
232
- });
233
- export const DeleteMessageBatchResultFilterSensitiveLog = (obj) => ({
234
- ...obj,
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)); };