@aws-sdk/client-sns 3.933.0 → 3.935.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/dist-cjs/index.js CHANGED
@@ -213,21 +213,6 @@ let SubscriptionLimitExceededException$1 = class SubscriptionLimitExceededExcept
213
213
  Object.setPrototypeOf(this, SubscriptionLimitExceededException.prototype);
214
214
  }
215
215
  };
216
- const LanguageCodeString = {
217
- de_DE: "de-DE",
218
- en_GB: "en-GB",
219
- en_US: "en-US",
220
- es_419: "es-419",
221
- es_ES: "es-ES",
222
- fr_CA: "fr-CA",
223
- fr_FR: "fr-FR",
224
- it_IT: "it-IT",
225
- jp_JP: "ja-JP",
226
- kr_KR: "kr-KR",
227
- pt_BR: "pt-BR",
228
- zh_CN: "zh-CN",
229
- zh_TW: "zh-TW",
230
- };
231
216
  let OptedOutException$1 = class OptedOutException extends SNSServiceException$1 {
232
217
  name = "OptedOutException";
233
218
  $fault = "client";
@@ -348,16 +333,6 @@ let InvalidStateException$1 = class InvalidStateException extends SNSServiceExce
348
333
  Object.setPrototypeOf(this, InvalidStateException.prototype);
349
334
  }
350
335
  };
351
- const NumberCapability = {
352
- MMS: "MMS",
353
- SMS: "SMS",
354
- VOICE: "VOICE",
355
- };
356
- const RouteType = {
357
- Premium: "Premium",
358
- Promotional: "Promotional",
359
- Transactional: "Transactional",
360
- };
361
336
  let ValidationException$1 = class ValidationException extends SNSServiceException$1 {
362
337
  name = "ValidationException";
363
338
  $fault = "client";
@@ -372,10 +347,6 @@ let ValidationException$1 = class ValidationException extends SNSServiceExceptio
372
347
  this.Message = opts.Message;
373
348
  }
374
349
  };
375
- const SMSSandboxPhoneNumberVerificationStatus = {
376
- Pending: "Pending",
377
- Verified: "Verified",
378
- };
379
350
  let EndpointDisabledException$1 = class EndpointDisabledException extends SNSServiceException$1 {
380
351
  name = "EndpointDisabledException";
381
352
  $fault = "client";
@@ -2311,6 +2282,36 @@ const paginateListSubscriptions = core.createPaginator(SNSClient, ListSubscripti
2311
2282
 
2312
2283
  const paginateListTopics = core.createPaginator(SNSClient, ListTopicsCommand, "NextToken", "NextToken", "");
2313
2284
 
2285
+ const LanguageCodeString = {
2286
+ de_DE: "de-DE",
2287
+ en_GB: "en-GB",
2288
+ en_US: "en-US",
2289
+ es_419: "es-419",
2290
+ es_ES: "es-ES",
2291
+ fr_CA: "fr-CA",
2292
+ fr_FR: "fr-FR",
2293
+ it_IT: "it-IT",
2294
+ jp_JP: "ja-JP",
2295
+ kr_KR: "kr-KR",
2296
+ pt_BR: "pt-BR",
2297
+ zh_CN: "zh-CN",
2298
+ zh_TW: "zh-TW",
2299
+ };
2300
+ const NumberCapability = {
2301
+ MMS: "MMS",
2302
+ SMS: "SMS",
2303
+ VOICE: "VOICE",
2304
+ };
2305
+ const RouteType = {
2306
+ Premium: "Premium",
2307
+ Promotional: "Promotional",
2308
+ Transactional: "Transactional",
2309
+ };
2310
+ const SMSSandboxPhoneNumberVerificationStatus = {
2311
+ Pending: "Pending",
2312
+ Verified: "Verified",
2313
+ };
2314
+
2314
2315
  Object.defineProperty(exports, "$Command", {
2315
2316
  enumerable: true,
2316
2317
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./SNSClient";
2
2
  export * from "./SNS";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { SNSServiceException } from "./models/SNSServiceException";
@@ -0,0 +1,29 @@
1
+ export const LanguageCodeString = {
2
+ de_DE: "de-DE",
3
+ en_GB: "en-GB",
4
+ en_US: "en-US",
5
+ es_419: "es-419",
6
+ es_ES: "es-ES",
7
+ fr_CA: "fr-CA",
8
+ fr_FR: "fr-FR",
9
+ it_IT: "it-IT",
10
+ jp_JP: "ja-JP",
11
+ kr_KR: "kr-KR",
12
+ pt_BR: "pt-BR",
13
+ zh_CN: "zh-CN",
14
+ zh_TW: "zh-TW",
15
+ };
16
+ export const NumberCapability = {
17
+ MMS: "MMS",
18
+ SMS: "SMS",
19
+ VOICE: "VOICE",
20
+ };
21
+ export const RouteType = {
22
+ Premium: "Premium",
23
+ Promotional: "Promotional",
24
+ Transactional: "Transactional",
25
+ };
26
+ export const SMSSandboxPhoneNumberVerificationStatus = {
27
+ Pending: "Pending",
28
+ Verified: "Verified",
29
+ };
@@ -0,0 +1,415 @@
1
+ import { SNSServiceException as __BaseException } from "./SNSServiceException";
2
+ export class AuthorizationErrorException extends __BaseException {
3
+ name = "AuthorizationErrorException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AuthorizationErrorException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
12
+ }
13
+ }
14
+ export class InternalErrorException extends __BaseException {
15
+ name = "InternalErrorException";
16
+ $fault = "server";
17
+ constructor(opts) {
18
+ super({
19
+ name: "InternalErrorException",
20
+ $fault: "server",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, InternalErrorException.prototype);
24
+ }
25
+ }
26
+ export class InvalidParameterException extends __BaseException {
27
+ name = "InvalidParameterException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "InvalidParameterException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
36
+ }
37
+ }
38
+ export class NotFoundException extends __BaseException {
39
+ name = "NotFoundException";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "NotFoundException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, NotFoundException.prototype);
48
+ }
49
+ }
50
+ export class ThrottledException extends __BaseException {
51
+ name = "ThrottledException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "ThrottledException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, ThrottledException.prototype);
60
+ }
61
+ }
62
+ export class FilterPolicyLimitExceededException extends __BaseException {
63
+ name = "FilterPolicyLimitExceededException";
64
+ $fault = "client";
65
+ constructor(opts) {
66
+ super({
67
+ name: "FilterPolicyLimitExceededException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, FilterPolicyLimitExceededException.prototype);
72
+ }
73
+ }
74
+ export class ReplayLimitExceededException extends __BaseException {
75
+ name = "ReplayLimitExceededException";
76
+ $fault = "client";
77
+ constructor(opts) {
78
+ super({
79
+ name: "ReplayLimitExceededException",
80
+ $fault: "client",
81
+ ...opts,
82
+ });
83
+ Object.setPrototypeOf(this, ReplayLimitExceededException.prototype);
84
+ }
85
+ }
86
+ export class SubscriptionLimitExceededException extends __BaseException {
87
+ name = "SubscriptionLimitExceededException";
88
+ $fault = "client";
89
+ constructor(opts) {
90
+ super({
91
+ name: "SubscriptionLimitExceededException",
92
+ $fault: "client",
93
+ ...opts,
94
+ });
95
+ Object.setPrototypeOf(this, SubscriptionLimitExceededException.prototype);
96
+ }
97
+ }
98
+ export class OptedOutException extends __BaseException {
99
+ name = "OptedOutException";
100
+ $fault = "client";
101
+ constructor(opts) {
102
+ super({
103
+ name: "OptedOutException",
104
+ $fault: "client",
105
+ ...opts,
106
+ });
107
+ Object.setPrototypeOf(this, OptedOutException.prototype);
108
+ }
109
+ }
110
+ export class UserErrorException extends __BaseException {
111
+ name = "UserErrorException";
112
+ $fault = "client";
113
+ constructor(opts) {
114
+ super({
115
+ name: "UserErrorException",
116
+ $fault: "client",
117
+ ...opts,
118
+ });
119
+ Object.setPrototypeOf(this, UserErrorException.prototype);
120
+ }
121
+ }
122
+ export class ConcurrentAccessException extends __BaseException {
123
+ name = "ConcurrentAccessException";
124
+ $fault = "client";
125
+ constructor(opts) {
126
+ super({
127
+ name: "ConcurrentAccessException",
128
+ $fault: "client",
129
+ ...opts,
130
+ });
131
+ Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
132
+ }
133
+ }
134
+ export class InvalidSecurityException extends __BaseException {
135
+ name = "InvalidSecurityException";
136
+ $fault = "client";
137
+ constructor(opts) {
138
+ super({
139
+ name: "InvalidSecurityException",
140
+ $fault: "client",
141
+ ...opts,
142
+ });
143
+ Object.setPrototypeOf(this, InvalidSecurityException.prototype);
144
+ }
145
+ }
146
+ export class StaleTagException extends __BaseException {
147
+ name = "StaleTagException";
148
+ $fault = "client";
149
+ constructor(opts) {
150
+ super({
151
+ name: "StaleTagException",
152
+ $fault: "client",
153
+ ...opts,
154
+ });
155
+ Object.setPrototypeOf(this, StaleTagException.prototype);
156
+ }
157
+ }
158
+ export class TagLimitExceededException extends __BaseException {
159
+ name = "TagLimitExceededException";
160
+ $fault = "client";
161
+ constructor(opts) {
162
+ super({
163
+ name: "TagLimitExceededException",
164
+ $fault: "client",
165
+ ...opts,
166
+ });
167
+ Object.setPrototypeOf(this, TagLimitExceededException.prototype);
168
+ }
169
+ }
170
+ export class TagPolicyException extends __BaseException {
171
+ name = "TagPolicyException";
172
+ $fault = "client";
173
+ constructor(opts) {
174
+ super({
175
+ name: "TagPolicyException",
176
+ $fault: "client",
177
+ ...opts,
178
+ });
179
+ Object.setPrototypeOf(this, TagPolicyException.prototype);
180
+ }
181
+ }
182
+ export class TopicLimitExceededException extends __BaseException {
183
+ name = "TopicLimitExceededException";
184
+ $fault = "client";
185
+ constructor(opts) {
186
+ super({
187
+ name: "TopicLimitExceededException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ Object.setPrototypeOf(this, TopicLimitExceededException.prototype);
192
+ }
193
+ }
194
+ export class ResourceNotFoundException extends __BaseException {
195
+ name = "ResourceNotFoundException";
196
+ $fault = "client";
197
+ constructor(opts) {
198
+ super({
199
+ name: "ResourceNotFoundException",
200
+ $fault: "client",
201
+ ...opts,
202
+ });
203
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
204
+ }
205
+ }
206
+ export class InvalidStateException extends __BaseException {
207
+ name = "InvalidStateException";
208
+ $fault = "client";
209
+ constructor(opts) {
210
+ super({
211
+ name: "InvalidStateException",
212
+ $fault: "client",
213
+ ...opts,
214
+ });
215
+ Object.setPrototypeOf(this, InvalidStateException.prototype);
216
+ }
217
+ }
218
+ export class ValidationException extends __BaseException {
219
+ name = "ValidationException";
220
+ $fault = "client";
221
+ Message;
222
+ constructor(opts) {
223
+ super({
224
+ name: "ValidationException",
225
+ $fault: "client",
226
+ ...opts,
227
+ });
228
+ Object.setPrototypeOf(this, ValidationException.prototype);
229
+ this.Message = opts.Message;
230
+ }
231
+ }
232
+ export class EndpointDisabledException extends __BaseException {
233
+ name = "EndpointDisabledException";
234
+ $fault = "client";
235
+ constructor(opts) {
236
+ super({
237
+ name: "EndpointDisabledException",
238
+ $fault: "client",
239
+ ...opts,
240
+ });
241
+ Object.setPrototypeOf(this, EndpointDisabledException.prototype);
242
+ }
243
+ }
244
+ export class InvalidParameterValueException extends __BaseException {
245
+ name = "InvalidParameterValueException";
246
+ $fault = "client";
247
+ constructor(opts) {
248
+ super({
249
+ name: "InvalidParameterValueException",
250
+ $fault: "client",
251
+ ...opts,
252
+ });
253
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
254
+ }
255
+ }
256
+ export class KMSAccessDeniedException extends __BaseException {
257
+ name = "KMSAccessDeniedException";
258
+ $fault = "client";
259
+ constructor(opts) {
260
+ super({
261
+ name: "KMSAccessDeniedException",
262
+ $fault: "client",
263
+ ...opts,
264
+ });
265
+ Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
266
+ }
267
+ }
268
+ export class KMSDisabledException extends __BaseException {
269
+ name = "KMSDisabledException";
270
+ $fault = "client";
271
+ constructor(opts) {
272
+ super({
273
+ name: "KMSDisabledException",
274
+ $fault: "client",
275
+ ...opts,
276
+ });
277
+ Object.setPrototypeOf(this, KMSDisabledException.prototype);
278
+ }
279
+ }
280
+ export class KMSInvalidStateException extends __BaseException {
281
+ name = "KMSInvalidStateException";
282
+ $fault = "client";
283
+ constructor(opts) {
284
+ super({
285
+ name: "KMSInvalidStateException",
286
+ $fault: "client",
287
+ ...opts,
288
+ });
289
+ Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
290
+ }
291
+ }
292
+ export class KMSNotFoundException extends __BaseException {
293
+ name = "KMSNotFoundException";
294
+ $fault = "client";
295
+ constructor(opts) {
296
+ super({
297
+ name: "KMSNotFoundException",
298
+ $fault: "client",
299
+ ...opts,
300
+ });
301
+ Object.setPrototypeOf(this, KMSNotFoundException.prototype);
302
+ }
303
+ }
304
+ export class KMSOptInRequired extends __BaseException {
305
+ name = "KMSOptInRequired";
306
+ $fault = "client";
307
+ constructor(opts) {
308
+ super({
309
+ name: "KMSOptInRequired",
310
+ $fault: "client",
311
+ ...opts,
312
+ });
313
+ Object.setPrototypeOf(this, KMSOptInRequired.prototype);
314
+ }
315
+ }
316
+ export class KMSThrottlingException extends __BaseException {
317
+ name = "KMSThrottlingException";
318
+ $fault = "client";
319
+ constructor(opts) {
320
+ super({
321
+ name: "KMSThrottlingException",
322
+ $fault: "client",
323
+ ...opts,
324
+ });
325
+ Object.setPrototypeOf(this, KMSThrottlingException.prototype);
326
+ }
327
+ }
328
+ export class PlatformApplicationDisabledException extends __BaseException {
329
+ name = "PlatformApplicationDisabledException";
330
+ $fault = "client";
331
+ constructor(opts) {
332
+ super({
333
+ name: "PlatformApplicationDisabledException",
334
+ $fault: "client",
335
+ ...opts,
336
+ });
337
+ Object.setPrototypeOf(this, PlatformApplicationDisabledException.prototype);
338
+ }
339
+ }
340
+ export class BatchEntryIdsNotDistinctException extends __BaseException {
341
+ name = "BatchEntryIdsNotDistinctException";
342
+ $fault = "client";
343
+ constructor(opts) {
344
+ super({
345
+ name: "BatchEntryIdsNotDistinctException",
346
+ $fault: "client",
347
+ ...opts,
348
+ });
349
+ Object.setPrototypeOf(this, BatchEntryIdsNotDistinctException.prototype);
350
+ }
351
+ }
352
+ export class BatchRequestTooLongException extends __BaseException {
353
+ name = "BatchRequestTooLongException";
354
+ $fault = "client";
355
+ constructor(opts) {
356
+ super({
357
+ name: "BatchRequestTooLongException",
358
+ $fault: "client",
359
+ ...opts,
360
+ });
361
+ Object.setPrototypeOf(this, BatchRequestTooLongException.prototype);
362
+ }
363
+ }
364
+ export class EmptyBatchRequestException extends __BaseException {
365
+ name = "EmptyBatchRequestException";
366
+ $fault = "client";
367
+ constructor(opts) {
368
+ super({
369
+ name: "EmptyBatchRequestException",
370
+ $fault: "client",
371
+ ...opts,
372
+ });
373
+ Object.setPrototypeOf(this, EmptyBatchRequestException.prototype);
374
+ }
375
+ }
376
+ export class InvalidBatchEntryIdException extends __BaseException {
377
+ name = "InvalidBatchEntryIdException";
378
+ $fault = "client";
379
+ constructor(opts) {
380
+ super({
381
+ name: "InvalidBatchEntryIdException",
382
+ $fault: "client",
383
+ ...opts,
384
+ });
385
+ Object.setPrototypeOf(this, InvalidBatchEntryIdException.prototype);
386
+ }
387
+ }
388
+ export class TooManyEntriesInBatchRequestException extends __BaseException {
389
+ name = "TooManyEntriesInBatchRequestException";
390
+ $fault = "client";
391
+ constructor(opts) {
392
+ super({
393
+ name: "TooManyEntriesInBatchRequestException",
394
+ $fault: "client",
395
+ ...opts,
396
+ });
397
+ Object.setPrototypeOf(this, TooManyEntriesInBatchRequestException.prototype);
398
+ }
399
+ }
400
+ export class VerificationException extends __BaseException {
401
+ name = "VerificationException";
402
+ $fault = "client";
403
+ Message;
404
+ Status;
405
+ constructor(opts) {
406
+ super({
407
+ name: "VerificationException",
408
+ $fault: "client",
409
+ ...opts,
410
+ });
411
+ Object.setPrototypeOf(this, VerificationException.prototype);
412
+ this.Message = opts.Message;
413
+ this.Status = opts.Status;
414
+ }
415
+ }