@aws-sdk/client-sns 3.52.0 → 3.53.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SNSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +423 -2
- package/dist-cjs/protocols/Aws_query.js +468 -1820
- package/dist-es/index.js +1 -0
- package/dist-es/models/SNSServiceException.js +12 -0
- package/dist-es/models/models_0.js +389 -1
- package/dist-es/protocols/Aws_query.js +999 -1917
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SNSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +218 -131
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SNSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +158 -127
- package/package.json +25 -25
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var SNSServiceException = (function (_super) {
|
|
4
|
+
__extends(SNSServiceException, _super);
|
|
5
|
+
function SNSServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, SNSServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return SNSServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { SNSServiceException };
|
|
@@ -1,8 +1,57 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { SNSServiceException as __BaseException } from "./SNSServiceException";
|
|
2
3
|
export var AddPermissionInput;
|
|
3
4
|
(function (AddPermissionInput) {
|
|
4
5
|
AddPermissionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
6
|
})(AddPermissionInput || (AddPermissionInput = {}));
|
|
7
|
+
var AuthorizationErrorException = (function (_super) {
|
|
8
|
+
__extends(AuthorizationErrorException, _super);
|
|
9
|
+
function AuthorizationErrorException(opts) {
|
|
10
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationErrorException", $fault: "client" }, opts)) || this;
|
|
11
|
+
_this.name = "AuthorizationErrorException";
|
|
12
|
+
_this.$fault = "client";
|
|
13
|
+
Object.setPrototypeOf(_this, AuthorizationErrorException.prototype);
|
|
14
|
+
return _this;
|
|
15
|
+
}
|
|
16
|
+
return AuthorizationErrorException;
|
|
17
|
+
}(__BaseException));
|
|
18
|
+
export { AuthorizationErrorException };
|
|
19
|
+
var InternalErrorException = (function (_super) {
|
|
20
|
+
__extends(InternalErrorException, _super);
|
|
21
|
+
function InternalErrorException(opts) {
|
|
22
|
+
var _this = _super.call(this, __assign({ name: "InternalErrorException", $fault: "server" }, opts)) || this;
|
|
23
|
+
_this.name = "InternalErrorException";
|
|
24
|
+
_this.$fault = "server";
|
|
25
|
+
Object.setPrototypeOf(_this, InternalErrorException.prototype);
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
return InternalErrorException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { InternalErrorException };
|
|
31
|
+
var InvalidParameterException = (function (_super) {
|
|
32
|
+
__extends(InvalidParameterException, _super);
|
|
33
|
+
function InvalidParameterException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "InvalidParameterException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
return InvalidParameterException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { InvalidParameterException };
|
|
43
|
+
var NotFoundException = (function (_super) {
|
|
44
|
+
__extends(NotFoundException, _super);
|
|
45
|
+
function NotFoundException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "NotFoundException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
return NotFoundException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { NotFoundException };
|
|
6
55
|
export var CheckIfPhoneNumberIsOptedOutInput;
|
|
7
56
|
(function (CheckIfPhoneNumberIsOptedOutInput) {
|
|
8
57
|
CheckIfPhoneNumberIsOptedOutInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -11,6 +60,18 @@ export var CheckIfPhoneNumberIsOptedOutResponse;
|
|
|
11
60
|
(function (CheckIfPhoneNumberIsOptedOutResponse) {
|
|
12
61
|
CheckIfPhoneNumberIsOptedOutResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
62
|
})(CheckIfPhoneNumberIsOptedOutResponse || (CheckIfPhoneNumberIsOptedOutResponse = {}));
|
|
63
|
+
var ThrottledException = (function (_super) {
|
|
64
|
+
__extends(ThrottledException, _super);
|
|
65
|
+
function ThrottledException(opts) {
|
|
66
|
+
var _this = _super.call(this, __assign({ name: "ThrottledException", $fault: "client" }, opts)) || this;
|
|
67
|
+
_this.name = "ThrottledException";
|
|
68
|
+
_this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(_this, ThrottledException.prototype);
|
|
70
|
+
return _this;
|
|
71
|
+
}
|
|
72
|
+
return ThrottledException;
|
|
73
|
+
}(__BaseException));
|
|
74
|
+
export { ThrottledException };
|
|
14
75
|
export var ConfirmSubscriptionInput;
|
|
15
76
|
(function (ConfirmSubscriptionInput) {
|
|
16
77
|
ConfirmSubscriptionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -19,6 +80,30 @@ export var ConfirmSubscriptionResponse;
|
|
|
19
80
|
(function (ConfirmSubscriptionResponse) {
|
|
20
81
|
ConfirmSubscriptionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
82
|
})(ConfirmSubscriptionResponse || (ConfirmSubscriptionResponse = {}));
|
|
83
|
+
var FilterPolicyLimitExceededException = (function (_super) {
|
|
84
|
+
__extends(FilterPolicyLimitExceededException, _super);
|
|
85
|
+
function FilterPolicyLimitExceededException(opts) {
|
|
86
|
+
var _this = _super.call(this, __assign({ name: "FilterPolicyLimitExceededException", $fault: "client" }, opts)) || this;
|
|
87
|
+
_this.name = "FilterPolicyLimitExceededException";
|
|
88
|
+
_this.$fault = "client";
|
|
89
|
+
Object.setPrototypeOf(_this, FilterPolicyLimitExceededException.prototype);
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return FilterPolicyLimitExceededException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { FilterPolicyLimitExceededException };
|
|
95
|
+
var SubscriptionLimitExceededException = (function (_super) {
|
|
96
|
+
__extends(SubscriptionLimitExceededException, _super);
|
|
97
|
+
function SubscriptionLimitExceededException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionLimitExceededException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "SubscriptionLimitExceededException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, SubscriptionLimitExceededException.prototype);
|
|
102
|
+
return _this;
|
|
103
|
+
}
|
|
104
|
+
return SubscriptionLimitExceededException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { SubscriptionLimitExceededException };
|
|
22
107
|
export var CreatePlatformApplicationInput;
|
|
23
108
|
(function (CreatePlatformApplicationInput) {
|
|
24
109
|
CreatePlatformApplicationInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -59,6 +144,42 @@ export var CreateSMSSandboxPhoneNumberResult;
|
|
|
59
144
|
(function (CreateSMSSandboxPhoneNumberResult) {
|
|
60
145
|
CreateSMSSandboxPhoneNumberResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
61
146
|
})(CreateSMSSandboxPhoneNumberResult || (CreateSMSSandboxPhoneNumberResult = {}));
|
|
147
|
+
var OptedOutException = (function (_super) {
|
|
148
|
+
__extends(OptedOutException, _super);
|
|
149
|
+
function OptedOutException(opts) {
|
|
150
|
+
var _this = _super.call(this, __assign({ name: "OptedOutException", $fault: "client" }, opts)) || this;
|
|
151
|
+
_this.name = "OptedOutException";
|
|
152
|
+
_this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(_this, OptedOutException.prototype);
|
|
154
|
+
return _this;
|
|
155
|
+
}
|
|
156
|
+
return OptedOutException;
|
|
157
|
+
}(__BaseException));
|
|
158
|
+
export { OptedOutException };
|
|
159
|
+
var UserErrorException = (function (_super) {
|
|
160
|
+
__extends(UserErrorException, _super);
|
|
161
|
+
function UserErrorException(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "UserErrorException", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "UserErrorException";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, UserErrorException.prototype);
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return UserErrorException;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { UserErrorException };
|
|
171
|
+
var ConcurrentAccessException = (function (_super) {
|
|
172
|
+
__extends(ConcurrentAccessException, _super);
|
|
173
|
+
function ConcurrentAccessException(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentAccessException", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "ConcurrentAccessException";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, ConcurrentAccessException.prototype);
|
|
178
|
+
return _this;
|
|
179
|
+
}
|
|
180
|
+
return ConcurrentAccessException;
|
|
181
|
+
}(__BaseException));
|
|
182
|
+
export { ConcurrentAccessException };
|
|
62
183
|
export var Tag;
|
|
63
184
|
(function (Tag) {
|
|
64
185
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -71,6 +192,66 @@ export var CreateTopicResponse;
|
|
|
71
192
|
(function (CreateTopicResponse) {
|
|
72
193
|
CreateTopicResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
73
194
|
})(CreateTopicResponse || (CreateTopicResponse = {}));
|
|
195
|
+
var InvalidSecurityException = (function (_super) {
|
|
196
|
+
__extends(InvalidSecurityException, _super);
|
|
197
|
+
function InvalidSecurityException(opts) {
|
|
198
|
+
var _this = _super.call(this, __assign({ name: "InvalidSecurityException", $fault: "client" }, opts)) || this;
|
|
199
|
+
_this.name = "InvalidSecurityException";
|
|
200
|
+
_this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(_this, InvalidSecurityException.prototype);
|
|
202
|
+
return _this;
|
|
203
|
+
}
|
|
204
|
+
return InvalidSecurityException;
|
|
205
|
+
}(__BaseException));
|
|
206
|
+
export { InvalidSecurityException };
|
|
207
|
+
var StaleTagException = (function (_super) {
|
|
208
|
+
__extends(StaleTagException, _super);
|
|
209
|
+
function StaleTagException(opts) {
|
|
210
|
+
var _this = _super.call(this, __assign({ name: "StaleTagException", $fault: "client" }, opts)) || this;
|
|
211
|
+
_this.name = "StaleTagException";
|
|
212
|
+
_this.$fault = "client";
|
|
213
|
+
Object.setPrototypeOf(_this, StaleTagException.prototype);
|
|
214
|
+
return _this;
|
|
215
|
+
}
|
|
216
|
+
return StaleTagException;
|
|
217
|
+
}(__BaseException));
|
|
218
|
+
export { StaleTagException };
|
|
219
|
+
var TagLimitExceededException = (function (_super) {
|
|
220
|
+
__extends(TagLimitExceededException, _super);
|
|
221
|
+
function TagLimitExceededException(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "TagLimitExceededException", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "TagLimitExceededException";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, TagLimitExceededException.prototype);
|
|
226
|
+
return _this;
|
|
227
|
+
}
|
|
228
|
+
return TagLimitExceededException;
|
|
229
|
+
}(__BaseException));
|
|
230
|
+
export { TagLimitExceededException };
|
|
231
|
+
var TagPolicyException = (function (_super) {
|
|
232
|
+
__extends(TagPolicyException, _super);
|
|
233
|
+
function TagPolicyException(opts) {
|
|
234
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyException", $fault: "client" }, opts)) || this;
|
|
235
|
+
_this.name = "TagPolicyException";
|
|
236
|
+
_this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(_this, TagPolicyException.prototype);
|
|
238
|
+
return _this;
|
|
239
|
+
}
|
|
240
|
+
return TagPolicyException;
|
|
241
|
+
}(__BaseException));
|
|
242
|
+
export { TagPolicyException };
|
|
243
|
+
var TopicLimitExceededException = (function (_super) {
|
|
244
|
+
__extends(TopicLimitExceededException, _super);
|
|
245
|
+
function TopicLimitExceededException(opts) {
|
|
246
|
+
var _this = _super.call(this, __assign({ name: "TopicLimitExceededException", $fault: "client" }, opts)) || this;
|
|
247
|
+
_this.name = "TopicLimitExceededException";
|
|
248
|
+
_this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(_this, TopicLimitExceededException.prototype);
|
|
250
|
+
return _this;
|
|
251
|
+
}
|
|
252
|
+
return TopicLimitExceededException;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { TopicLimitExceededException };
|
|
74
255
|
export var DeleteEndpointInput;
|
|
75
256
|
(function (DeleteEndpointInput) {
|
|
76
257
|
DeleteEndpointInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -87,6 +268,18 @@ export var DeleteSMSSandboxPhoneNumberResult;
|
|
|
87
268
|
(function (DeleteSMSSandboxPhoneNumberResult) {
|
|
88
269
|
DeleteSMSSandboxPhoneNumberResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
89
270
|
})(DeleteSMSSandboxPhoneNumberResult || (DeleteSMSSandboxPhoneNumberResult = {}));
|
|
271
|
+
var ResourceNotFoundException = (function (_super) {
|
|
272
|
+
__extends(ResourceNotFoundException, _super);
|
|
273
|
+
function ResourceNotFoundException(opts) {
|
|
274
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
275
|
+
_this.name = "ResourceNotFoundException";
|
|
276
|
+
_this.$fault = "client";
|
|
277
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
278
|
+
return _this;
|
|
279
|
+
}
|
|
280
|
+
return ResourceNotFoundException;
|
|
281
|
+
}(__BaseException));
|
|
282
|
+
export { ResourceNotFoundException };
|
|
90
283
|
export var DeleteTopicInput;
|
|
91
284
|
(function (DeleteTopicInput) {
|
|
92
285
|
DeleteTopicInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -175,6 +368,19 @@ export var ListOriginationNumbersResult;
|
|
|
175
368
|
(function (ListOriginationNumbersResult) {
|
|
176
369
|
ListOriginationNumbersResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
370
|
})(ListOriginationNumbersResult || (ListOriginationNumbersResult = {}));
|
|
371
|
+
var ValidationException = (function (_super) {
|
|
372
|
+
__extends(ValidationException, _super);
|
|
373
|
+
function ValidationException(opts) {
|
|
374
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
375
|
+
_this.name = "ValidationException";
|
|
376
|
+
_this.$fault = "client";
|
|
377
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
378
|
+
_this.Message = opts.Message;
|
|
379
|
+
return _this;
|
|
380
|
+
}
|
|
381
|
+
return ValidationException;
|
|
382
|
+
}(__BaseException));
|
|
383
|
+
export { ValidationException };
|
|
178
384
|
export var ListPhoneNumbersOptedOutInput;
|
|
179
385
|
(function (ListPhoneNumbersOptedOutInput) {
|
|
180
386
|
ListPhoneNumbersOptedOutInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -260,6 +466,114 @@ export var OptInPhoneNumberResponse;
|
|
|
260
466
|
(function (OptInPhoneNumberResponse) {
|
|
261
467
|
OptInPhoneNumberResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
468
|
})(OptInPhoneNumberResponse || (OptInPhoneNumberResponse = {}));
|
|
469
|
+
var EndpointDisabledException = (function (_super) {
|
|
470
|
+
__extends(EndpointDisabledException, _super);
|
|
471
|
+
function EndpointDisabledException(opts) {
|
|
472
|
+
var _this = _super.call(this, __assign({ name: "EndpointDisabledException", $fault: "client" }, opts)) || this;
|
|
473
|
+
_this.name = "EndpointDisabledException";
|
|
474
|
+
_this.$fault = "client";
|
|
475
|
+
Object.setPrototypeOf(_this, EndpointDisabledException.prototype);
|
|
476
|
+
return _this;
|
|
477
|
+
}
|
|
478
|
+
return EndpointDisabledException;
|
|
479
|
+
}(__BaseException));
|
|
480
|
+
export { EndpointDisabledException };
|
|
481
|
+
var InvalidParameterValueException = (function (_super) {
|
|
482
|
+
__extends(InvalidParameterValueException, _super);
|
|
483
|
+
function InvalidParameterValueException(opts) {
|
|
484
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
|
|
485
|
+
_this.name = "InvalidParameterValueException";
|
|
486
|
+
_this.$fault = "client";
|
|
487
|
+
Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
|
|
488
|
+
return _this;
|
|
489
|
+
}
|
|
490
|
+
return InvalidParameterValueException;
|
|
491
|
+
}(__BaseException));
|
|
492
|
+
export { InvalidParameterValueException };
|
|
493
|
+
var KMSAccessDeniedException = (function (_super) {
|
|
494
|
+
__extends(KMSAccessDeniedException, _super);
|
|
495
|
+
function KMSAccessDeniedException(opts) {
|
|
496
|
+
var _this = _super.call(this, __assign({ name: "KMSAccessDeniedException", $fault: "client" }, opts)) || this;
|
|
497
|
+
_this.name = "KMSAccessDeniedException";
|
|
498
|
+
_this.$fault = "client";
|
|
499
|
+
Object.setPrototypeOf(_this, KMSAccessDeniedException.prototype);
|
|
500
|
+
return _this;
|
|
501
|
+
}
|
|
502
|
+
return KMSAccessDeniedException;
|
|
503
|
+
}(__BaseException));
|
|
504
|
+
export { KMSAccessDeniedException };
|
|
505
|
+
var KMSDisabledException = (function (_super) {
|
|
506
|
+
__extends(KMSDisabledException, _super);
|
|
507
|
+
function KMSDisabledException(opts) {
|
|
508
|
+
var _this = _super.call(this, __assign({ name: "KMSDisabledException", $fault: "client" }, opts)) || this;
|
|
509
|
+
_this.name = "KMSDisabledException";
|
|
510
|
+
_this.$fault = "client";
|
|
511
|
+
Object.setPrototypeOf(_this, KMSDisabledException.prototype);
|
|
512
|
+
return _this;
|
|
513
|
+
}
|
|
514
|
+
return KMSDisabledException;
|
|
515
|
+
}(__BaseException));
|
|
516
|
+
export { KMSDisabledException };
|
|
517
|
+
var KMSInvalidStateException = (function (_super) {
|
|
518
|
+
__extends(KMSInvalidStateException, _super);
|
|
519
|
+
function KMSInvalidStateException(opts) {
|
|
520
|
+
var _this = _super.call(this, __assign({ name: "KMSInvalidStateException", $fault: "client" }, opts)) || this;
|
|
521
|
+
_this.name = "KMSInvalidStateException";
|
|
522
|
+
_this.$fault = "client";
|
|
523
|
+
Object.setPrototypeOf(_this, KMSInvalidStateException.prototype);
|
|
524
|
+
return _this;
|
|
525
|
+
}
|
|
526
|
+
return KMSInvalidStateException;
|
|
527
|
+
}(__BaseException));
|
|
528
|
+
export { KMSInvalidStateException };
|
|
529
|
+
var KMSNotFoundException = (function (_super) {
|
|
530
|
+
__extends(KMSNotFoundException, _super);
|
|
531
|
+
function KMSNotFoundException(opts) {
|
|
532
|
+
var _this = _super.call(this, __assign({ name: "KMSNotFoundException", $fault: "client" }, opts)) || this;
|
|
533
|
+
_this.name = "KMSNotFoundException";
|
|
534
|
+
_this.$fault = "client";
|
|
535
|
+
Object.setPrototypeOf(_this, KMSNotFoundException.prototype);
|
|
536
|
+
return _this;
|
|
537
|
+
}
|
|
538
|
+
return KMSNotFoundException;
|
|
539
|
+
}(__BaseException));
|
|
540
|
+
export { KMSNotFoundException };
|
|
541
|
+
var KMSOptInRequired = (function (_super) {
|
|
542
|
+
__extends(KMSOptInRequired, _super);
|
|
543
|
+
function KMSOptInRequired(opts) {
|
|
544
|
+
var _this = _super.call(this, __assign({ name: "KMSOptInRequired", $fault: "client" }, opts)) || this;
|
|
545
|
+
_this.name = "KMSOptInRequired";
|
|
546
|
+
_this.$fault = "client";
|
|
547
|
+
Object.setPrototypeOf(_this, KMSOptInRequired.prototype);
|
|
548
|
+
return _this;
|
|
549
|
+
}
|
|
550
|
+
return KMSOptInRequired;
|
|
551
|
+
}(__BaseException));
|
|
552
|
+
export { KMSOptInRequired };
|
|
553
|
+
var KMSThrottlingException = (function (_super) {
|
|
554
|
+
__extends(KMSThrottlingException, _super);
|
|
555
|
+
function KMSThrottlingException(opts) {
|
|
556
|
+
var _this = _super.call(this, __assign({ name: "KMSThrottlingException", $fault: "client" }, opts)) || this;
|
|
557
|
+
_this.name = "KMSThrottlingException";
|
|
558
|
+
_this.$fault = "client";
|
|
559
|
+
Object.setPrototypeOf(_this, KMSThrottlingException.prototype);
|
|
560
|
+
return _this;
|
|
561
|
+
}
|
|
562
|
+
return KMSThrottlingException;
|
|
563
|
+
}(__BaseException));
|
|
564
|
+
export { KMSThrottlingException };
|
|
565
|
+
var PlatformApplicationDisabledException = (function (_super) {
|
|
566
|
+
__extends(PlatformApplicationDisabledException, _super);
|
|
567
|
+
function PlatformApplicationDisabledException(opts) {
|
|
568
|
+
var _this = _super.call(this, __assign({ name: "PlatformApplicationDisabledException", $fault: "client" }, opts)) || this;
|
|
569
|
+
_this.name = "PlatformApplicationDisabledException";
|
|
570
|
+
_this.$fault = "client";
|
|
571
|
+
Object.setPrototypeOf(_this, PlatformApplicationDisabledException.prototype);
|
|
572
|
+
return _this;
|
|
573
|
+
}
|
|
574
|
+
return PlatformApplicationDisabledException;
|
|
575
|
+
}(__BaseException));
|
|
576
|
+
export { PlatformApplicationDisabledException };
|
|
263
577
|
export var MessageAttributeValue;
|
|
264
578
|
(function (MessageAttributeValue) {
|
|
265
579
|
MessageAttributeValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -272,6 +586,54 @@ export var PublishResponse;
|
|
|
272
586
|
(function (PublishResponse) {
|
|
273
587
|
PublishResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
588
|
})(PublishResponse || (PublishResponse = {}));
|
|
589
|
+
var BatchEntryIdsNotDistinctException = (function (_super) {
|
|
590
|
+
__extends(BatchEntryIdsNotDistinctException, _super);
|
|
591
|
+
function BatchEntryIdsNotDistinctException(opts) {
|
|
592
|
+
var _this = _super.call(this, __assign({ name: "BatchEntryIdsNotDistinctException", $fault: "client" }, opts)) || this;
|
|
593
|
+
_this.name = "BatchEntryIdsNotDistinctException";
|
|
594
|
+
_this.$fault = "client";
|
|
595
|
+
Object.setPrototypeOf(_this, BatchEntryIdsNotDistinctException.prototype);
|
|
596
|
+
return _this;
|
|
597
|
+
}
|
|
598
|
+
return BatchEntryIdsNotDistinctException;
|
|
599
|
+
}(__BaseException));
|
|
600
|
+
export { BatchEntryIdsNotDistinctException };
|
|
601
|
+
var BatchRequestTooLongException = (function (_super) {
|
|
602
|
+
__extends(BatchRequestTooLongException, _super);
|
|
603
|
+
function BatchRequestTooLongException(opts) {
|
|
604
|
+
var _this = _super.call(this, __assign({ name: "BatchRequestTooLongException", $fault: "client" }, opts)) || this;
|
|
605
|
+
_this.name = "BatchRequestTooLongException";
|
|
606
|
+
_this.$fault = "client";
|
|
607
|
+
Object.setPrototypeOf(_this, BatchRequestTooLongException.prototype);
|
|
608
|
+
return _this;
|
|
609
|
+
}
|
|
610
|
+
return BatchRequestTooLongException;
|
|
611
|
+
}(__BaseException));
|
|
612
|
+
export { BatchRequestTooLongException };
|
|
613
|
+
var EmptyBatchRequestException = (function (_super) {
|
|
614
|
+
__extends(EmptyBatchRequestException, _super);
|
|
615
|
+
function EmptyBatchRequestException(opts) {
|
|
616
|
+
var _this = _super.call(this, __assign({ name: "EmptyBatchRequestException", $fault: "client" }, opts)) || this;
|
|
617
|
+
_this.name = "EmptyBatchRequestException";
|
|
618
|
+
_this.$fault = "client";
|
|
619
|
+
Object.setPrototypeOf(_this, EmptyBatchRequestException.prototype);
|
|
620
|
+
return _this;
|
|
621
|
+
}
|
|
622
|
+
return EmptyBatchRequestException;
|
|
623
|
+
}(__BaseException));
|
|
624
|
+
export { EmptyBatchRequestException };
|
|
625
|
+
var InvalidBatchEntryIdException = (function (_super) {
|
|
626
|
+
__extends(InvalidBatchEntryIdException, _super);
|
|
627
|
+
function InvalidBatchEntryIdException(opts) {
|
|
628
|
+
var _this = _super.call(this, __assign({ name: "InvalidBatchEntryIdException", $fault: "client" }, opts)) || this;
|
|
629
|
+
_this.name = "InvalidBatchEntryIdException";
|
|
630
|
+
_this.$fault = "client";
|
|
631
|
+
Object.setPrototypeOf(_this, InvalidBatchEntryIdException.prototype);
|
|
632
|
+
return _this;
|
|
633
|
+
}
|
|
634
|
+
return InvalidBatchEntryIdException;
|
|
635
|
+
}(__BaseException));
|
|
636
|
+
export { InvalidBatchEntryIdException };
|
|
275
637
|
export var PublishBatchRequestEntry;
|
|
276
638
|
(function (PublishBatchRequestEntry) {
|
|
277
639
|
PublishBatchRequestEntry.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -292,6 +654,18 @@ export var PublishBatchResponse;
|
|
|
292
654
|
(function (PublishBatchResponse) {
|
|
293
655
|
PublishBatchResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
656
|
})(PublishBatchResponse || (PublishBatchResponse = {}));
|
|
657
|
+
var TooManyEntriesInBatchRequestException = (function (_super) {
|
|
658
|
+
__extends(TooManyEntriesInBatchRequestException, _super);
|
|
659
|
+
function TooManyEntriesInBatchRequestException(opts) {
|
|
660
|
+
var _this = _super.call(this, __assign({ name: "TooManyEntriesInBatchRequestException", $fault: "client" }, opts)) || this;
|
|
661
|
+
_this.name = "TooManyEntriesInBatchRequestException";
|
|
662
|
+
_this.$fault = "client";
|
|
663
|
+
Object.setPrototypeOf(_this, TooManyEntriesInBatchRequestException.prototype);
|
|
664
|
+
return _this;
|
|
665
|
+
}
|
|
666
|
+
return TooManyEntriesInBatchRequestException;
|
|
667
|
+
}(__BaseException));
|
|
668
|
+
export { TooManyEntriesInBatchRequestException };
|
|
295
669
|
export var RemovePermissionInput;
|
|
296
670
|
(function (RemovePermissionInput) {
|
|
297
671
|
RemovePermissionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -348,6 +722,20 @@ export var UntagResourceResponse;
|
|
|
348
722
|
(function (UntagResourceResponse) {
|
|
349
723
|
UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
724
|
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
725
|
+
var VerificationException = (function (_super) {
|
|
726
|
+
__extends(VerificationException, _super);
|
|
727
|
+
function VerificationException(opts) {
|
|
728
|
+
var _this = _super.call(this, __assign({ name: "VerificationException", $fault: "client" }, opts)) || this;
|
|
729
|
+
_this.name = "VerificationException";
|
|
730
|
+
_this.$fault = "client";
|
|
731
|
+
Object.setPrototypeOf(_this, VerificationException.prototype);
|
|
732
|
+
_this.Message = opts.Message;
|
|
733
|
+
_this.Status = opts.Status;
|
|
734
|
+
return _this;
|
|
735
|
+
}
|
|
736
|
+
return VerificationException;
|
|
737
|
+
}(__BaseException));
|
|
738
|
+
export { VerificationException };
|
|
351
739
|
export var VerifySMSSandboxPhoneNumberInput;
|
|
352
740
|
(function (VerifySMSSandboxPhoneNumberInput) {
|
|
353
741
|
VerifySMSSandboxPhoneNumberInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|