@aws-sdk/client-sns 3.986.0 → 3.988.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 +61 -1704
- package/dist-cjs/models/SNSServiceException.js +12 -0
- package/dist-cjs/models/errors.js +452 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1066 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +219 -213
- package/dist-types/schemas/schemas_0.d.ts +40 -33
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +35 -33
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SNSServiceException = require('./models/SNSServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1472 +113,6 @@ class SNSClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SNSServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SNSServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AuthorizationErrorException extends SNSServiceException {
|
|
121
|
-
name = "AuthorizationErrorException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AuthorizationErrorException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalErrorException extends SNSServiceException {
|
|
133
|
-
name = "InternalErrorException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalErrorException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InvalidParameterException extends SNSServiceException {
|
|
145
|
-
name = "InvalidParameterException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "InvalidParameterException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class NotFoundException extends SNSServiceException {
|
|
157
|
-
name = "NotFoundException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "NotFoundException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ThrottledException extends SNSServiceException {
|
|
169
|
-
name = "ThrottledException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ThrottledException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class FilterPolicyLimitExceededException extends SNSServiceException {
|
|
181
|
-
name = "FilterPolicyLimitExceededException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "FilterPolicyLimitExceededException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, FilterPolicyLimitExceededException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ReplayLimitExceededException extends SNSServiceException {
|
|
193
|
-
name = "ReplayLimitExceededException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ReplayLimitExceededException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ReplayLimitExceededException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class SubscriptionLimitExceededException extends SNSServiceException {
|
|
205
|
-
name = "SubscriptionLimitExceededException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "SubscriptionLimitExceededException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, SubscriptionLimitExceededException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class OptedOutException extends SNSServiceException {
|
|
217
|
-
name = "OptedOutException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "OptedOutException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, OptedOutException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class UserErrorException extends SNSServiceException {
|
|
229
|
-
name = "UserErrorException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "UserErrorException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, UserErrorException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class ConcurrentAccessException extends SNSServiceException {
|
|
241
|
-
name = "ConcurrentAccessException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "ConcurrentAccessException",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
class InvalidSecurityException extends SNSServiceException {
|
|
253
|
-
name = "InvalidSecurityException";
|
|
254
|
-
$fault = "client";
|
|
255
|
-
constructor(opts) {
|
|
256
|
-
super({
|
|
257
|
-
name: "InvalidSecurityException",
|
|
258
|
-
$fault: "client",
|
|
259
|
-
...opts,
|
|
260
|
-
});
|
|
261
|
-
Object.setPrototypeOf(this, InvalidSecurityException.prototype);
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class StaleTagException extends SNSServiceException {
|
|
265
|
-
name = "StaleTagException";
|
|
266
|
-
$fault = "client";
|
|
267
|
-
constructor(opts) {
|
|
268
|
-
super({
|
|
269
|
-
name: "StaleTagException",
|
|
270
|
-
$fault: "client",
|
|
271
|
-
...opts,
|
|
272
|
-
});
|
|
273
|
-
Object.setPrototypeOf(this, StaleTagException.prototype);
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
class TagLimitExceededException extends SNSServiceException {
|
|
277
|
-
name = "TagLimitExceededException";
|
|
278
|
-
$fault = "client";
|
|
279
|
-
constructor(opts) {
|
|
280
|
-
super({
|
|
281
|
-
name: "TagLimitExceededException",
|
|
282
|
-
$fault: "client",
|
|
283
|
-
...opts,
|
|
284
|
-
});
|
|
285
|
-
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
class TagPolicyException extends SNSServiceException {
|
|
289
|
-
name = "TagPolicyException";
|
|
290
|
-
$fault = "client";
|
|
291
|
-
constructor(opts) {
|
|
292
|
-
super({
|
|
293
|
-
name: "TagPolicyException",
|
|
294
|
-
$fault: "client",
|
|
295
|
-
...opts,
|
|
296
|
-
});
|
|
297
|
-
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
class TopicLimitExceededException extends SNSServiceException {
|
|
301
|
-
name = "TopicLimitExceededException";
|
|
302
|
-
$fault = "client";
|
|
303
|
-
constructor(opts) {
|
|
304
|
-
super({
|
|
305
|
-
name: "TopicLimitExceededException",
|
|
306
|
-
$fault: "client",
|
|
307
|
-
...opts,
|
|
308
|
-
});
|
|
309
|
-
Object.setPrototypeOf(this, TopicLimitExceededException.prototype);
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
class ResourceNotFoundException extends SNSServiceException {
|
|
313
|
-
name = "ResourceNotFoundException";
|
|
314
|
-
$fault = "client";
|
|
315
|
-
constructor(opts) {
|
|
316
|
-
super({
|
|
317
|
-
name: "ResourceNotFoundException",
|
|
318
|
-
$fault: "client",
|
|
319
|
-
...opts,
|
|
320
|
-
});
|
|
321
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
class InvalidStateException extends SNSServiceException {
|
|
325
|
-
name = "InvalidStateException";
|
|
326
|
-
$fault = "client";
|
|
327
|
-
constructor(opts) {
|
|
328
|
-
super({
|
|
329
|
-
name: "InvalidStateException",
|
|
330
|
-
$fault: "client",
|
|
331
|
-
...opts,
|
|
332
|
-
});
|
|
333
|
-
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
class ValidationException extends SNSServiceException {
|
|
337
|
-
name = "ValidationException";
|
|
338
|
-
$fault = "client";
|
|
339
|
-
Message;
|
|
340
|
-
constructor(opts) {
|
|
341
|
-
super({
|
|
342
|
-
name: "ValidationException",
|
|
343
|
-
$fault: "client",
|
|
344
|
-
...opts,
|
|
345
|
-
});
|
|
346
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
347
|
-
this.Message = opts.Message;
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
class EndpointDisabledException extends SNSServiceException {
|
|
351
|
-
name = "EndpointDisabledException";
|
|
352
|
-
$fault = "client";
|
|
353
|
-
constructor(opts) {
|
|
354
|
-
super({
|
|
355
|
-
name: "EndpointDisabledException",
|
|
356
|
-
$fault: "client",
|
|
357
|
-
...opts,
|
|
358
|
-
});
|
|
359
|
-
Object.setPrototypeOf(this, EndpointDisabledException.prototype);
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
class InvalidParameterValueException extends SNSServiceException {
|
|
363
|
-
name = "InvalidParameterValueException";
|
|
364
|
-
$fault = "client";
|
|
365
|
-
constructor(opts) {
|
|
366
|
-
super({
|
|
367
|
-
name: "InvalidParameterValueException",
|
|
368
|
-
$fault: "client",
|
|
369
|
-
...opts,
|
|
370
|
-
});
|
|
371
|
-
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
class KMSAccessDeniedException extends SNSServiceException {
|
|
375
|
-
name = "KMSAccessDeniedException";
|
|
376
|
-
$fault = "client";
|
|
377
|
-
constructor(opts) {
|
|
378
|
-
super({
|
|
379
|
-
name: "KMSAccessDeniedException",
|
|
380
|
-
$fault: "client",
|
|
381
|
-
...opts,
|
|
382
|
-
});
|
|
383
|
-
Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
class KMSDisabledException extends SNSServiceException {
|
|
387
|
-
name = "KMSDisabledException";
|
|
388
|
-
$fault = "client";
|
|
389
|
-
constructor(opts) {
|
|
390
|
-
super({
|
|
391
|
-
name: "KMSDisabledException",
|
|
392
|
-
$fault: "client",
|
|
393
|
-
...opts,
|
|
394
|
-
});
|
|
395
|
-
Object.setPrototypeOf(this, KMSDisabledException.prototype);
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
class KMSInvalidStateException extends SNSServiceException {
|
|
399
|
-
name = "KMSInvalidStateException";
|
|
400
|
-
$fault = "client";
|
|
401
|
-
constructor(opts) {
|
|
402
|
-
super({
|
|
403
|
-
name: "KMSInvalidStateException",
|
|
404
|
-
$fault: "client",
|
|
405
|
-
...opts,
|
|
406
|
-
});
|
|
407
|
-
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
class KMSNotFoundException extends SNSServiceException {
|
|
411
|
-
name = "KMSNotFoundException";
|
|
412
|
-
$fault = "client";
|
|
413
|
-
constructor(opts) {
|
|
414
|
-
super({
|
|
415
|
-
name: "KMSNotFoundException",
|
|
416
|
-
$fault: "client",
|
|
417
|
-
...opts,
|
|
418
|
-
});
|
|
419
|
-
Object.setPrototypeOf(this, KMSNotFoundException.prototype);
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
class KMSOptInRequired extends SNSServiceException {
|
|
423
|
-
name = "KMSOptInRequired";
|
|
424
|
-
$fault = "client";
|
|
425
|
-
constructor(opts) {
|
|
426
|
-
super({
|
|
427
|
-
name: "KMSOptInRequired",
|
|
428
|
-
$fault: "client",
|
|
429
|
-
...opts,
|
|
430
|
-
});
|
|
431
|
-
Object.setPrototypeOf(this, KMSOptInRequired.prototype);
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
class KMSThrottlingException extends SNSServiceException {
|
|
435
|
-
name = "KMSThrottlingException";
|
|
436
|
-
$fault = "client";
|
|
437
|
-
constructor(opts) {
|
|
438
|
-
super({
|
|
439
|
-
name: "KMSThrottlingException",
|
|
440
|
-
$fault: "client",
|
|
441
|
-
...opts,
|
|
442
|
-
});
|
|
443
|
-
Object.setPrototypeOf(this, KMSThrottlingException.prototype);
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
class PlatformApplicationDisabledException extends SNSServiceException {
|
|
447
|
-
name = "PlatformApplicationDisabledException";
|
|
448
|
-
$fault = "client";
|
|
449
|
-
constructor(opts) {
|
|
450
|
-
super({
|
|
451
|
-
name: "PlatformApplicationDisabledException",
|
|
452
|
-
$fault: "client",
|
|
453
|
-
...opts,
|
|
454
|
-
});
|
|
455
|
-
Object.setPrototypeOf(this, PlatformApplicationDisabledException.prototype);
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
class BatchEntryIdsNotDistinctException extends SNSServiceException {
|
|
459
|
-
name = "BatchEntryIdsNotDistinctException";
|
|
460
|
-
$fault = "client";
|
|
461
|
-
constructor(opts) {
|
|
462
|
-
super({
|
|
463
|
-
name: "BatchEntryIdsNotDistinctException",
|
|
464
|
-
$fault: "client",
|
|
465
|
-
...opts,
|
|
466
|
-
});
|
|
467
|
-
Object.setPrototypeOf(this, BatchEntryIdsNotDistinctException.prototype);
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
class BatchRequestTooLongException extends SNSServiceException {
|
|
471
|
-
name = "BatchRequestTooLongException";
|
|
472
|
-
$fault = "client";
|
|
473
|
-
constructor(opts) {
|
|
474
|
-
super({
|
|
475
|
-
name: "BatchRequestTooLongException",
|
|
476
|
-
$fault: "client",
|
|
477
|
-
...opts,
|
|
478
|
-
});
|
|
479
|
-
Object.setPrototypeOf(this, BatchRequestTooLongException.prototype);
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
class EmptyBatchRequestException extends SNSServiceException {
|
|
483
|
-
name = "EmptyBatchRequestException";
|
|
484
|
-
$fault = "client";
|
|
485
|
-
constructor(opts) {
|
|
486
|
-
super({
|
|
487
|
-
name: "EmptyBatchRequestException",
|
|
488
|
-
$fault: "client",
|
|
489
|
-
...opts,
|
|
490
|
-
});
|
|
491
|
-
Object.setPrototypeOf(this, EmptyBatchRequestException.prototype);
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
class InvalidBatchEntryIdException extends SNSServiceException {
|
|
495
|
-
name = "InvalidBatchEntryIdException";
|
|
496
|
-
$fault = "client";
|
|
497
|
-
constructor(opts) {
|
|
498
|
-
super({
|
|
499
|
-
name: "InvalidBatchEntryIdException",
|
|
500
|
-
$fault: "client",
|
|
501
|
-
...opts,
|
|
502
|
-
});
|
|
503
|
-
Object.setPrototypeOf(this, InvalidBatchEntryIdException.prototype);
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
class TooManyEntriesInBatchRequestException extends SNSServiceException {
|
|
507
|
-
name = "TooManyEntriesInBatchRequestException";
|
|
508
|
-
$fault = "client";
|
|
509
|
-
constructor(opts) {
|
|
510
|
-
super({
|
|
511
|
-
name: "TooManyEntriesInBatchRequestException",
|
|
512
|
-
$fault: "client",
|
|
513
|
-
...opts,
|
|
514
|
-
});
|
|
515
|
-
Object.setPrototypeOf(this, TooManyEntriesInBatchRequestException.prototype);
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
class VerificationException extends SNSServiceException {
|
|
519
|
-
name = "VerificationException";
|
|
520
|
-
$fault = "client";
|
|
521
|
-
Message;
|
|
522
|
-
Status;
|
|
523
|
-
constructor(opts) {
|
|
524
|
-
super({
|
|
525
|
-
name: "VerificationException",
|
|
526
|
-
$fault: "client",
|
|
527
|
-
...opts,
|
|
528
|
-
});
|
|
529
|
-
Object.setPrototypeOf(this, VerificationException.prototype);
|
|
530
|
-
this.Message = opts.Message;
|
|
531
|
-
this.Status = opts.Status;
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
const _A = "Attributes";
|
|
536
|
-
const _AEE = "AuthorizationErrorException";
|
|
537
|
-
const _AN = "ActionName";
|
|
538
|
-
const _ANt = "AttributeName";
|
|
539
|
-
const _AOU = "AuthenticateOnUnsubscribe";
|
|
540
|
-
const _AP = "AddPermission";
|
|
541
|
-
const _API = "AddPermissionInput";
|
|
542
|
-
const _AV = "AttributeValue";
|
|
543
|
-
const _AWSAI = "AWSAccountId";
|
|
544
|
-
const _BEINDE = "BatchEntryIdsNotDistinctException";
|
|
545
|
-
const _BREE = "BatchResultErrorEntry";
|
|
546
|
-
const _BREEL = "BatchResultErrorEntryList";
|
|
547
|
-
const _BRTLE = "BatchRequestTooLongException";
|
|
548
|
-
const _BV = "BinaryValue";
|
|
549
|
-
const _C = "Code";
|
|
550
|
-
const _CA = "CreatedAt";
|
|
551
|
-
const _CAE = "ConcurrentAccessException";
|
|
552
|
-
const _CER = "CreateEndpointResponse";
|
|
553
|
-
const _CIPNIOO = "CheckIfPhoneNumberIsOptedOut";
|
|
554
|
-
const _CIPNIOOI = "CheckIfPhoneNumberIsOptedOutInput";
|
|
555
|
-
const _CIPNIOOR = "CheckIfPhoneNumberIsOptedOutResponse";
|
|
556
|
-
const _CPA = "CreatePlatformApplication";
|
|
557
|
-
const _CPAI = "CreatePlatformApplicationInput";
|
|
558
|
-
const _CPAR = "CreatePlatformApplicationResponse";
|
|
559
|
-
const _CPE = "CreatePlatformEndpoint";
|
|
560
|
-
const _CPEI = "CreatePlatformEndpointInput";
|
|
561
|
-
const _CS = "ConfirmSubscription";
|
|
562
|
-
const _CSI = "ConfirmSubscriptionInput";
|
|
563
|
-
const _CSMSSPN = "CreateSMSSandboxPhoneNumber";
|
|
564
|
-
const _CSMSSPNI = "CreateSMSSandboxPhoneNumberInput";
|
|
565
|
-
const _CSMSSPNR = "CreateSMSSandboxPhoneNumberResult";
|
|
566
|
-
const _CSR = "ConfirmSubscriptionResponse";
|
|
567
|
-
const _CT = "CreateTopic";
|
|
568
|
-
const _CTI = "CreateTopicInput";
|
|
569
|
-
const _CTR = "CreateTopicResponse";
|
|
570
|
-
const _CUD = "CustomUserData";
|
|
571
|
-
const _DE = "DeleteEndpoint";
|
|
572
|
-
const _DEI = "DeleteEndpointInput";
|
|
573
|
-
const _DPA = "DeletePlatformApplication";
|
|
574
|
-
const _DPAI = "DeletePlatformApplicationInput";
|
|
575
|
-
const _DPP = "DataProtectionPolicy";
|
|
576
|
-
const _DSMSSPN = "DeleteSMSSandboxPhoneNumber";
|
|
577
|
-
const _DSMSSPNI = "DeleteSMSSandboxPhoneNumberInput";
|
|
578
|
-
const _DSMSSPNR = "DeleteSMSSandboxPhoneNumberResult";
|
|
579
|
-
const _DT = "DataType";
|
|
580
|
-
const _DTI = "DeleteTopicInput";
|
|
581
|
-
const _DTe = "DeleteTopic";
|
|
582
|
-
const _E = "Endpoint";
|
|
583
|
-
const _EA = "EndpointArn";
|
|
584
|
-
const _EBRE = "EmptyBatchRequestException";
|
|
585
|
-
const _EDE = "EndpointDisabledException";
|
|
586
|
-
const _En = "Endpoints";
|
|
587
|
-
const _F = "Failed";
|
|
588
|
-
const _FPLEE = "FilterPolicyLimitExceededException";
|
|
589
|
-
const _GDPP = "GetDataProtectionPolicy";
|
|
590
|
-
const _GDPPI = "GetDataProtectionPolicyInput";
|
|
591
|
-
const _GDPPR = "GetDataProtectionPolicyResponse";
|
|
592
|
-
const _GEA = "GetEndpointAttributes";
|
|
593
|
-
const _GEAI = "GetEndpointAttributesInput";
|
|
594
|
-
const _GEAR = "GetEndpointAttributesResponse";
|
|
595
|
-
const _GPAA = "GetPlatformApplicationAttributes";
|
|
596
|
-
const _GPAAI = "GetPlatformApplicationAttributesInput";
|
|
597
|
-
const _GPAAR = "GetPlatformApplicationAttributesResponse";
|
|
598
|
-
const _GSA = "GetSubscriptionAttributes";
|
|
599
|
-
const _GSAI = "GetSubscriptionAttributesInput";
|
|
600
|
-
const _GSAR = "GetSubscriptionAttributesResponse";
|
|
601
|
-
const _GSMSA = "GetSMSAttributes";
|
|
602
|
-
const _GSMSAI = "GetSMSAttributesInput";
|
|
603
|
-
const _GSMSAR = "GetSMSAttributesResponse";
|
|
604
|
-
const _GSMSSAS = "GetSMSSandboxAccountStatus";
|
|
605
|
-
const _GSMSSASI = "GetSMSSandboxAccountStatusInput";
|
|
606
|
-
const _GSMSSASR = "GetSMSSandboxAccountStatusResult";
|
|
607
|
-
const _GTA = "GetTopicAttributes";
|
|
608
|
-
const _GTAI = "GetTopicAttributesInput";
|
|
609
|
-
const _GTAR = "GetTopicAttributesResponse";
|
|
610
|
-
const _I = "Id";
|
|
611
|
-
const _IBEIE = "InvalidBatchEntryIdException";
|
|
612
|
-
const _ICC = "Iso2CountryCode";
|
|
613
|
-
const _IEE = "InternalErrorException";
|
|
614
|
-
const _IIS = "IsInSandbox";
|
|
615
|
-
const _IPE = "InvalidParameterException";
|
|
616
|
-
const _IPVE = "InvalidParameterValueException";
|
|
617
|
-
const _ISE = "InvalidSecurityException";
|
|
618
|
-
const _ISEn = "InvalidStateException";
|
|
619
|
-
const _K = "Key";
|
|
620
|
-
const _KMSADE = "KMSAccessDeniedException";
|
|
621
|
-
const _KMSDE = "KMSDisabledException";
|
|
622
|
-
const _KMSISE = "KMSInvalidStateException";
|
|
623
|
-
const _KMSNFE = "KMSNotFoundException";
|
|
624
|
-
const _KMSOIR = "KMSOptInRequired";
|
|
625
|
-
const _KMSTE = "KMSThrottlingException";
|
|
626
|
-
const _L = "Label";
|
|
627
|
-
const _LC = "LanguageCode";
|
|
628
|
-
const _LEBPA = "ListEndpointsByPlatformApplication";
|
|
629
|
-
const _LEBPAI = "ListEndpointsByPlatformApplicationInput";
|
|
630
|
-
const _LEBPAR = "ListEndpointsByPlatformApplicationResponse";
|
|
631
|
-
const _LOE = "ListOfEndpoints";
|
|
632
|
-
const _LON = "ListOriginationNumbers";
|
|
633
|
-
const _LONR = "ListOriginationNumbersRequest";
|
|
634
|
-
const _LONRi = "ListOriginationNumbersResult";
|
|
635
|
-
const _LOPA = "ListOfPlatformApplications";
|
|
636
|
-
const _LPA = "ListPlatformApplications";
|
|
637
|
-
const _LPAI = "ListPlatformApplicationsInput";
|
|
638
|
-
const _LPAR = "ListPlatformApplicationsResponse";
|
|
639
|
-
const _LPNOO = "ListPhoneNumbersOptedOut";
|
|
640
|
-
const _LPNOOI = "ListPhoneNumbersOptedOutInput";
|
|
641
|
-
const _LPNOOR = "ListPhoneNumbersOptedOutResponse";
|
|
642
|
-
const _LS = "ListSubscriptions";
|
|
643
|
-
const _LSBT = "ListSubscriptionsByTopic";
|
|
644
|
-
const _LSBTI = "ListSubscriptionsByTopicInput";
|
|
645
|
-
const _LSBTR = "ListSubscriptionsByTopicResponse";
|
|
646
|
-
const _LSI = "ListSubscriptionsInput";
|
|
647
|
-
const _LSMSSPN = "ListSMSSandboxPhoneNumbers";
|
|
648
|
-
const _LSMSSPNI = "ListSMSSandboxPhoneNumbersInput";
|
|
649
|
-
const _LSMSSPNR = "ListSMSSandboxPhoneNumbersResult";
|
|
650
|
-
const _LSR = "ListSubscriptionsResponse";
|
|
651
|
-
const _LT = "ListTopics";
|
|
652
|
-
const _LTFR = "ListTagsForResource";
|
|
653
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
654
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
655
|
-
const _LTI = "ListTopicsInput";
|
|
656
|
-
const _LTR = "ListTopicsResponse";
|
|
657
|
-
const _M = "Message";
|
|
658
|
-
const _MA = "MessageAttributes";
|
|
659
|
-
const _MAM = "MessageAttributeMap";
|
|
660
|
-
const _MAV = "MessageAttributeValue";
|
|
661
|
-
const _MDI = "MessageDeduplicationId";
|
|
662
|
-
const _MGI = "MessageGroupId";
|
|
663
|
-
const _MI = "MessageId";
|
|
664
|
-
const _MR = "MaxResults";
|
|
665
|
-
const _MS = "MessageStructure";
|
|
666
|
-
const _N = "Name";
|
|
667
|
-
const _NC = "NumberCapabilities";
|
|
668
|
-
const _NFE = "NotFoundException";
|
|
669
|
-
const _NT = "NextToken";
|
|
670
|
-
const _O = "Owner";
|
|
671
|
-
const _OIPN = "OptInPhoneNumber";
|
|
672
|
-
const _OIPNI = "OptInPhoneNumberInput";
|
|
673
|
-
const _OIPNR = "OptInPhoneNumberResponse";
|
|
674
|
-
const _OOE = "OptedOutException";
|
|
675
|
-
const _OTP = "OneTimePassword";
|
|
676
|
-
const _P = "Platform";
|
|
677
|
-
const _PA = "PlatformApplications";
|
|
678
|
-
const _PAA = "PlatformApplicationArn";
|
|
679
|
-
const _PADE = "PlatformApplicationDisabledException";
|
|
680
|
-
const _PAl = "PlatformApplication";
|
|
681
|
-
const _PB = "PublishBatch";
|
|
682
|
-
const _PBI = "PublishBatchInput";
|
|
683
|
-
const _PBR = "PublishBatchResponse";
|
|
684
|
-
const _PBRE = "PublishBatchRequestEntries";
|
|
685
|
-
const _PBREL = "PublishBatchRequestEntryList";
|
|
686
|
-
const _PBRELu = "PublishBatchResultEntryList";
|
|
687
|
-
const _PBREu = "PublishBatchRequestEntry";
|
|
688
|
-
const _PBREub = "PublishBatchResultEntry";
|
|
689
|
-
const _PDPP = "PutDataProtectionPolicy";
|
|
690
|
-
const _PDPPI = "PutDataProtectionPolicyInput";
|
|
691
|
-
const _PI = "PublishInput";
|
|
692
|
-
const _PN = "PhoneNumber";
|
|
693
|
-
const _PNI = "PhoneNumberInformation";
|
|
694
|
-
const _PNIL = "PhoneNumberInformationList";
|
|
695
|
-
const _PNL = "PhoneNumberList";
|
|
696
|
-
const _PNS = "PhoneNumberString";
|
|
697
|
-
const _PNh = "PhoneNumbers";
|
|
698
|
-
const _PR = "PublishResponse";
|
|
699
|
-
const _Pr = "Protocol";
|
|
700
|
-
const _Pu = "Publish";
|
|
701
|
-
const _RA = "ResourceArn";
|
|
702
|
-
const _RLEE = "ReplayLimitExceededException";
|
|
703
|
-
const _RNFE = "ResourceNotFoundException";
|
|
704
|
-
const _RP = "RemovePermission";
|
|
705
|
-
const _RPI = "RemovePermissionInput";
|
|
706
|
-
const _RSA = "ReturnSubscriptionArn";
|
|
707
|
-
const _RT = "RouteType";
|
|
708
|
-
const _S = "Subscriptions";
|
|
709
|
-
const _SA = "SubscriptionArn";
|
|
710
|
-
const _SEA = "SetEndpointAttributes";
|
|
711
|
-
const _SEAI = "SetEndpointAttributesInput";
|
|
712
|
-
const _SF = "SenderFault";
|
|
713
|
-
const _SI = "SubscribeInput";
|
|
714
|
-
const _SL = "SubscriptionsList";
|
|
715
|
-
const _SLEE = "SubscriptionLimitExceededException";
|
|
716
|
-
const _SMSSPN = "SMSSandboxPhoneNumber";
|
|
717
|
-
const _SMSSPNL = "SMSSandboxPhoneNumberList";
|
|
718
|
-
const _SN = "SequenceNumber";
|
|
719
|
-
const _SPAA = "SetPlatformApplicationAttributes";
|
|
720
|
-
const _SPAAI = "SetPlatformApplicationAttributesInput";
|
|
721
|
-
const _SR = "SubscribeResponse";
|
|
722
|
-
const _SSA = "SetSubscriptionAttributes";
|
|
723
|
-
const _SSAI = "SetSubscriptionAttributesInput";
|
|
724
|
-
const _SSMSA = "SetSMSAttributes";
|
|
725
|
-
const _SSMSAI = "SetSMSAttributesInput";
|
|
726
|
-
const _SSMSAR = "SetSMSAttributesResponse";
|
|
727
|
-
const _STA = "SetTopicAttributes";
|
|
728
|
-
const _STAI = "SetTopicAttributesInput";
|
|
729
|
-
const _STE = "StaleTagException";
|
|
730
|
-
const _SV = "StringValue";
|
|
731
|
-
const _St = "Status";
|
|
732
|
-
const _Su = "Subject";
|
|
733
|
-
const _Sub = "Subscription";
|
|
734
|
-
const _Subs = "Subscribe";
|
|
735
|
-
const _Suc = "Successful";
|
|
736
|
-
const _T = "Token";
|
|
737
|
-
const _TA = "TopicArn";
|
|
738
|
-
const _TAa = "TargetArn";
|
|
739
|
-
const _TE = "ThrottledException";
|
|
740
|
-
const _TK = "TagKeys";
|
|
741
|
-
const _TL = "TagList";
|
|
742
|
-
const _TLEE = "TagLimitExceededException";
|
|
743
|
-
const _TLEEo = "TopicLimitExceededException";
|
|
744
|
-
const _TLo = "TopicsList";
|
|
745
|
-
const _TMEIBRE = "TooManyEntriesInBatchRequestException";
|
|
746
|
-
const _TPE = "TagPolicyException";
|
|
747
|
-
const _TR = "TagResource";
|
|
748
|
-
const _TRR = "TagResourceRequest";
|
|
749
|
-
const _TRRa = "TagResourceResponse";
|
|
750
|
-
const _Ta = "Tags";
|
|
751
|
-
const _Tag = "Tag";
|
|
752
|
-
const _To = "Topics";
|
|
753
|
-
const _Top = "Topic";
|
|
754
|
-
const _U = "Unsubscribe";
|
|
755
|
-
const _UEE = "UserErrorException";
|
|
756
|
-
const _UI = "UnsubscribeInput";
|
|
757
|
-
const _UR = "UntagResource";
|
|
758
|
-
const _URR = "UntagResourceRequest";
|
|
759
|
-
const _URRn = "UntagResourceResponse";
|
|
760
|
-
const _V = "Value";
|
|
761
|
-
const _VE = "ValidationException";
|
|
762
|
-
const _VEe = "VerificationException";
|
|
763
|
-
const _VSMSSPN = "VerifySMSSandboxPhoneNumber";
|
|
764
|
-
const _VSMSSPNI = "VerifySMSSandboxPhoneNumberInput";
|
|
765
|
-
const _VSMSSPNR = "VerifySMSSandboxPhoneNumberResult";
|
|
766
|
-
const _a = "attributes";
|
|
767
|
-
const _aQE = "awsQueryError";
|
|
768
|
-
const _c = "client";
|
|
769
|
-
const _e = "error";
|
|
770
|
-
const _hE = "httpError";
|
|
771
|
-
const _iOO = "isOptedOut";
|
|
772
|
-
const _m = "message";
|
|
773
|
-
const _nT = "nextToken";
|
|
774
|
-
const _pN = "phoneNumber";
|
|
775
|
-
const _pNh = "phoneNumbers";
|
|
776
|
-
const _s = "server";
|
|
777
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sns";
|
|
778
|
-
const _xN = "xmlName";
|
|
779
|
-
const n0 = "com.amazonaws.sns";
|
|
780
|
-
var PhoneNumber = [0, n0, _PN, 8, 0];
|
|
781
|
-
var PhoneNumberString = [0, n0, _PNS, 8, 0];
|
|
782
|
-
var AddPermissionInput$ = [3, n0, _API,
|
|
783
|
-
0,
|
|
784
|
-
[_TA, _L, _AWSAI, _AN],
|
|
785
|
-
[0, 0, 64 | 0, 64 | 0], 4
|
|
786
|
-
];
|
|
787
|
-
var AuthorizationErrorException$ = [-3, n0, _AEE,
|
|
788
|
-
{ [_aQE]: [`AuthorizationError`, 403], [_e]: _c, [_hE]: 403 },
|
|
789
|
-
[_m],
|
|
790
|
-
[0]
|
|
791
|
-
];
|
|
792
|
-
schema.TypeRegistry.for(n0).registerError(AuthorizationErrorException$, AuthorizationErrorException);
|
|
793
|
-
var BatchEntryIdsNotDistinctException$ = [-3, n0, _BEINDE,
|
|
794
|
-
{ [_aQE]: [`BatchEntryIdsNotDistinct`, 400], [_e]: _c, [_hE]: 400 },
|
|
795
|
-
[_m],
|
|
796
|
-
[0]
|
|
797
|
-
];
|
|
798
|
-
schema.TypeRegistry.for(n0).registerError(BatchEntryIdsNotDistinctException$, BatchEntryIdsNotDistinctException);
|
|
799
|
-
var BatchRequestTooLongException$ = [-3, n0, _BRTLE,
|
|
800
|
-
{ [_aQE]: [`BatchRequestTooLong`, 400], [_e]: _c, [_hE]: 400 },
|
|
801
|
-
[_m],
|
|
802
|
-
[0]
|
|
803
|
-
];
|
|
804
|
-
schema.TypeRegistry.for(n0).registerError(BatchRequestTooLongException$, BatchRequestTooLongException);
|
|
805
|
-
var BatchResultErrorEntry$ = [3, n0, _BREE,
|
|
806
|
-
0,
|
|
807
|
-
[_I, _C, _SF, _M],
|
|
808
|
-
[0, 0, 2, 0], 3
|
|
809
|
-
];
|
|
810
|
-
var CheckIfPhoneNumberIsOptedOutInput$ = [3, n0, _CIPNIOOI,
|
|
811
|
-
0,
|
|
812
|
-
[_pN],
|
|
813
|
-
[[() => PhoneNumber, 0]], 1
|
|
814
|
-
];
|
|
815
|
-
var CheckIfPhoneNumberIsOptedOutResponse$ = [3, n0, _CIPNIOOR,
|
|
816
|
-
0,
|
|
817
|
-
[_iOO],
|
|
818
|
-
[2]
|
|
819
|
-
];
|
|
820
|
-
var ConcurrentAccessException$ = [-3, n0, _CAE,
|
|
821
|
-
{ [_aQE]: [`ConcurrentAccess`, 400], [_e]: _c, [_hE]: 400 },
|
|
822
|
-
[_m],
|
|
823
|
-
[0]
|
|
824
|
-
];
|
|
825
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentAccessException$, ConcurrentAccessException);
|
|
826
|
-
var ConfirmSubscriptionInput$ = [3, n0, _CSI,
|
|
827
|
-
0,
|
|
828
|
-
[_TA, _T, _AOU],
|
|
829
|
-
[0, 0, 0], 2
|
|
830
|
-
];
|
|
831
|
-
var ConfirmSubscriptionResponse$ = [3, n0, _CSR,
|
|
832
|
-
0,
|
|
833
|
-
[_SA],
|
|
834
|
-
[0]
|
|
835
|
-
];
|
|
836
|
-
var CreateEndpointResponse$ = [3, n0, _CER,
|
|
837
|
-
0,
|
|
838
|
-
[_EA],
|
|
839
|
-
[0]
|
|
840
|
-
];
|
|
841
|
-
var CreatePlatformApplicationInput$ = [3, n0, _CPAI,
|
|
842
|
-
0,
|
|
843
|
-
[_N, _P, _A],
|
|
844
|
-
[0, 0, 128 | 0], 3
|
|
845
|
-
];
|
|
846
|
-
var CreatePlatformApplicationResponse$ = [3, n0, _CPAR,
|
|
847
|
-
0,
|
|
848
|
-
[_PAA],
|
|
849
|
-
[0]
|
|
850
|
-
];
|
|
851
|
-
var CreatePlatformEndpointInput$ = [3, n0, _CPEI,
|
|
852
|
-
0,
|
|
853
|
-
[_PAA, _T, _CUD, _A],
|
|
854
|
-
[0, 0, 0, 128 | 0], 2
|
|
855
|
-
];
|
|
856
|
-
var CreateSMSSandboxPhoneNumberInput$ = [3, n0, _CSMSSPNI,
|
|
857
|
-
0,
|
|
858
|
-
[_PN, _LC],
|
|
859
|
-
[[() => PhoneNumberString, 0], 0], 1
|
|
860
|
-
];
|
|
861
|
-
var CreateSMSSandboxPhoneNumberResult$ = [3, n0, _CSMSSPNR,
|
|
862
|
-
0,
|
|
863
|
-
[],
|
|
864
|
-
[]
|
|
865
|
-
];
|
|
866
|
-
var CreateTopicInput$ = [3, n0, _CTI,
|
|
867
|
-
0,
|
|
868
|
-
[_N, _A, _Ta, _DPP],
|
|
869
|
-
[0, 128 | 0, () => TagList, 0], 1
|
|
870
|
-
];
|
|
871
|
-
var CreateTopicResponse$ = [3, n0, _CTR,
|
|
872
|
-
0,
|
|
873
|
-
[_TA],
|
|
874
|
-
[0]
|
|
875
|
-
];
|
|
876
|
-
var DeleteEndpointInput$ = [3, n0, _DEI,
|
|
877
|
-
0,
|
|
878
|
-
[_EA],
|
|
879
|
-
[0], 1
|
|
880
|
-
];
|
|
881
|
-
var DeletePlatformApplicationInput$ = [3, n0, _DPAI,
|
|
882
|
-
0,
|
|
883
|
-
[_PAA],
|
|
884
|
-
[0], 1
|
|
885
|
-
];
|
|
886
|
-
var DeleteSMSSandboxPhoneNumberInput$ = [3, n0, _DSMSSPNI,
|
|
887
|
-
0,
|
|
888
|
-
[_PN],
|
|
889
|
-
[[() => PhoneNumberString, 0]], 1
|
|
890
|
-
];
|
|
891
|
-
var DeleteSMSSandboxPhoneNumberResult$ = [3, n0, _DSMSSPNR,
|
|
892
|
-
0,
|
|
893
|
-
[],
|
|
894
|
-
[]
|
|
895
|
-
];
|
|
896
|
-
var DeleteTopicInput$ = [3, n0, _DTI,
|
|
897
|
-
0,
|
|
898
|
-
[_TA],
|
|
899
|
-
[0], 1
|
|
900
|
-
];
|
|
901
|
-
var EmptyBatchRequestException$ = [-3, n0, _EBRE,
|
|
902
|
-
{ [_aQE]: [`EmptyBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
903
|
-
[_m],
|
|
904
|
-
[0]
|
|
905
|
-
];
|
|
906
|
-
schema.TypeRegistry.for(n0).registerError(EmptyBatchRequestException$, EmptyBatchRequestException);
|
|
907
|
-
var Endpoint$ = [3, n0, _E,
|
|
908
|
-
0,
|
|
909
|
-
[_EA, _A],
|
|
910
|
-
[0, 128 | 0]
|
|
911
|
-
];
|
|
912
|
-
var EndpointDisabledException$ = [-3, n0, _EDE,
|
|
913
|
-
{ [_aQE]: [`EndpointDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
914
|
-
[_m],
|
|
915
|
-
[0]
|
|
916
|
-
];
|
|
917
|
-
schema.TypeRegistry.for(n0).registerError(EndpointDisabledException$, EndpointDisabledException);
|
|
918
|
-
var FilterPolicyLimitExceededException$ = [-3, n0, _FPLEE,
|
|
919
|
-
{ [_aQE]: [`FilterPolicyLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
920
|
-
[_m],
|
|
921
|
-
[0]
|
|
922
|
-
];
|
|
923
|
-
schema.TypeRegistry.for(n0).registerError(FilterPolicyLimitExceededException$, FilterPolicyLimitExceededException);
|
|
924
|
-
var GetDataProtectionPolicyInput$ = [3, n0, _GDPPI,
|
|
925
|
-
0,
|
|
926
|
-
[_RA],
|
|
927
|
-
[0], 1
|
|
928
|
-
];
|
|
929
|
-
var GetDataProtectionPolicyResponse$ = [3, n0, _GDPPR,
|
|
930
|
-
0,
|
|
931
|
-
[_DPP],
|
|
932
|
-
[0]
|
|
933
|
-
];
|
|
934
|
-
var GetEndpointAttributesInput$ = [3, n0, _GEAI,
|
|
935
|
-
0,
|
|
936
|
-
[_EA],
|
|
937
|
-
[0], 1
|
|
938
|
-
];
|
|
939
|
-
var GetEndpointAttributesResponse$ = [3, n0, _GEAR,
|
|
940
|
-
0,
|
|
941
|
-
[_A],
|
|
942
|
-
[128 | 0]
|
|
943
|
-
];
|
|
944
|
-
var GetPlatformApplicationAttributesInput$ = [3, n0, _GPAAI,
|
|
945
|
-
0,
|
|
946
|
-
[_PAA],
|
|
947
|
-
[0], 1
|
|
948
|
-
];
|
|
949
|
-
var GetPlatformApplicationAttributesResponse$ = [3, n0, _GPAAR,
|
|
950
|
-
0,
|
|
951
|
-
[_A],
|
|
952
|
-
[128 | 0]
|
|
953
|
-
];
|
|
954
|
-
var GetSMSAttributesInput$ = [3, n0, _GSMSAI,
|
|
955
|
-
0,
|
|
956
|
-
[_a],
|
|
957
|
-
[64 | 0]
|
|
958
|
-
];
|
|
959
|
-
var GetSMSAttributesResponse$ = [3, n0, _GSMSAR,
|
|
960
|
-
0,
|
|
961
|
-
[_a],
|
|
962
|
-
[128 | 0]
|
|
963
|
-
];
|
|
964
|
-
var GetSMSSandboxAccountStatusInput$ = [3, n0, _GSMSSASI,
|
|
965
|
-
0,
|
|
966
|
-
[],
|
|
967
|
-
[]
|
|
968
|
-
];
|
|
969
|
-
var GetSMSSandboxAccountStatusResult$ = [3, n0, _GSMSSASR,
|
|
970
|
-
0,
|
|
971
|
-
[_IIS],
|
|
972
|
-
[2], 1
|
|
973
|
-
];
|
|
974
|
-
var GetSubscriptionAttributesInput$ = [3, n0, _GSAI,
|
|
975
|
-
0,
|
|
976
|
-
[_SA],
|
|
977
|
-
[0], 1
|
|
978
|
-
];
|
|
979
|
-
var GetSubscriptionAttributesResponse$ = [3, n0, _GSAR,
|
|
980
|
-
0,
|
|
981
|
-
[_A],
|
|
982
|
-
[128 | 0]
|
|
983
|
-
];
|
|
984
|
-
var GetTopicAttributesInput$ = [3, n0, _GTAI,
|
|
985
|
-
0,
|
|
986
|
-
[_TA],
|
|
987
|
-
[0], 1
|
|
988
|
-
];
|
|
989
|
-
var GetTopicAttributesResponse$ = [3, n0, _GTAR,
|
|
990
|
-
0,
|
|
991
|
-
[_A],
|
|
992
|
-
[128 | 0]
|
|
993
|
-
];
|
|
994
|
-
var InternalErrorException$ = [-3, n0, _IEE,
|
|
995
|
-
{ [_aQE]: [`InternalError`, 500], [_e]: _s, [_hE]: 500 },
|
|
996
|
-
[_m],
|
|
997
|
-
[0]
|
|
998
|
-
];
|
|
999
|
-
schema.TypeRegistry.for(n0).registerError(InternalErrorException$, InternalErrorException);
|
|
1000
|
-
var InvalidBatchEntryIdException$ = [-3, n0, _IBEIE,
|
|
1001
|
-
{ [_aQE]: [`InvalidBatchEntryId`, 400], [_e]: _c, [_hE]: 400 },
|
|
1002
|
-
[_m],
|
|
1003
|
-
[0]
|
|
1004
|
-
];
|
|
1005
|
-
schema.TypeRegistry.for(n0).registerError(InvalidBatchEntryIdException$, InvalidBatchEntryIdException);
|
|
1006
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1007
|
-
{ [_aQE]: [`InvalidParameter`, 400], [_e]: _c, [_hE]: 400 },
|
|
1008
|
-
[_m],
|
|
1009
|
-
[0]
|
|
1010
|
-
];
|
|
1011
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1012
|
-
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
1013
|
-
{ [_aQE]: [`ParameterValueInvalid`, 400], [_e]: _c, [_hE]: 400 },
|
|
1014
|
-
[_m],
|
|
1015
|
-
[0]
|
|
1016
|
-
];
|
|
1017
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
1018
|
-
var InvalidSecurityException$ = [-3, n0, _ISE,
|
|
1019
|
-
{ [_aQE]: [`InvalidSecurity`, 403], [_e]: _c, [_hE]: 403 },
|
|
1020
|
-
[_m],
|
|
1021
|
-
[0]
|
|
1022
|
-
];
|
|
1023
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSecurityException$, InvalidSecurityException);
|
|
1024
|
-
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
1025
|
-
{ [_aQE]: [`InvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
1026
|
-
[_m],
|
|
1027
|
-
[0]
|
|
1028
|
-
];
|
|
1029
|
-
schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
|
|
1030
|
-
var KMSAccessDeniedException$ = [-3, n0, _KMSADE,
|
|
1031
|
-
{ [_aQE]: [`KMSAccessDenied`, 400], [_e]: _c, [_hE]: 400 },
|
|
1032
|
-
[_m],
|
|
1033
|
-
[0]
|
|
1034
|
-
];
|
|
1035
|
-
schema.TypeRegistry.for(n0).registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
1036
|
-
var KMSDisabledException$ = [-3, n0, _KMSDE,
|
|
1037
|
-
{ [_aQE]: [`KMSDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
1038
|
-
[_m],
|
|
1039
|
-
[0]
|
|
1040
|
-
];
|
|
1041
|
-
schema.TypeRegistry.for(n0).registerError(KMSDisabledException$, KMSDisabledException);
|
|
1042
|
-
var KMSInvalidStateException$ = [-3, n0, _KMSISE,
|
|
1043
|
-
{ [_aQE]: [`KMSInvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
1044
|
-
[_m],
|
|
1045
|
-
[0]
|
|
1046
|
-
];
|
|
1047
|
-
schema.TypeRegistry.for(n0).registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
1048
|
-
var KMSNotFoundException$ = [-3, n0, _KMSNFE,
|
|
1049
|
-
{ [_aQE]: [`KMSNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
1050
|
-
[_m],
|
|
1051
|
-
[0]
|
|
1052
|
-
];
|
|
1053
|
-
schema.TypeRegistry.for(n0).registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
1054
|
-
var KMSOptInRequired$ = [-3, n0, _KMSOIR,
|
|
1055
|
-
{ [_aQE]: [`KMSOptInRequired`, 403], [_e]: _c, [_hE]: 403 },
|
|
1056
|
-
[_m],
|
|
1057
|
-
[0]
|
|
1058
|
-
];
|
|
1059
|
-
schema.TypeRegistry.for(n0).registerError(KMSOptInRequired$, KMSOptInRequired);
|
|
1060
|
-
var KMSThrottlingException$ = [-3, n0, _KMSTE,
|
|
1061
|
-
{ [_aQE]: [`KMSThrottling`, 400], [_e]: _c, [_hE]: 400 },
|
|
1062
|
-
[_m],
|
|
1063
|
-
[0]
|
|
1064
|
-
];
|
|
1065
|
-
schema.TypeRegistry.for(n0).registerError(KMSThrottlingException$, KMSThrottlingException);
|
|
1066
|
-
var ListEndpointsByPlatformApplicationInput$ = [3, n0, _LEBPAI,
|
|
1067
|
-
0,
|
|
1068
|
-
[_PAA, _NT],
|
|
1069
|
-
[0, 0], 1
|
|
1070
|
-
];
|
|
1071
|
-
var ListEndpointsByPlatformApplicationResponse$ = [3, n0, _LEBPAR,
|
|
1072
|
-
0,
|
|
1073
|
-
[_En, _NT],
|
|
1074
|
-
[() => ListOfEndpoints, 0]
|
|
1075
|
-
];
|
|
1076
|
-
var ListOriginationNumbersRequest$ = [3, n0, _LONR,
|
|
1077
|
-
0,
|
|
1078
|
-
[_NT, _MR],
|
|
1079
|
-
[0, 1]
|
|
1080
|
-
];
|
|
1081
|
-
var ListOriginationNumbersResult$ = [3, n0, _LONRi,
|
|
1082
|
-
0,
|
|
1083
|
-
[_NT, _PNh],
|
|
1084
|
-
[0, [() => PhoneNumberInformationList, 0]]
|
|
1085
|
-
];
|
|
1086
|
-
var ListPhoneNumbersOptedOutInput$ = [3, n0, _LPNOOI,
|
|
1087
|
-
0,
|
|
1088
|
-
[_nT],
|
|
1089
|
-
[0]
|
|
1090
|
-
];
|
|
1091
|
-
var ListPhoneNumbersOptedOutResponse$ = [3, n0, _LPNOOR,
|
|
1092
|
-
0,
|
|
1093
|
-
[_pNh, _nT],
|
|
1094
|
-
[[() => PhoneNumberList, 0], 0]
|
|
1095
|
-
];
|
|
1096
|
-
var ListPlatformApplicationsInput$ = [3, n0, _LPAI,
|
|
1097
|
-
0,
|
|
1098
|
-
[_NT],
|
|
1099
|
-
[0]
|
|
1100
|
-
];
|
|
1101
|
-
var ListPlatformApplicationsResponse$ = [3, n0, _LPAR,
|
|
1102
|
-
0,
|
|
1103
|
-
[_PA, _NT],
|
|
1104
|
-
[() => ListOfPlatformApplications, 0]
|
|
1105
|
-
];
|
|
1106
|
-
var ListSMSSandboxPhoneNumbersInput$ = [3, n0, _LSMSSPNI,
|
|
1107
|
-
0,
|
|
1108
|
-
[_NT, _MR],
|
|
1109
|
-
[0, 1]
|
|
1110
|
-
];
|
|
1111
|
-
var ListSMSSandboxPhoneNumbersResult$ = [3, n0, _LSMSSPNR,
|
|
1112
|
-
0,
|
|
1113
|
-
[_PNh, _NT],
|
|
1114
|
-
[[() => SMSSandboxPhoneNumberList, 0], 0], 1
|
|
1115
|
-
];
|
|
1116
|
-
var ListSubscriptionsByTopicInput$ = [3, n0, _LSBTI,
|
|
1117
|
-
0,
|
|
1118
|
-
[_TA, _NT],
|
|
1119
|
-
[0, 0], 1
|
|
1120
|
-
];
|
|
1121
|
-
var ListSubscriptionsByTopicResponse$ = [3, n0, _LSBTR,
|
|
1122
|
-
0,
|
|
1123
|
-
[_S, _NT],
|
|
1124
|
-
[() => SubscriptionsList, 0]
|
|
1125
|
-
];
|
|
1126
|
-
var ListSubscriptionsInput$ = [3, n0, _LSI,
|
|
1127
|
-
0,
|
|
1128
|
-
[_NT],
|
|
1129
|
-
[0]
|
|
1130
|
-
];
|
|
1131
|
-
var ListSubscriptionsResponse$ = [3, n0, _LSR,
|
|
1132
|
-
0,
|
|
1133
|
-
[_S, _NT],
|
|
1134
|
-
[() => SubscriptionsList, 0]
|
|
1135
|
-
];
|
|
1136
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1137
|
-
0,
|
|
1138
|
-
[_RA],
|
|
1139
|
-
[0], 1
|
|
1140
|
-
];
|
|
1141
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1142
|
-
0,
|
|
1143
|
-
[_Ta],
|
|
1144
|
-
[() => TagList]
|
|
1145
|
-
];
|
|
1146
|
-
var ListTopicsInput$ = [3, n0, _LTI,
|
|
1147
|
-
0,
|
|
1148
|
-
[_NT],
|
|
1149
|
-
[0]
|
|
1150
|
-
];
|
|
1151
|
-
var ListTopicsResponse$ = [3, n0, _LTR,
|
|
1152
|
-
0,
|
|
1153
|
-
[_To, _NT],
|
|
1154
|
-
[() => TopicsList, 0]
|
|
1155
|
-
];
|
|
1156
|
-
var MessageAttributeValue$ = [3, n0, _MAV,
|
|
1157
|
-
0,
|
|
1158
|
-
[_DT, _SV, _BV],
|
|
1159
|
-
[0, 0, 21], 1
|
|
1160
|
-
];
|
|
1161
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
1162
|
-
{ [_aQE]: [`NotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1163
|
-
[_m],
|
|
1164
|
-
[0]
|
|
1165
|
-
];
|
|
1166
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
1167
|
-
var OptedOutException$ = [-3, n0, _OOE,
|
|
1168
|
-
{ [_aQE]: [`OptedOut`, 400], [_e]: _c, [_hE]: 400 },
|
|
1169
|
-
[_m],
|
|
1170
|
-
[0]
|
|
1171
|
-
];
|
|
1172
|
-
schema.TypeRegistry.for(n0).registerError(OptedOutException$, OptedOutException);
|
|
1173
|
-
var OptInPhoneNumberInput$ = [3, n0, _OIPNI,
|
|
1174
|
-
0,
|
|
1175
|
-
[_pN],
|
|
1176
|
-
[[() => PhoneNumber, 0]], 1
|
|
1177
|
-
];
|
|
1178
|
-
var OptInPhoneNumberResponse$ = [3, n0, _OIPNR,
|
|
1179
|
-
0,
|
|
1180
|
-
[],
|
|
1181
|
-
[]
|
|
1182
|
-
];
|
|
1183
|
-
var PhoneNumberInformation$ = [3, n0, _PNI,
|
|
1184
|
-
0,
|
|
1185
|
-
[_CA, _PN, _St, _ICC, _RT, _NC],
|
|
1186
|
-
[4, [() => PhoneNumber, 0], 0, 0, 0, 64 | 0]
|
|
1187
|
-
];
|
|
1188
|
-
var PlatformApplication$ = [3, n0, _PAl,
|
|
1189
|
-
0,
|
|
1190
|
-
[_PAA, _A],
|
|
1191
|
-
[0, 128 | 0]
|
|
1192
|
-
];
|
|
1193
|
-
var PlatformApplicationDisabledException$ = [-3, n0, _PADE,
|
|
1194
|
-
{ [_aQE]: [`PlatformApplicationDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
1195
|
-
[_m],
|
|
1196
|
-
[0]
|
|
1197
|
-
];
|
|
1198
|
-
schema.TypeRegistry.for(n0).registerError(PlatformApplicationDisabledException$, PlatformApplicationDisabledException);
|
|
1199
|
-
var PublishBatchInput$ = [3, n0, _PBI,
|
|
1200
|
-
0,
|
|
1201
|
-
[_TA, _PBRE],
|
|
1202
|
-
[0, [() => PublishBatchRequestEntryList, 0]], 2
|
|
1203
|
-
];
|
|
1204
|
-
var PublishBatchRequestEntry$ = [3, n0, _PBREu,
|
|
1205
|
-
0,
|
|
1206
|
-
[_I, _M, _Su, _MS, _MA, _MDI, _MGI],
|
|
1207
|
-
[0, 0, 0, 0, [() => MessageAttributeMap, 0], 0, 0], 2
|
|
1208
|
-
];
|
|
1209
|
-
var PublishBatchResponse$ = [3, n0, _PBR,
|
|
1210
|
-
0,
|
|
1211
|
-
[_Suc, _F],
|
|
1212
|
-
[() => PublishBatchResultEntryList, () => BatchResultErrorEntryList]
|
|
1213
|
-
];
|
|
1214
|
-
var PublishBatchResultEntry$ = [3, n0, _PBREub,
|
|
1215
|
-
0,
|
|
1216
|
-
[_I, _MI, _SN],
|
|
1217
|
-
[0, 0, 0]
|
|
1218
|
-
];
|
|
1219
|
-
var PublishInput$ = [3, n0, _PI,
|
|
1220
|
-
0,
|
|
1221
|
-
[_M, _TA, _TAa, _PN, _Su, _MS, _MA, _MDI, _MGI],
|
|
1222
|
-
[0, 0, 0, [() => PhoneNumber, 0], 0, 0, [() => MessageAttributeMap, 0], 0, 0], 1
|
|
1223
|
-
];
|
|
1224
|
-
var PublishResponse$ = [3, n0, _PR,
|
|
1225
|
-
0,
|
|
1226
|
-
[_MI, _SN],
|
|
1227
|
-
[0, 0]
|
|
1228
|
-
];
|
|
1229
|
-
var PutDataProtectionPolicyInput$ = [3, n0, _PDPPI,
|
|
1230
|
-
0,
|
|
1231
|
-
[_RA, _DPP],
|
|
1232
|
-
[0, 0], 2
|
|
1233
|
-
];
|
|
1234
|
-
var RemovePermissionInput$ = [3, n0, _RPI,
|
|
1235
|
-
0,
|
|
1236
|
-
[_TA, _L],
|
|
1237
|
-
[0, 0], 2
|
|
1238
|
-
];
|
|
1239
|
-
var ReplayLimitExceededException$ = [-3, n0, _RLEE,
|
|
1240
|
-
{ [_aQE]: [`ReplayLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
1241
|
-
[_m],
|
|
1242
|
-
[0]
|
|
1243
|
-
];
|
|
1244
|
-
schema.TypeRegistry.for(n0).registerError(ReplayLimitExceededException$, ReplayLimitExceededException);
|
|
1245
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1246
|
-
{ [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1247
|
-
[_m],
|
|
1248
|
-
[0]
|
|
1249
|
-
];
|
|
1250
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1251
|
-
var SetEndpointAttributesInput$ = [3, n0, _SEAI,
|
|
1252
|
-
0,
|
|
1253
|
-
[_EA, _A],
|
|
1254
|
-
[0, 128 | 0], 2
|
|
1255
|
-
];
|
|
1256
|
-
var SetPlatformApplicationAttributesInput$ = [3, n0, _SPAAI,
|
|
1257
|
-
0,
|
|
1258
|
-
[_PAA, _A],
|
|
1259
|
-
[0, 128 | 0], 2
|
|
1260
|
-
];
|
|
1261
|
-
var SetSMSAttributesInput$ = [3, n0, _SSMSAI,
|
|
1262
|
-
0,
|
|
1263
|
-
[_a],
|
|
1264
|
-
[128 | 0], 1
|
|
1265
|
-
];
|
|
1266
|
-
var SetSMSAttributesResponse$ = [3, n0, _SSMSAR,
|
|
1267
|
-
0,
|
|
1268
|
-
[],
|
|
1269
|
-
[]
|
|
1270
|
-
];
|
|
1271
|
-
var SetSubscriptionAttributesInput$ = [3, n0, _SSAI,
|
|
1272
|
-
0,
|
|
1273
|
-
[_SA, _ANt, _AV],
|
|
1274
|
-
[0, 0, 0], 2
|
|
1275
|
-
];
|
|
1276
|
-
var SetTopicAttributesInput$ = [3, n0, _STAI,
|
|
1277
|
-
0,
|
|
1278
|
-
[_TA, _ANt, _AV],
|
|
1279
|
-
[0, 0, 0], 2
|
|
1280
|
-
];
|
|
1281
|
-
var SMSSandboxPhoneNumber$ = [3, n0, _SMSSPN,
|
|
1282
|
-
0,
|
|
1283
|
-
[_PN, _St],
|
|
1284
|
-
[[() => PhoneNumberString, 0], 0]
|
|
1285
|
-
];
|
|
1286
|
-
var StaleTagException$ = [-3, n0, _STE,
|
|
1287
|
-
{ [_aQE]: [`StaleTag`, 400], [_e]: _c, [_hE]: 400 },
|
|
1288
|
-
[_m],
|
|
1289
|
-
[0]
|
|
1290
|
-
];
|
|
1291
|
-
schema.TypeRegistry.for(n0).registerError(StaleTagException$, StaleTagException);
|
|
1292
|
-
var SubscribeInput$ = [3, n0, _SI,
|
|
1293
|
-
0,
|
|
1294
|
-
[_TA, _Pr, _E, _A, _RSA],
|
|
1295
|
-
[0, 0, 0, 128 | 0, 2], 2
|
|
1296
|
-
];
|
|
1297
|
-
var SubscribeResponse$ = [3, n0, _SR,
|
|
1298
|
-
0,
|
|
1299
|
-
[_SA],
|
|
1300
|
-
[0]
|
|
1301
|
-
];
|
|
1302
|
-
var Subscription$ = [3, n0, _Sub,
|
|
1303
|
-
0,
|
|
1304
|
-
[_SA, _O, _Pr, _E, _TA],
|
|
1305
|
-
[0, 0, 0, 0, 0]
|
|
1306
|
-
];
|
|
1307
|
-
var SubscriptionLimitExceededException$ = [-3, n0, _SLEE,
|
|
1308
|
-
{ [_aQE]: [`SubscriptionLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
1309
|
-
[_m],
|
|
1310
|
-
[0]
|
|
1311
|
-
];
|
|
1312
|
-
schema.TypeRegistry.for(n0).registerError(SubscriptionLimitExceededException$, SubscriptionLimitExceededException);
|
|
1313
|
-
var Tag$ = [3, n0, _Tag,
|
|
1314
|
-
0,
|
|
1315
|
-
[_K, _V],
|
|
1316
|
-
[0, 0], 2
|
|
1317
|
-
];
|
|
1318
|
-
var TagLimitExceededException$ = [-3, n0, _TLEE,
|
|
1319
|
-
{ [_aQE]: [`TagLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1320
|
-
[_m],
|
|
1321
|
-
[0]
|
|
1322
|
-
];
|
|
1323
|
-
schema.TypeRegistry.for(n0).registerError(TagLimitExceededException$, TagLimitExceededException);
|
|
1324
|
-
var TagPolicyException$ = [-3, n0, _TPE,
|
|
1325
|
-
{ [_aQE]: [`TagPolicy`, 400], [_e]: _c, [_hE]: 400 },
|
|
1326
|
-
[_m],
|
|
1327
|
-
[0]
|
|
1328
|
-
];
|
|
1329
|
-
schema.TypeRegistry.for(n0).registerError(TagPolicyException$, TagPolicyException);
|
|
1330
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1331
|
-
0,
|
|
1332
|
-
[_RA, _Ta],
|
|
1333
|
-
[0, () => TagList], 2
|
|
1334
|
-
];
|
|
1335
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1336
|
-
0,
|
|
1337
|
-
[],
|
|
1338
|
-
[]
|
|
1339
|
-
];
|
|
1340
|
-
var ThrottledException$ = [-3, n0, _TE,
|
|
1341
|
-
{ [_aQE]: [`Throttled`, 429], [_e]: _c, [_hE]: 429 },
|
|
1342
|
-
[_m],
|
|
1343
|
-
[0]
|
|
1344
|
-
];
|
|
1345
|
-
schema.TypeRegistry.for(n0).registerError(ThrottledException$, ThrottledException);
|
|
1346
|
-
var TooManyEntriesInBatchRequestException$ = [-3, n0, _TMEIBRE,
|
|
1347
|
-
{ [_aQE]: [`TooManyEntriesInBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
1348
|
-
[_m],
|
|
1349
|
-
[0]
|
|
1350
|
-
];
|
|
1351
|
-
schema.TypeRegistry.for(n0).registerError(TooManyEntriesInBatchRequestException$, TooManyEntriesInBatchRequestException);
|
|
1352
|
-
var Topic$ = [3, n0, _Top,
|
|
1353
|
-
0,
|
|
1354
|
-
[_TA],
|
|
1355
|
-
[0]
|
|
1356
|
-
];
|
|
1357
|
-
var TopicLimitExceededException$ = [-3, n0, _TLEEo,
|
|
1358
|
-
{ [_aQE]: [`TopicLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
1359
|
-
[_m],
|
|
1360
|
-
[0]
|
|
1361
|
-
];
|
|
1362
|
-
schema.TypeRegistry.for(n0).registerError(TopicLimitExceededException$, TopicLimitExceededException);
|
|
1363
|
-
var UnsubscribeInput$ = [3, n0, _UI,
|
|
1364
|
-
0,
|
|
1365
|
-
[_SA],
|
|
1366
|
-
[0], 1
|
|
1367
|
-
];
|
|
1368
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1369
|
-
0,
|
|
1370
|
-
[_RA, _TK],
|
|
1371
|
-
[0, 64 | 0], 2
|
|
1372
|
-
];
|
|
1373
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1374
|
-
0,
|
|
1375
|
-
[],
|
|
1376
|
-
[]
|
|
1377
|
-
];
|
|
1378
|
-
var UserErrorException$ = [-3, n0, _UEE,
|
|
1379
|
-
{ [_aQE]: [`UserError`, 400], [_e]: _c, [_hE]: 400 },
|
|
1380
|
-
[_m],
|
|
1381
|
-
[0]
|
|
1382
|
-
];
|
|
1383
|
-
schema.TypeRegistry.for(n0).registerError(UserErrorException$, UserErrorException);
|
|
1384
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1385
|
-
{ [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1386
|
-
[_M],
|
|
1387
|
-
[0], 1
|
|
1388
|
-
];
|
|
1389
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1390
|
-
var VerificationException$ = [-3, n0, _VEe,
|
|
1391
|
-
{ [_e]: _c },
|
|
1392
|
-
[_M, _St],
|
|
1393
|
-
[0, 0], 2
|
|
1394
|
-
];
|
|
1395
|
-
schema.TypeRegistry.for(n0).registerError(VerificationException$, VerificationException);
|
|
1396
|
-
var VerifySMSSandboxPhoneNumberInput$ = [3, n0, _VSMSSPNI,
|
|
1397
|
-
0,
|
|
1398
|
-
[_PN, _OTP],
|
|
1399
|
-
[[() => PhoneNumberString, 0], 0], 2
|
|
1400
|
-
];
|
|
1401
|
-
var VerifySMSSandboxPhoneNumberResult$ = [3, n0, _VSMSSPNR,
|
|
1402
|
-
0,
|
|
1403
|
-
[],
|
|
1404
|
-
[]
|
|
1405
|
-
];
|
|
1406
|
-
var __Unit = "unit";
|
|
1407
|
-
var SNSServiceException$ = [-3, _sm, "SNSServiceException", 0, [], []];
|
|
1408
|
-
schema.TypeRegistry.for(_sm).registerError(SNSServiceException$, SNSServiceException);
|
|
1409
|
-
var BatchResultErrorEntryList = [1, n0, _BREEL,
|
|
1410
|
-
0, () => BatchResultErrorEntry$
|
|
1411
|
-
];
|
|
1412
|
-
var ListOfEndpoints = [1, n0, _LOE,
|
|
1413
|
-
0, () => Endpoint$
|
|
1414
|
-
];
|
|
1415
|
-
var ListOfPlatformApplications = [1, n0, _LOPA,
|
|
1416
|
-
0, () => PlatformApplication$
|
|
1417
|
-
];
|
|
1418
|
-
var PhoneNumberInformationList = [1, n0, _PNIL,
|
|
1419
|
-
0, [() => PhoneNumberInformation$,
|
|
1420
|
-
0]
|
|
1421
|
-
];
|
|
1422
|
-
var PhoneNumberList = [1, n0, _PNL,
|
|
1423
|
-
0, [() => PhoneNumber,
|
|
1424
|
-
0]
|
|
1425
|
-
];
|
|
1426
|
-
var PublishBatchRequestEntryList = [1, n0, _PBREL,
|
|
1427
|
-
0, [() => PublishBatchRequestEntry$,
|
|
1428
|
-
0]
|
|
1429
|
-
];
|
|
1430
|
-
var PublishBatchResultEntryList = [1, n0, _PBRELu,
|
|
1431
|
-
0, () => PublishBatchResultEntry$
|
|
1432
|
-
];
|
|
1433
|
-
var SMSSandboxPhoneNumberList = [1, n0, _SMSSPNL,
|
|
1434
|
-
0, [() => SMSSandboxPhoneNumber$,
|
|
1435
|
-
0]
|
|
1436
|
-
];
|
|
1437
|
-
var SubscriptionsList = [1, n0, _SL,
|
|
1438
|
-
0, () => Subscription$
|
|
1439
|
-
];
|
|
1440
|
-
var TagList = [1, n0, _TL,
|
|
1441
|
-
0, () => Tag$
|
|
1442
|
-
];
|
|
1443
|
-
var TopicsList = [1, n0, _TLo,
|
|
1444
|
-
0, () => Topic$
|
|
1445
|
-
];
|
|
1446
|
-
var MessageAttributeMap = [2, n0, _MAM,
|
|
1447
|
-
0, [0,
|
|
1448
|
-
{ [_xN]: _N }],
|
|
1449
|
-
[() => MessageAttributeValue$,
|
|
1450
|
-
{ [_xN]: _V }]
|
|
1451
|
-
];
|
|
1452
|
-
var AddPermission$ = [9, n0, _AP,
|
|
1453
|
-
0, () => AddPermissionInput$, () => __Unit
|
|
1454
|
-
];
|
|
1455
|
-
var CheckIfPhoneNumberIsOptedOut$ = [9, n0, _CIPNIOO,
|
|
1456
|
-
0, () => CheckIfPhoneNumberIsOptedOutInput$, () => CheckIfPhoneNumberIsOptedOutResponse$
|
|
1457
|
-
];
|
|
1458
|
-
var ConfirmSubscription$ = [9, n0, _CS,
|
|
1459
|
-
0, () => ConfirmSubscriptionInput$, () => ConfirmSubscriptionResponse$
|
|
1460
|
-
];
|
|
1461
|
-
var CreatePlatformApplication$ = [9, n0, _CPA,
|
|
1462
|
-
0, () => CreatePlatformApplicationInput$, () => CreatePlatformApplicationResponse$
|
|
1463
|
-
];
|
|
1464
|
-
var CreatePlatformEndpoint$ = [9, n0, _CPE,
|
|
1465
|
-
0, () => CreatePlatformEndpointInput$, () => CreateEndpointResponse$
|
|
1466
|
-
];
|
|
1467
|
-
var CreateSMSSandboxPhoneNumber$ = [9, n0, _CSMSSPN,
|
|
1468
|
-
0, () => CreateSMSSandboxPhoneNumberInput$, () => CreateSMSSandboxPhoneNumberResult$
|
|
1469
|
-
];
|
|
1470
|
-
var CreateTopic$ = [9, n0, _CT,
|
|
1471
|
-
0, () => CreateTopicInput$, () => CreateTopicResponse$
|
|
1472
|
-
];
|
|
1473
|
-
var DeleteEndpoint$ = [9, n0, _DE,
|
|
1474
|
-
0, () => DeleteEndpointInput$, () => __Unit
|
|
1475
|
-
];
|
|
1476
|
-
var DeletePlatformApplication$ = [9, n0, _DPA,
|
|
1477
|
-
0, () => DeletePlatformApplicationInput$, () => __Unit
|
|
1478
|
-
];
|
|
1479
|
-
var DeleteSMSSandboxPhoneNumber$ = [9, n0, _DSMSSPN,
|
|
1480
|
-
0, () => DeleteSMSSandboxPhoneNumberInput$, () => DeleteSMSSandboxPhoneNumberResult$
|
|
1481
|
-
];
|
|
1482
|
-
var DeleteTopic$ = [9, n0, _DTe,
|
|
1483
|
-
0, () => DeleteTopicInput$, () => __Unit
|
|
1484
|
-
];
|
|
1485
|
-
var GetDataProtectionPolicy$ = [9, n0, _GDPP,
|
|
1486
|
-
0, () => GetDataProtectionPolicyInput$, () => GetDataProtectionPolicyResponse$
|
|
1487
|
-
];
|
|
1488
|
-
var GetEndpointAttributes$ = [9, n0, _GEA,
|
|
1489
|
-
0, () => GetEndpointAttributesInput$, () => GetEndpointAttributesResponse$
|
|
1490
|
-
];
|
|
1491
|
-
var GetPlatformApplicationAttributes$ = [9, n0, _GPAA,
|
|
1492
|
-
0, () => GetPlatformApplicationAttributesInput$, () => GetPlatformApplicationAttributesResponse$
|
|
1493
|
-
];
|
|
1494
|
-
var GetSMSAttributes$ = [9, n0, _GSMSA,
|
|
1495
|
-
0, () => GetSMSAttributesInput$, () => GetSMSAttributesResponse$
|
|
1496
|
-
];
|
|
1497
|
-
var GetSMSSandboxAccountStatus$ = [9, n0, _GSMSSAS,
|
|
1498
|
-
0, () => GetSMSSandboxAccountStatusInput$, () => GetSMSSandboxAccountStatusResult$
|
|
1499
|
-
];
|
|
1500
|
-
var GetSubscriptionAttributes$ = [9, n0, _GSA,
|
|
1501
|
-
0, () => GetSubscriptionAttributesInput$, () => GetSubscriptionAttributesResponse$
|
|
1502
|
-
];
|
|
1503
|
-
var GetTopicAttributes$ = [9, n0, _GTA,
|
|
1504
|
-
0, () => GetTopicAttributesInput$, () => GetTopicAttributesResponse$
|
|
1505
|
-
];
|
|
1506
|
-
var ListEndpointsByPlatformApplication$ = [9, n0, _LEBPA,
|
|
1507
|
-
0, () => ListEndpointsByPlatformApplicationInput$, () => ListEndpointsByPlatformApplicationResponse$
|
|
1508
|
-
];
|
|
1509
|
-
var ListOriginationNumbers$ = [9, n0, _LON,
|
|
1510
|
-
0, () => ListOriginationNumbersRequest$, () => ListOriginationNumbersResult$
|
|
1511
|
-
];
|
|
1512
|
-
var ListPhoneNumbersOptedOut$ = [9, n0, _LPNOO,
|
|
1513
|
-
0, () => ListPhoneNumbersOptedOutInput$, () => ListPhoneNumbersOptedOutResponse$
|
|
1514
|
-
];
|
|
1515
|
-
var ListPlatformApplications$ = [9, n0, _LPA,
|
|
1516
|
-
0, () => ListPlatformApplicationsInput$, () => ListPlatformApplicationsResponse$
|
|
1517
|
-
];
|
|
1518
|
-
var ListSMSSandboxPhoneNumbers$ = [9, n0, _LSMSSPN,
|
|
1519
|
-
0, () => ListSMSSandboxPhoneNumbersInput$, () => ListSMSSandboxPhoneNumbersResult$
|
|
1520
|
-
];
|
|
1521
|
-
var ListSubscriptions$ = [9, n0, _LS,
|
|
1522
|
-
0, () => ListSubscriptionsInput$, () => ListSubscriptionsResponse$
|
|
1523
|
-
];
|
|
1524
|
-
var ListSubscriptionsByTopic$ = [9, n0, _LSBT,
|
|
1525
|
-
0, () => ListSubscriptionsByTopicInput$, () => ListSubscriptionsByTopicResponse$
|
|
1526
|
-
];
|
|
1527
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1528
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1529
|
-
];
|
|
1530
|
-
var ListTopics$ = [9, n0, _LT,
|
|
1531
|
-
0, () => ListTopicsInput$, () => ListTopicsResponse$
|
|
1532
|
-
];
|
|
1533
|
-
var OptInPhoneNumber$ = [9, n0, _OIPN,
|
|
1534
|
-
0, () => OptInPhoneNumberInput$, () => OptInPhoneNumberResponse$
|
|
1535
|
-
];
|
|
1536
|
-
var Publish$ = [9, n0, _Pu,
|
|
1537
|
-
0, () => PublishInput$, () => PublishResponse$
|
|
1538
|
-
];
|
|
1539
|
-
var PublishBatch$ = [9, n0, _PB,
|
|
1540
|
-
0, () => PublishBatchInput$, () => PublishBatchResponse$
|
|
1541
|
-
];
|
|
1542
|
-
var PutDataProtectionPolicy$ = [9, n0, _PDPP,
|
|
1543
|
-
0, () => PutDataProtectionPolicyInput$, () => __Unit
|
|
1544
|
-
];
|
|
1545
|
-
var RemovePermission$ = [9, n0, _RP,
|
|
1546
|
-
0, () => RemovePermissionInput$, () => __Unit
|
|
1547
|
-
];
|
|
1548
|
-
var SetEndpointAttributes$ = [9, n0, _SEA,
|
|
1549
|
-
0, () => SetEndpointAttributesInput$, () => __Unit
|
|
1550
|
-
];
|
|
1551
|
-
var SetPlatformApplicationAttributes$ = [9, n0, _SPAA,
|
|
1552
|
-
0, () => SetPlatformApplicationAttributesInput$, () => __Unit
|
|
1553
|
-
];
|
|
1554
|
-
var SetSMSAttributes$ = [9, n0, _SSMSA,
|
|
1555
|
-
0, () => SetSMSAttributesInput$, () => SetSMSAttributesResponse$
|
|
1556
|
-
];
|
|
1557
|
-
var SetSubscriptionAttributes$ = [9, n0, _SSA,
|
|
1558
|
-
0, () => SetSubscriptionAttributesInput$, () => __Unit
|
|
1559
|
-
];
|
|
1560
|
-
var SetTopicAttributes$ = [9, n0, _STA,
|
|
1561
|
-
0, () => SetTopicAttributesInput$, () => __Unit
|
|
1562
|
-
];
|
|
1563
|
-
var Subscribe$ = [9, n0, _Subs,
|
|
1564
|
-
0, () => SubscribeInput$, () => SubscribeResponse$
|
|
1565
|
-
];
|
|
1566
|
-
var TagResource$ = [9, n0, _TR,
|
|
1567
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1568
|
-
];
|
|
1569
|
-
var Unsubscribe$ = [9, n0, _U,
|
|
1570
|
-
0, () => UnsubscribeInput$, () => __Unit
|
|
1571
|
-
];
|
|
1572
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1573
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1574
|
-
];
|
|
1575
|
-
var VerifySMSSandboxPhoneNumber$ = [9, n0, _VSMSSPN,
|
|
1576
|
-
0, () => VerifySMSSandboxPhoneNumberInput$, () => VerifySMSSandboxPhoneNumberResult$
|
|
1577
|
-
];
|
|
1578
|
-
|
|
1579
116
|
class AddPermissionCommand extends smithyClient.Command
|
|
1580
117
|
.classBuilder()
|
|
1581
118
|
.ep(commonParams)
|
|
@@ -1584,7 +121,7 @@ class AddPermissionCommand extends smithyClient.Command
|
|
|
1584
121
|
})
|
|
1585
122
|
.s("AmazonSimpleNotificationService", "AddPermission", {})
|
|
1586
123
|
.n("SNSClient", "AddPermissionCommand")
|
|
1587
|
-
.sc(AddPermission$)
|
|
124
|
+
.sc(schemas_0.AddPermission$)
|
|
1588
125
|
.build() {
|
|
1589
126
|
}
|
|
1590
127
|
|
|
@@ -1596,7 +133,7 @@ class CheckIfPhoneNumberIsOptedOutCommand extends smithyClient.Command
|
|
|
1596
133
|
})
|
|
1597
134
|
.s("AmazonSimpleNotificationService", "CheckIfPhoneNumberIsOptedOut", {})
|
|
1598
135
|
.n("SNSClient", "CheckIfPhoneNumberIsOptedOutCommand")
|
|
1599
|
-
.sc(CheckIfPhoneNumberIsOptedOut$)
|
|
136
|
+
.sc(schemas_0.CheckIfPhoneNumberIsOptedOut$)
|
|
1600
137
|
.build() {
|
|
1601
138
|
}
|
|
1602
139
|
|
|
@@ -1608,7 +145,7 @@ class ConfirmSubscriptionCommand extends smithyClient.Command
|
|
|
1608
145
|
})
|
|
1609
146
|
.s("AmazonSimpleNotificationService", "ConfirmSubscription", {})
|
|
1610
147
|
.n("SNSClient", "ConfirmSubscriptionCommand")
|
|
1611
|
-
.sc(ConfirmSubscription$)
|
|
148
|
+
.sc(schemas_0.ConfirmSubscription$)
|
|
1612
149
|
.build() {
|
|
1613
150
|
}
|
|
1614
151
|
|
|
@@ -1620,7 +157,7 @@ class CreatePlatformApplicationCommand extends smithyClient.Command
|
|
|
1620
157
|
})
|
|
1621
158
|
.s("AmazonSimpleNotificationService", "CreatePlatformApplication", {})
|
|
1622
159
|
.n("SNSClient", "CreatePlatformApplicationCommand")
|
|
1623
|
-
.sc(CreatePlatformApplication$)
|
|
160
|
+
.sc(schemas_0.CreatePlatformApplication$)
|
|
1624
161
|
.build() {
|
|
1625
162
|
}
|
|
1626
163
|
|
|
@@ -1632,7 +169,7 @@ class CreatePlatformEndpointCommand extends smithyClient.Command
|
|
|
1632
169
|
})
|
|
1633
170
|
.s("AmazonSimpleNotificationService", "CreatePlatformEndpoint", {})
|
|
1634
171
|
.n("SNSClient", "CreatePlatformEndpointCommand")
|
|
1635
|
-
.sc(CreatePlatformEndpoint$)
|
|
172
|
+
.sc(schemas_0.CreatePlatformEndpoint$)
|
|
1636
173
|
.build() {
|
|
1637
174
|
}
|
|
1638
175
|
|
|
@@ -1644,7 +181,7 @@ class CreateSMSSandboxPhoneNumberCommand extends smithyClient.Command
|
|
|
1644
181
|
})
|
|
1645
182
|
.s("AmazonSimpleNotificationService", "CreateSMSSandboxPhoneNumber", {})
|
|
1646
183
|
.n("SNSClient", "CreateSMSSandboxPhoneNumberCommand")
|
|
1647
|
-
.sc(CreateSMSSandboxPhoneNumber$)
|
|
184
|
+
.sc(schemas_0.CreateSMSSandboxPhoneNumber$)
|
|
1648
185
|
.build() {
|
|
1649
186
|
}
|
|
1650
187
|
|
|
@@ -1656,7 +193,7 @@ class CreateTopicCommand extends smithyClient.Command
|
|
|
1656
193
|
})
|
|
1657
194
|
.s("AmazonSimpleNotificationService", "CreateTopic", {})
|
|
1658
195
|
.n("SNSClient", "CreateTopicCommand")
|
|
1659
|
-
.sc(CreateTopic$)
|
|
196
|
+
.sc(schemas_0.CreateTopic$)
|
|
1660
197
|
.build() {
|
|
1661
198
|
}
|
|
1662
199
|
|
|
@@ -1668,7 +205,7 @@ class DeleteEndpointCommand extends smithyClient.Command
|
|
|
1668
205
|
})
|
|
1669
206
|
.s("AmazonSimpleNotificationService", "DeleteEndpoint", {})
|
|
1670
207
|
.n("SNSClient", "DeleteEndpointCommand")
|
|
1671
|
-
.sc(DeleteEndpoint$)
|
|
208
|
+
.sc(schemas_0.DeleteEndpoint$)
|
|
1672
209
|
.build() {
|
|
1673
210
|
}
|
|
1674
211
|
|
|
@@ -1680,7 +217,7 @@ class DeletePlatformApplicationCommand extends smithyClient.Command
|
|
|
1680
217
|
})
|
|
1681
218
|
.s("AmazonSimpleNotificationService", "DeletePlatformApplication", {})
|
|
1682
219
|
.n("SNSClient", "DeletePlatformApplicationCommand")
|
|
1683
|
-
.sc(DeletePlatformApplication$)
|
|
220
|
+
.sc(schemas_0.DeletePlatformApplication$)
|
|
1684
221
|
.build() {
|
|
1685
222
|
}
|
|
1686
223
|
|
|
@@ -1692,7 +229,7 @@ class DeleteSMSSandboxPhoneNumberCommand extends smithyClient.Command
|
|
|
1692
229
|
})
|
|
1693
230
|
.s("AmazonSimpleNotificationService", "DeleteSMSSandboxPhoneNumber", {})
|
|
1694
231
|
.n("SNSClient", "DeleteSMSSandboxPhoneNumberCommand")
|
|
1695
|
-
.sc(DeleteSMSSandboxPhoneNumber$)
|
|
232
|
+
.sc(schemas_0.DeleteSMSSandboxPhoneNumber$)
|
|
1696
233
|
.build() {
|
|
1697
234
|
}
|
|
1698
235
|
|
|
@@ -1704,7 +241,7 @@ class DeleteTopicCommand extends smithyClient.Command
|
|
|
1704
241
|
})
|
|
1705
242
|
.s("AmazonSimpleNotificationService", "DeleteTopic", {})
|
|
1706
243
|
.n("SNSClient", "DeleteTopicCommand")
|
|
1707
|
-
.sc(DeleteTopic$)
|
|
244
|
+
.sc(schemas_0.DeleteTopic$)
|
|
1708
245
|
.build() {
|
|
1709
246
|
}
|
|
1710
247
|
|
|
@@ -1716,7 +253,7 @@ class GetDataProtectionPolicyCommand extends smithyClient.Command
|
|
|
1716
253
|
})
|
|
1717
254
|
.s("AmazonSimpleNotificationService", "GetDataProtectionPolicy", {})
|
|
1718
255
|
.n("SNSClient", "GetDataProtectionPolicyCommand")
|
|
1719
|
-
.sc(GetDataProtectionPolicy$)
|
|
256
|
+
.sc(schemas_0.GetDataProtectionPolicy$)
|
|
1720
257
|
.build() {
|
|
1721
258
|
}
|
|
1722
259
|
|
|
@@ -1728,7 +265,7 @@ class GetEndpointAttributesCommand extends smithyClient.Command
|
|
|
1728
265
|
})
|
|
1729
266
|
.s("AmazonSimpleNotificationService", "GetEndpointAttributes", {})
|
|
1730
267
|
.n("SNSClient", "GetEndpointAttributesCommand")
|
|
1731
|
-
.sc(GetEndpointAttributes$)
|
|
268
|
+
.sc(schemas_0.GetEndpointAttributes$)
|
|
1732
269
|
.build() {
|
|
1733
270
|
}
|
|
1734
271
|
|
|
@@ -1740,7 +277,7 @@ class GetPlatformApplicationAttributesCommand extends smithyClient.Command
|
|
|
1740
277
|
})
|
|
1741
278
|
.s("AmazonSimpleNotificationService", "GetPlatformApplicationAttributes", {})
|
|
1742
279
|
.n("SNSClient", "GetPlatformApplicationAttributesCommand")
|
|
1743
|
-
.sc(GetPlatformApplicationAttributes$)
|
|
280
|
+
.sc(schemas_0.GetPlatformApplicationAttributes$)
|
|
1744
281
|
.build() {
|
|
1745
282
|
}
|
|
1746
283
|
|
|
@@ -1752,7 +289,7 @@ class GetSMSAttributesCommand extends smithyClient.Command
|
|
|
1752
289
|
})
|
|
1753
290
|
.s("AmazonSimpleNotificationService", "GetSMSAttributes", {})
|
|
1754
291
|
.n("SNSClient", "GetSMSAttributesCommand")
|
|
1755
|
-
.sc(GetSMSAttributes$)
|
|
292
|
+
.sc(schemas_0.GetSMSAttributes$)
|
|
1756
293
|
.build() {
|
|
1757
294
|
}
|
|
1758
295
|
|
|
@@ -1764,7 +301,7 @@ class GetSMSSandboxAccountStatusCommand extends smithyClient.Command
|
|
|
1764
301
|
})
|
|
1765
302
|
.s("AmazonSimpleNotificationService", "GetSMSSandboxAccountStatus", {})
|
|
1766
303
|
.n("SNSClient", "GetSMSSandboxAccountStatusCommand")
|
|
1767
|
-
.sc(GetSMSSandboxAccountStatus$)
|
|
304
|
+
.sc(schemas_0.GetSMSSandboxAccountStatus$)
|
|
1768
305
|
.build() {
|
|
1769
306
|
}
|
|
1770
307
|
|
|
@@ -1776,7 +313,7 @@ class GetSubscriptionAttributesCommand extends smithyClient.Command
|
|
|
1776
313
|
})
|
|
1777
314
|
.s("AmazonSimpleNotificationService", "GetSubscriptionAttributes", {})
|
|
1778
315
|
.n("SNSClient", "GetSubscriptionAttributesCommand")
|
|
1779
|
-
.sc(GetSubscriptionAttributes$)
|
|
316
|
+
.sc(schemas_0.GetSubscriptionAttributes$)
|
|
1780
317
|
.build() {
|
|
1781
318
|
}
|
|
1782
319
|
|
|
@@ -1788,7 +325,7 @@ class GetTopicAttributesCommand extends smithyClient.Command
|
|
|
1788
325
|
})
|
|
1789
326
|
.s("AmazonSimpleNotificationService", "GetTopicAttributes", {})
|
|
1790
327
|
.n("SNSClient", "GetTopicAttributesCommand")
|
|
1791
|
-
.sc(GetTopicAttributes$)
|
|
328
|
+
.sc(schemas_0.GetTopicAttributes$)
|
|
1792
329
|
.build() {
|
|
1793
330
|
}
|
|
1794
331
|
|
|
@@ -1800,7 +337,7 @@ class ListEndpointsByPlatformApplicationCommand extends smithyClient.Command
|
|
|
1800
337
|
})
|
|
1801
338
|
.s("AmazonSimpleNotificationService", "ListEndpointsByPlatformApplication", {})
|
|
1802
339
|
.n("SNSClient", "ListEndpointsByPlatformApplicationCommand")
|
|
1803
|
-
.sc(ListEndpointsByPlatformApplication$)
|
|
340
|
+
.sc(schemas_0.ListEndpointsByPlatformApplication$)
|
|
1804
341
|
.build() {
|
|
1805
342
|
}
|
|
1806
343
|
|
|
@@ -1812,7 +349,7 @@ class ListOriginationNumbersCommand extends smithyClient.Command
|
|
|
1812
349
|
})
|
|
1813
350
|
.s("AmazonSimpleNotificationService", "ListOriginationNumbers", {})
|
|
1814
351
|
.n("SNSClient", "ListOriginationNumbersCommand")
|
|
1815
|
-
.sc(ListOriginationNumbers$)
|
|
352
|
+
.sc(schemas_0.ListOriginationNumbers$)
|
|
1816
353
|
.build() {
|
|
1817
354
|
}
|
|
1818
355
|
|
|
@@ -1824,7 +361,7 @@ class ListPhoneNumbersOptedOutCommand extends smithyClient.Command
|
|
|
1824
361
|
})
|
|
1825
362
|
.s("AmazonSimpleNotificationService", "ListPhoneNumbersOptedOut", {})
|
|
1826
363
|
.n("SNSClient", "ListPhoneNumbersOptedOutCommand")
|
|
1827
|
-
.sc(ListPhoneNumbersOptedOut$)
|
|
364
|
+
.sc(schemas_0.ListPhoneNumbersOptedOut$)
|
|
1828
365
|
.build() {
|
|
1829
366
|
}
|
|
1830
367
|
|
|
@@ -1836,7 +373,7 @@ class ListPlatformApplicationsCommand extends smithyClient.Command
|
|
|
1836
373
|
})
|
|
1837
374
|
.s("AmazonSimpleNotificationService", "ListPlatformApplications", {})
|
|
1838
375
|
.n("SNSClient", "ListPlatformApplicationsCommand")
|
|
1839
|
-
.sc(ListPlatformApplications$)
|
|
376
|
+
.sc(schemas_0.ListPlatformApplications$)
|
|
1840
377
|
.build() {
|
|
1841
378
|
}
|
|
1842
379
|
|
|
@@ -1848,7 +385,7 @@ class ListSMSSandboxPhoneNumbersCommand extends smithyClient.Command
|
|
|
1848
385
|
})
|
|
1849
386
|
.s("AmazonSimpleNotificationService", "ListSMSSandboxPhoneNumbers", {})
|
|
1850
387
|
.n("SNSClient", "ListSMSSandboxPhoneNumbersCommand")
|
|
1851
|
-
.sc(ListSMSSandboxPhoneNumbers$)
|
|
388
|
+
.sc(schemas_0.ListSMSSandboxPhoneNumbers$)
|
|
1852
389
|
.build() {
|
|
1853
390
|
}
|
|
1854
391
|
|
|
@@ -1860,7 +397,7 @@ class ListSubscriptionsByTopicCommand extends smithyClient.Command
|
|
|
1860
397
|
})
|
|
1861
398
|
.s("AmazonSimpleNotificationService", "ListSubscriptionsByTopic", {})
|
|
1862
399
|
.n("SNSClient", "ListSubscriptionsByTopicCommand")
|
|
1863
|
-
.sc(ListSubscriptionsByTopic$)
|
|
400
|
+
.sc(schemas_0.ListSubscriptionsByTopic$)
|
|
1864
401
|
.build() {
|
|
1865
402
|
}
|
|
1866
403
|
|
|
@@ -1872,7 +409,7 @@ class ListSubscriptionsCommand extends smithyClient.Command
|
|
|
1872
409
|
})
|
|
1873
410
|
.s("AmazonSimpleNotificationService", "ListSubscriptions", {})
|
|
1874
411
|
.n("SNSClient", "ListSubscriptionsCommand")
|
|
1875
|
-
.sc(ListSubscriptions$)
|
|
412
|
+
.sc(schemas_0.ListSubscriptions$)
|
|
1876
413
|
.build() {
|
|
1877
414
|
}
|
|
1878
415
|
|
|
@@ -1884,7 +421,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1884
421
|
})
|
|
1885
422
|
.s("AmazonSimpleNotificationService", "ListTagsForResource", {})
|
|
1886
423
|
.n("SNSClient", "ListTagsForResourceCommand")
|
|
1887
|
-
.sc(ListTagsForResource$)
|
|
424
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1888
425
|
.build() {
|
|
1889
426
|
}
|
|
1890
427
|
|
|
@@ -1896,7 +433,7 @@ class ListTopicsCommand extends smithyClient.Command
|
|
|
1896
433
|
})
|
|
1897
434
|
.s("AmazonSimpleNotificationService", "ListTopics", {})
|
|
1898
435
|
.n("SNSClient", "ListTopicsCommand")
|
|
1899
|
-
.sc(ListTopics$)
|
|
436
|
+
.sc(schemas_0.ListTopics$)
|
|
1900
437
|
.build() {
|
|
1901
438
|
}
|
|
1902
439
|
|
|
@@ -1908,7 +445,7 @@ class OptInPhoneNumberCommand extends smithyClient.Command
|
|
|
1908
445
|
})
|
|
1909
446
|
.s("AmazonSimpleNotificationService", "OptInPhoneNumber", {})
|
|
1910
447
|
.n("SNSClient", "OptInPhoneNumberCommand")
|
|
1911
|
-
.sc(OptInPhoneNumber$)
|
|
448
|
+
.sc(schemas_0.OptInPhoneNumber$)
|
|
1912
449
|
.build() {
|
|
1913
450
|
}
|
|
1914
451
|
|
|
@@ -1920,7 +457,7 @@ class PublishBatchCommand extends smithyClient.Command
|
|
|
1920
457
|
})
|
|
1921
458
|
.s("AmazonSimpleNotificationService", "PublishBatch", {})
|
|
1922
459
|
.n("SNSClient", "PublishBatchCommand")
|
|
1923
|
-
.sc(PublishBatch$)
|
|
460
|
+
.sc(schemas_0.PublishBatch$)
|
|
1924
461
|
.build() {
|
|
1925
462
|
}
|
|
1926
463
|
|
|
@@ -1932,7 +469,7 @@ class PublishCommand extends smithyClient.Command
|
|
|
1932
469
|
})
|
|
1933
470
|
.s("AmazonSimpleNotificationService", "Publish", {})
|
|
1934
471
|
.n("SNSClient", "PublishCommand")
|
|
1935
|
-
.sc(Publish$)
|
|
472
|
+
.sc(schemas_0.Publish$)
|
|
1936
473
|
.build() {
|
|
1937
474
|
}
|
|
1938
475
|
|
|
@@ -1944,7 +481,7 @@ class PutDataProtectionPolicyCommand extends smithyClient.Command
|
|
|
1944
481
|
})
|
|
1945
482
|
.s("AmazonSimpleNotificationService", "PutDataProtectionPolicy", {})
|
|
1946
483
|
.n("SNSClient", "PutDataProtectionPolicyCommand")
|
|
1947
|
-
.sc(PutDataProtectionPolicy$)
|
|
484
|
+
.sc(schemas_0.PutDataProtectionPolicy$)
|
|
1948
485
|
.build() {
|
|
1949
486
|
}
|
|
1950
487
|
|
|
@@ -1956,7 +493,7 @@ class RemovePermissionCommand extends smithyClient.Command
|
|
|
1956
493
|
})
|
|
1957
494
|
.s("AmazonSimpleNotificationService", "RemovePermission", {})
|
|
1958
495
|
.n("SNSClient", "RemovePermissionCommand")
|
|
1959
|
-
.sc(RemovePermission$)
|
|
496
|
+
.sc(schemas_0.RemovePermission$)
|
|
1960
497
|
.build() {
|
|
1961
498
|
}
|
|
1962
499
|
|
|
@@ -1968,7 +505,7 @@ class SetEndpointAttributesCommand extends smithyClient.Command
|
|
|
1968
505
|
})
|
|
1969
506
|
.s("AmazonSimpleNotificationService", "SetEndpointAttributes", {})
|
|
1970
507
|
.n("SNSClient", "SetEndpointAttributesCommand")
|
|
1971
|
-
.sc(SetEndpointAttributes$)
|
|
508
|
+
.sc(schemas_0.SetEndpointAttributes$)
|
|
1972
509
|
.build() {
|
|
1973
510
|
}
|
|
1974
511
|
|
|
@@ -1980,7 +517,7 @@ class SetPlatformApplicationAttributesCommand extends smithyClient.Command
|
|
|
1980
517
|
})
|
|
1981
518
|
.s("AmazonSimpleNotificationService", "SetPlatformApplicationAttributes", {})
|
|
1982
519
|
.n("SNSClient", "SetPlatformApplicationAttributesCommand")
|
|
1983
|
-
.sc(SetPlatformApplicationAttributes$)
|
|
520
|
+
.sc(schemas_0.SetPlatformApplicationAttributes$)
|
|
1984
521
|
.build() {
|
|
1985
522
|
}
|
|
1986
523
|
|
|
@@ -1992,7 +529,7 @@ class SetSMSAttributesCommand extends smithyClient.Command
|
|
|
1992
529
|
})
|
|
1993
530
|
.s("AmazonSimpleNotificationService", "SetSMSAttributes", {})
|
|
1994
531
|
.n("SNSClient", "SetSMSAttributesCommand")
|
|
1995
|
-
.sc(SetSMSAttributes$)
|
|
532
|
+
.sc(schemas_0.SetSMSAttributes$)
|
|
1996
533
|
.build() {
|
|
1997
534
|
}
|
|
1998
535
|
|
|
@@ -2004,7 +541,7 @@ class SetSubscriptionAttributesCommand extends smithyClient.Command
|
|
|
2004
541
|
})
|
|
2005
542
|
.s("AmazonSimpleNotificationService", "SetSubscriptionAttributes", {})
|
|
2006
543
|
.n("SNSClient", "SetSubscriptionAttributesCommand")
|
|
2007
|
-
.sc(SetSubscriptionAttributes$)
|
|
544
|
+
.sc(schemas_0.SetSubscriptionAttributes$)
|
|
2008
545
|
.build() {
|
|
2009
546
|
}
|
|
2010
547
|
|
|
@@ -2016,7 +553,7 @@ class SetTopicAttributesCommand extends smithyClient.Command
|
|
|
2016
553
|
})
|
|
2017
554
|
.s("AmazonSimpleNotificationService", "SetTopicAttributes", {})
|
|
2018
555
|
.n("SNSClient", "SetTopicAttributesCommand")
|
|
2019
|
-
.sc(SetTopicAttributes$)
|
|
556
|
+
.sc(schemas_0.SetTopicAttributes$)
|
|
2020
557
|
.build() {
|
|
2021
558
|
}
|
|
2022
559
|
|
|
@@ -2028,7 +565,7 @@ class SubscribeCommand extends smithyClient.Command
|
|
|
2028
565
|
})
|
|
2029
566
|
.s("AmazonSimpleNotificationService", "Subscribe", {})
|
|
2030
567
|
.n("SNSClient", "SubscribeCommand")
|
|
2031
|
-
.sc(Subscribe$)
|
|
568
|
+
.sc(schemas_0.Subscribe$)
|
|
2032
569
|
.build() {
|
|
2033
570
|
}
|
|
2034
571
|
|
|
@@ -2040,7 +577,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2040
577
|
})
|
|
2041
578
|
.s("AmazonSimpleNotificationService", "TagResource", {})
|
|
2042
579
|
.n("SNSClient", "TagResourceCommand")
|
|
2043
|
-
.sc(TagResource$)
|
|
580
|
+
.sc(schemas_0.TagResource$)
|
|
2044
581
|
.build() {
|
|
2045
582
|
}
|
|
2046
583
|
|
|
@@ -2052,7 +589,7 @@ class UnsubscribeCommand extends smithyClient.Command
|
|
|
2052
589
|
})
|
|
2053
590
|
.s("AmazonSimpleNotificationService", "Unsubscribe", {})
|
|
2054
591
|
.n("SNSClient", "UnsubscribeCommand")
|
|
2055
|
-
.sc(Unsubscribe$)
|
|
592
|
+
.sc(schemas_0.Unsubscribe$)
|
|
2056
593
|
.build() {
|
|
2057
594
|
}
|
|
2058
595
|
|
|
@@ -2064,7 +601,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2064
601
|
})
|
|
2065
602
|
.s("AmazonSimpleNotificationService", "UntagResource", {})
|
|
2066
603
|
.n("SNSClient", "UntagResourceCommand")
|
|
2067
|
-
.sc(UntagResource$)
|
|
604
|
+
.sc(schemas_0.UntagResource$)
|
|
2068
605
|
.build() {
|
|
2069
606
|
}
|
|
2070
607
|
|
|
@@ -2076,7 +613,7 @@ class VerifySMSSandboxPhoneNumberCommand extends smithyClient.Command
|
|
|
2076
613
|
})
|
|
2077
614
|
.s("AmazonSimpleNotificationService", "VerifySMSSandboxPhoneNumber", {})
|
|
2078
615
|
.n("SNSClient", "VerifySMSSandboxPhoneNumberCommand")
|
|
2079
|
-
.sc(VerifySMSSandboxPhoneNumber$)
|
|
616
|
+
.sc(schemas_0.VerifySMSSandboxPhoneNumber$)
|
|
2080
617
|
.build() {
|
|
2081
618
|
}
|
|
2082
619
|
|
|
@@ -2192,250 +729,58 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2192
729
|
enumerable: true,
|
|
2193
730
|
get: function () { return smithyClient.Client; }
|
|
2194
731
|
});
|
|
2195
|
-
exports
|
|
732
|
+
Object.defineProperty(exports, "SNSServiceException", {
|
|
733
|
+
enumerable: true,
|
|
734
|
+
get: function () { return SNSServiceException.SNSServiceException; }
|
|
735
|
+
});
|
|
2196
736
|
exports.AddPermissionCommand = AddPermissionCommand;
|
|
2197
|
-
exports.AddPermissionInput$ = AddPermissionInput$;
|
|
2198
|
-
exports.AuthorizationErrorException = AuthorizationErrorException;
|
|
2199
|
-
exports.AuthorizationErrorException$ = AuthorizationErrorException$;
|
|
2200
|
-
exports.BatchEntryIdsNotDistinctException = BatchEntryIdsNotDistinctException;
|
|
2201
|
-
exports.BatchEntryIdsNotDistinctException$ = BatchEntryIdsNotDistinctException$;
|
|
2202
|
-
exports.BatchRequestTooLongException = BatchRequestTooLongException;
|
|
2203
|
-
exports.BatchRequestTooLongException$ = BatchRequestTooLongException$;
|
|
2204
|
-
exports.BatchResultErrorEntry$ = BatchResultErrorEntry$;
|
|
2205
|
-
exports.CheckIfPhoneNumberIsOptedOut$ = CheckIfPhoneNumberIsOptedOut$;
|
|
2206
737
|
exports.CheckIfPhoneNumberIsOptedOutCommand = CheckIfPhoneNumberIsOptedOutCommand;
|
|
2207
|
-
exports.CheckIfPhoneNumberIsOptedOutInput$ = CheckIfPhoneNumberIsOptedOutInput$;
|
|
2208
|
-
exports.CheckIfPhoneNumberIsOptedOutResponse$ = CheckIfPhoneNumberIsOptedOutResponse$;
|
|
2209
|
-
exports.ConcurrentAccessException = ConcurrentAccessException;
|
|
2210
|
-
exports.ConcurrentAccessException$ = ConcurrentAccessException$;
|
|
2211
|
-
exports.ConfirmSubscription$ = ConfirmSubscription$;
|
|
2212
738
|
exports.ConfirmSubscriptionCommand = ConfirmSubscriptionCommand;
|
|
2213
|
-
exports.ConfirmSubscriptionInput$ = ConfirmSubscriptionInput$;
|
|
2214
|
-
exports.ConfirmSubscriptionResponse$ = ConfirmSubscriptionResponse$;
|
|
2215
|
-
exports.CreateEndpointResponse$ = CreateEndpointResponse$;
|
|
2216
|
-
exports.CreatePlatformApplication$ = CreatePlatformApplication$;
|
|
2217
739
|
exports.CreatePlatformApplicationCommand = CreatePlatformApplicationCommand;
|
|
2218
|
-
exports.CreatePlatformApplicationInput$ = CreatePlatformApplicationInput$;
|
|
2219
|
-
exports.CreatePlatformApplicationResponse$ = CreatePlatformApplicationResponse$;
|
|
2220
|
-
exports.CreatePlatformEndpoint$ = CreatePlatformEndpoint$;
|
|
2221
740
|
exports.CreatePlatformEndpointCommand = CreatePlatformEndpointCommand;
|
|
2222
|
-
exports.CreatePlatformEndpointInput$ = CreatePlatformEndpointInput$;
|
|
2223
|
-
exports.CreateSMSSandboxPhoneNumber$ = CreateSMSSandboxPhoneNumber$;
|
|
2224
741
|
exports.CreateSMSSandboxPhoneNumberCommand = CreateSMSSandboxPhoneNumberCommand;
|
|
2225
|
-
exports.CreateSMSSandboxPhoneNumberInput$ = CreateSMSSandboxPhoneNumberInput$;
|
|
2226
|
-
exports.CreateSMSSandboxPhoneNumberResult$ = CreateSMSSandboxPhoneNumberResult$;
|
|
2227
|
-
exports.CreateTopic$ = CreateTopic$;
|
|
2228
742
|
exports.CreateTopicCommand = CreateTopicCommand;
|
|
2229
|
-
exports.CreateTopicInput$ = CreateTopicInput$;
|
|
2230
|
-
exports.CreateTopicResponse$ = CreateTopicResponse$;
|
|
2231
|
-
exports.DeleteEndpoint$ = DeleteEndpoint$;
|
|
2232
743
|
exports.DeleteEndpointCommand = DeleteEndpointCommand;
|
|
2233
|
-
exports.DeleteEndpointInput$ = DeleteEndpointInput$;
|
|
2234
|
-
exports.DeletePlatformApplication$ = DeletePlatformApplication$;
|
|
2235
744
|
exports.DeletePlatformApplicationCommand = DeletePlatformApplicationCommand;
|
|
2236
|
-
exports.DeletePlatformApplicationInput$ = DeletePlatformApplicationInput$;
|
|
2237
|
-
exports.DeleteSMSSandboxPhoneNumber$ = DeleteSMSSandboxPhoneNumber$;
|
|
2238
745
|
exports.DeleteSMSSandboxPhoneNumberCommand = DeleteSMSSandboxPhoneNumberCommand;
|
|
2239
|
-
exports.DeleteSMSSandboxPhoneNumberInput$ = DeleteSMSSandboxPhoneNumberInput$;
|
|
2240
|
-
exports.DeleteSMSSandboxPhoneNumberResult$ = DeleteSMSSandboxPhoneNumberResult$;
|
|
2241
|
-
exports.DeleteTopic$ = DeleteTopic$;
|
|
2242
746
|
exports.DeleteTopicCommand = DeleteTopicCommand;
|
|
2243
|
-
exports.DeleteTopicInput$ = DeleteTopicInput$;
|
|
2244
|
-
exports.EmptyBatchRequestException = EmptyBatchRequestException;
|
|
2245
|
-
exports.EmptyBatchRequestException$ = EmptyBatchRequestException$;
|
|
2246
|
-
exports.Endpoint$ = Endpoint$;
|
|
2247
|
-
exports.EndpointDisabledException = EndpointDisabledException;
|
|
2248
|
-
exports.EndpointDisabledException$ = EndpointDisabledException$;
|
|
2249
|
-
exports.FilterPolicyLimitExceededException = FilterPolicyLimitExceededException;
|
|
2250
|
-
exports.FilterPolicyLimitExceededException$ = FilterPolicyLimitExceededException$;
|
|
2251
|
-
exports.GetDataProtectionPolicy$ = GetDataProtectionPolicy$;
|
|
2252
747
|
exports.GetDataProtectionPolicyCommand = GetDataProtectionPolicyCommand;
|
|
2253
|
-
exports.GetDataProtectionPolicyInput$ = GetDataProtectionPolicyInput$;
|
|
2254
|
-
exports.GetDataProtectionPolicyResponse$ = GetDataProtectionPolicyResponse$;
|
|
2255
|
-
exports.GetEndpointAttributes$ = GetEndpointAttributes$;
|
|
2256
748
|
exports.GetEndpointAttributesCommand = GetEndpointAttributesCommand;
|
|
2257
|
-
exports.GetEndpointAttributesInput$ = GetEndpointAttributesInput$;
|
|
2258
|
-
exports.GetEndpointAttributesResponse$ = GetEndpointAttributesResponse$;
|
|
2259
|
-
exports.GetPlatformApplicationAttributes$ = GetPlatformApplicationAttributes$;
|
|
2260
749
|
exports.GetPlatformApplicationAttributesCommand = GetPlatformApplicationAttributesCommand;
|
|
2261
|
-
exports.GetPlatformApplicationAttributesInput$ = GetPlatformApplicationAttributesInput$;
|
|
2262
|
-
exports.GetPlatformApplicationAttributesResponse$ = GetPlatformApplicationAttributesResponse$;
|
|
2263
|
-
exports.GetSMSAttributes$ = GetSMSAttributes$;
|
|
2264
750
|
exports.GetSMSAttributesCommand = GetSMSAttributesCommand;
|
|
2265
|
-
exports.GetSMSAttributesInput$ = GetSMSAttributesInput$;
|
|
2266
|
-
exports.GetSMSAttributesResponse$ = GetSMSAttributesResponse$;
|
|
2267
|
-
exports.GetSMSSandboxAccountStatus$ = GetSMSSandboxAccountStatus$;
|
|
2268
751
|
exports.GetSMSSandboxAccountStatusCommand = GetSMSSandboxAccountStatusCommand;
|
|
2269
|
-
exports.GetSMSSandboxAccountStatusInput$ = GetSMSSandboxAccountStatusInput$;
|
|
2270
|
-
exports.GetSMSSandboxAccountStatusResult$ = GetSMSSandboxAccountStatusResult$;
|
|
2271
|
-
exports.GetSubscriptionAttributes$ = GetSubscriptionAttributes$;
|
|
2272
752
|
exports.GetSubscriptionAttributesCommand = GetSubscriptionAttributesCommand;
|
|
2273
|
-
exports.GetSubscriptionAttributesInput$ = GetSubscriptionAttributesInput$;
|
|
2274
|
-
exports.GetSubscriptionAttributesResponse$ = GetSubscriptionAttributesResponse$;
|
|
2275
|
-
exports.GetTopicAttributes$ = GetTopicAttributes$;
|
|
2276
753
|
exports.GetTopicAttributesCommand = GetTopicAttributesCommand;
|
|
2277
|
-
exports.GetTopicAttributesInput$ = GetTopicAttributesInput$;
|
|
2278
|
-
exports.GetTopicAttributesResponse$ = GetTopicAttributesResponse$;
|
|
2279
|
-
exports.InternalErrorException = InternalErrorException;
|
|
2280
|
-
exports.InternalErrorException$ = InternalErrorException$;
|
|
2281
|
-
exports.InvalidBatchEntryIdException = InvalidBatchEntryIdException;
|
|
2282
|
-
exports.InvalidBatchEntryIdException$ = InvalidBatchEntryIdException$;
|
|
2283
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2284
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2285
|
-
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
2286
|
-
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
2287
|
-
exports.InvalidSecurityException = InvalidSecurityException;
|
|
2288
|
-
exports.InvalidSecurityException$ = InvalidSecurityException$;
|
|
2289
|
-
exports.InvalidStateException = InvalidStateException;
|
|
2290
|
-
exports.InvalidStateException$ = InvalidStateException$;
|
|
2291
|
-
exports.KMSAccessDeniedException = KMSAccessDeniedException;
|
|
2292
|
-
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
2293
|
-
exports.KMSDisabledException = KMSDisabledException;
|
|
2294
|
-
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
2295
|
-
exports.KMSInvalidStateException = KMSInvalidStateException;
|
|
2296
|
-
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
2297
|
-
exports.KMSNotFoundException = KMSNotFoundException;
|
|
2298
|
-
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
2299
|
-
exports.KMSOptInRequired = KMSOptInRequired;
|
|
2300
|
-
exports.KMSOptInRequired$ = KMSOptInRequired$;
|
|
2301
|
-
exports.KMSThrottlingException = KMSThrottlingException;
|
|
2302
|
-
exports.KMSThrottlingException$ = KMSThrottlingException$;
|
|
2303
754
|
exports.LanguageCodeString = LanguageCodeString;
|
|
2304
|
-
exports.ListEndpointsByPlatformApplication$ = ListEndpointsByPlatformApplication$;
|
|
2305
755
|
exports.ListEndpointsByPlatformApplicationCommand = ListEndpointsByPlatformApplicationCommand;
|
|
2306
|
-
exports.ListEndpointsByPlatformApplicationInput$ = ListEndpointsByPlatformApplicationInput$;
|
|
2307
|
-
exports.ListEndpointsByPlatformApplicationResponse$ = ListEndpointsByPlatformApplicationResponse$;
|
|
2308
|
-
exports.ListOriginationNumbers$ = ListOriginationNumbers$;
|
|
2309
756
|
exports.ListOriginationNumbersCommand = ListOriginationNumbersCommand;
|
|
2310
|
-
exports.ListOriginationNumbersRequest$ = ListOriginationNumbersRequest$;
|
|
2311
|
-
exports.ListOriginationNumbersResult$ = ListOriginationNumbersResult$;
|
|
2312
|
-
exports.ListPhoneNumbersOptedOut$ = ListPhoneNumbersOptedOut$;
|
|
2313
757
|
exports.ListPhoneNumbersOptedOutCommand = ListPhoneNumbersOptedOutCommand;
|
|
2314
|
-
exports.ListPhoneNumbersOptedOutInput$ = ListPhoneNumbersOptedOutInput$;
|
|
2315
|
-
exports.ListPhoneNumbersOptedOutResponse$ = ListPhoneNumbersOptedOutResponse$;
|
|
2316
|
-
exports.ListPlatformApplications$ = ListPlatformApplications$;
|
|
2317
758
|
exports.ListPlatformApplicationsCommand = ListPlatformApplicationsCommand;
|
|
2318
|
-
exports.ListPlatformApplicationsInput$ = ListPlatformApplicationsInput$;
|
|
2319
|
-
exports.ListPlatformApplicationsResponse$ = ListPlatformApplicationsResponse$;
|
|
2320
|
-
exports.ListSMSSandboxPhoneNumbers$ = ListSMSSandboxPhoneNumbers$;
|
|
2321
759
|
exports.ListSMSSandboxPhoneNumbersCommand = ListSMSSandboxPhoneNumbersCommand;
|
|
2322
|
-
exports.ListSMSSandboxPhoneNumbersInput$ = ListSMSSandboxPhoneNumbersInput$;
|
|
2323
|
-
exports.ListSMSSandboxPhoneNumbersResult$ = ListSMSSandboxPhoneNumbersResult$;
|
|
2324
|
-
exports.ListSubscriptions$ = ListSubscriptions$;
|
|
2325
|
-
exports.ListSubscriptionsByTopic$ = ListSubscriptionsByTopic$;
|
|
2326
760
|
exports.ListSubscriptionsByTopicCommand = ListSubscriptionsByTopicCommand;
|
|
2327
|
-
exports.ListSubscriptionsByTopicInput$ = ListSubscriptionsByTopicInput$;
|
|
2328
|
-
exports.ListSubscriptionsByTopicResponse$ = ListSubscriptionsByTopicResponse$;
|
|
2329
761
|
exports.ListSubscriptionsCommand = ListSubscriptionsCommand;
|
|
2330
|
-
exports.ListSubscriptionsInput$ = ListSubscriptionsInput$;
|
|
2331
|
-
exports.ListSubscriptionsResponse$ = ListSubscriptionsResponse$;
|
|
2332
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2333
762
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2334
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2335
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2336
|
-
exports.ListTopics$ = ListTopics$;
|
|
2337
763
|
exports.ListTopicsCommand = ListTopicsCommand;
|
|
2338
|
-
exports.ListTopicsInput$ = ListTopicsInput$;
|
|
2339
|
-
exports.ListTopicsResponse$ = ListTopicsResponse$;
|
|
2340
|
-
exports.MessageAttributeValue$ = MessageAttributeValue$;
|
|
2341
|
-
exports.NotFoundException = NotFoundException;
|
|
2342
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
2343
764
|
exports.NumberCapability = NumberCapability;
|
|
2344
|
-
exports.OptInPhoneNumber$ = OptInPhoneNumber$;
|
|
2345
765
|
exports.OptInPhoneNumberCommand = OptInPhoneNumberCommand;
|
|
2346
|
-
exports.OptInPhoneNumberInput$ = OptInPhoneNumberInput$;
|
|
2347
|
-
exports.OptInPhoneNumberResponse$ = OptInPhoneNumberResponse$;
|
|
2348
|
-
exports.OptedOutException = OptedOutException;
|
|
2349
|
-
exports.OptedOutException$ = OptedOutException$;
|
|
2350
|
-
exports.PhoneNumberInformation$ = PhoneNumberInformation$;
|
|
2351
|
-
exports.PlatformApplication$ = PlatformApplication$;
|
|
2352
|
-
exports.PlatformApplicationDisabledException = PlatformApplicationDisabledException;
|
|
2353
|
-
exports.PlatformApplicationDisabledException$ = PlatformApplicationDisabledException$;
|
|
2354
|
-
exports.Publish$ = Publish$;
|
|
2355
|
-
exports.PublishBatch$ = PublishBatch$;
|
|
2356
766
|
exports.PublishBatchCommand = PublishBatchCommand;
|
|
2357
|
-
exports.PublishBatchInput$ = PublishBatchInput$;
|
|
2358
|
-
exports.PublishBatchRequestEntry$ = PublishBatchRequestEntry$;
|
|
2359
|
-
exports.PublishBatchResponse$ = PublishBatchResponse$;
|
|
2360
|
-
exports.PublishBatchResultEntry$ = PublishBatchResultEntry$;
|
|
2361
767
|
exports.PublishCommand = PublishCommand;
|
|
2362
|
-
exports.PublishInput$ = PublishInput$;
|
|
2363
|
-
exports.PublishResponse$ = PublishResponse$;
|
|
2364
|
-
exports.PutDataProtectionPolicy$ = PutDataProtectionPolicy$;
|
|
2365
768
|
exports.PutDataProtectionPolicyCommand = PutDataProtectionPolicyCommand;
|
|
2366
|
-
exports.PutDataProtectionPolicyInput$ = PutDataProtectionPolicyInput$;
|
|
2367
|
-
exports.RemovePermission$ = RemovePermission$;
|
|
2368
769
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
2369
|
-
exports.RemovePermissionInput$ = RemovePermissionInput$;
|
|
2370
|
-
exports.ReplayLimitExceededException = ReplayLimitExceededException;
|
|
2371
|
-
exports.ReplayLimitExceededException$ = ReplayLimitExceededException$;
|
|
2372
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2373
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2374
770
|
exports.RouteType = RouteType;
|
|
2375
|
-
exports.SMSSandboxPhoneNumber$ = SMSSandboxPhoneNumber$;
|
|
2376
771
|
exports.SMSSandboxPhoneNumberVerificationStatus = SMSSandboxPhoneNumberVerificationStatus;
|
|
2377
772
|
exports.SNS = SNS;
|
|
2378
773
|
exports.SNSClient = SNSClient;
|
|
2379
|
-
exports.SNSServiceException = SNSServiceException;
|
|
2380
|
-
exports.SNSServiceException$ = SNSServiceException$;
|
|
2381
|
-
exports.SetEndpointAttributes$ = SetEndpointAttributes$;
|
|
2382
774
|
exports.SetEndpointAttributesCommand = SetEndpointAttributesCommand;
|
|
2383
|
-
exports.SetEndpointAttributesInput$ = SetEndpointAttributesInput$;
|
|
2384
|
-
exports.SetPlatformApplicationAttributes$ = SetPlatformApplicationAttributes$;
|
|
2385
775
|
exports.SetPlatformApplicationAttributesCommand = SetPlatformApplicationAttributesCommand;
|
|
2386
|
-
exports.SetPlatformApplicationAttributesInput$ = SetPlatformApplicationAttributesInput$;
|
|
2387
|
-
exports.SetSMSAttributes$ = SetSMSAttributes$;
|
|
2388
776
|
exports.SetSMSAttributesCommand = SetSMSAttributesCommand;
|
|
2389
|
-
exports.SetSMSAttributesInput$ = SetSMSAttributesInput$;
|
|
2390
|
-
exports.SetSMSAttributesResponse$ = SetSMSAttributesResponse$;
|
|
2391
|
-
exports.SetSubscriptionAttributes$ = SetSubscriptionAttributes$;
|
|
2392
777
|
exports.SetSubscriptionAttributesCommand = SetSubscriptionAttributesCommand;
|
|
2393
|
-
exports.SetSubscriptionAttributesInput$ = SetSubscriptionAttributesInput$;
|
|
2394
|
-
exports.SetTopicAttributes$ = SetTopicAttributes$;
|
|
2395
778
|
exports.SetTopicAttributesCommand = SetTopicAttributesCommand;
|
|
2396
|
-
exports.SetTopicAttributesInput$ = SetTopicAttributesInput$;
|
|
2397
|
-
exports.StaleTagException = StaleTagException;
|
|
2398
|
-
exports.StaleTagException$ = StaleTagException$;
|
|
2399
|
-
exports.Subscribe$ = Subscribe$;
|
|
2400
779
|
exports.SubscribeCommand = SubscribeCommand;
|
|
2401
|
-
exports.SubscribeInput$ = SubscribeInput$;
|
|
2402
|
-
exports.SubscribeResponse$ = SubscribeResponse$;
|
|
2403
|
-
exports.Subscription$ = Subscription$;
|
|
2404
|
-
exports.SubscriptionLimitExceededException = SubscriptionLimitExceededException;
|
|
2405
|
-
exports.SubscriptionLimitExceededException$ = SubscriptionLimitExceededException$;
|
|
2406
|
-
exports.Tag$ = Tag$;
|
|
2407
|
-
exports.TagLimitExceededException = TagLimitExceededException;
|
|
2408
|
-
exports.TagLimitExceededException$ = TagLimitExceededException$;
|
|
2409
|
-
exports.TagPolicyException = TagPolicyException;
|
|
2410
|
-
exports.TagPolicyException$ = TagPolicyException$;
|
|
2411
|
-
exports.TagResource$ = TagResource$;
|
|
2412
780
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2413
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2414
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2415
|
-
exports.ThrottledException = ThrottledException;
|
|
2416
|
-
exports.ThrottledException$ = ThrottledException$;
|
|
2417
|
-
exports.TooManyEntriesInBatchRequestException = TooManyEntriesInBatchRequestException;
|
|
2418
|
-
exports.TooManyEntriesInBatchRequestException$ = TooManyEntriesInBatchRequestException$;
|
|
2419
|
-
exports.Topic$ = Topic$;
|
|
2420
|
-
exports.TopicLimitExceededException = TopicLimitExceededException;
|
|
2421
|
-
exports.TopicLimitExceededException$ = TopicLimitExceededException$;
|
|
2422
|
-
exports.Unsubscribe$ = Unsubscribe$;
|
|
2423
781
|
exports.UnsubscribeCommand = UnsubscribeCommand;
|
|
2424
|
-
exports.UnsubscribeInput$ = UnsubscribeInput$;
|
|
2425
|
-
exports.UntagResource$ = UntagResource$;
|
|
2426
782
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2427
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2428
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2429
|
-
exports.UserErrorException = UserErrorException;
|
|
2430
|
-
exports.UserErrorException$ = UserErrorException$;
|
|
2431
|
-
exports.ValidationException = ValidationException;
|
|
2432
|
-
exports.ValidationException$ = ValidationException$;
|
|
2433
|
-
exports.VerificationException = VerificationException;
|
|
2434
|
-
exports.VerificationException$ = VerificationException$;
|
|
2435
|
-
exports.VerifySMSSandboxPhoneNumber$ = VerifySMSSandboxPhoneNumber$;
|
|
2436
783
|
exports.VerifySMSSandboxPhoneNumberCommand = VerifySMSSandboxPhoneNumberCommand;
|
|
2437
|
-
exports.VerifySMSSandboxPhoneNumberInput$ = VerifySMSSandboxPhoneNumberInput$;
|
|
2438
|
-
exports.VerifySMSSandboxPhoneNumberResult$ = VerifySMSSandboxPhoneNumberResult$;
|
|
2439
784
|
exports.paginateListEndpointsByPlatformApplication = paginateListEndpointsByPlatformApplication;
|
|
2440
785
|
exports.paginateListOriginationNumbers = paginateListOriginationNumbers;
|
|
2441
786
|
exports.paginateListPhoneNumbersOptedOut = paginateListPhoneNumbersOptedOut;
|
|
@@ -2444,3 +789,15 @@ exports.paginateListSMSSandboxPhoneNumbers = paginateListSMSSandboxPhoneNumbers;
|
|
|
2444
789
|
exports.paginateListSubscriptions = paginateListSubscriptions;
|
|
2445
790
|
exports.paginateListSubscriptionsByTopic = paginateListSubscriptionsByTopic;
|
|
2446
791
|
exports.paginateListTopics = paginateListTopics;
|
|
792
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
793
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
794
|
+
enumerable: true,
|
|
795
|
+
get: function () { return schemas_0[k]; }
|
|
796
|
+
});
|
|
797
|
+
});
|
|
798
|
+
Object.keys(errors).forEach(function (k) {
|
|
799
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
800
|
+
enumerable: true,
|
|
801
|
+
get: function () { return errors[k]; }
|
|
802
|
+
});
|
|
803
|
+
});
|