@@ -109,6 +109,11 @@ import {
109
109
DeleteProtectConfigurationCommandInput ,
110
110
DeleteProtectConfigurationCommandOutput ,
111
111
} from "./commands/DeleteProtectConfigurationCommand" ;
112
+ import {
113
+ DeleteProtectConfigurationRuleSetNumberOverrideCommand ,
114
+ DeleteProtectConfigurationRuleSetNumberOverrideCommandInput ,
115
+ DeleteProtectConfigurationRuleSetNumberOverrideCommandOutput ,
116
+ } from "./commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand" ;
112
117
import {
113
118
DeleteRegistrationAttachmentCommand ,
114
119
DeleteRegistrationAttachmentCommandInput ,
@@ -269,6 +274,11 @@ import {
269
274
ListPoolOriginationIdentitiesCommandInput ,
270
275
ListPoolOriginationIdentitiesCommandOutput ,
271
276
} from "./commands/ListPoolOriginationIdentitiesCommand" ;
277
+ import {
278
+ ListProtectConfigurationRuleSetNumberOverridesCommand ,
279
+ ListProtectConfigurationRuleSetNumberOverridesCommandInput ,
280
+ ListProtectConfigurationRuleSetNumberOverridesCommandOutput ,
281
+ } from "./commands/ListProtectConfigurationRuleSetNumberOverridesCommand" ;
272
282
import {
273
283
ListRegistrationAssociationsCommand ,
274
284
ListRegistrationAssociationsCommandInput ,
@@ -280,11 +290,21 @@ import {
280
290
ListTagsForResourceCommandOutput ,
281
291
} from "./commands/ListTagsForResourceCommand" ;
282
292
import { PutKeywordCommand , PutKeywordCommandInput , PutKeywordCommandOutput } from "./commands/PutKeywordCommand" ;
293
+ import {
294
+ PutMessageFeedbackCommand ,
295
+ PutMessageFeedbackCommandInput ,
296
+ PutMessageFeedbackCommandOutput ,
297
+ } from "./commands/PutMessageFeedbackCommand" ;
283
298
import {
284
299
PutOptedOutNumberCommand ,
285
300
PutOptedOutNumberCommandInput ,
286
301
PutOptedOutNumberCommandOutput ,
287
302
} from "./commands/PutOptedOutNumberCommand" ;
303
+ import {
304
+ PutProtectConfigurationRuleSetNumberOverrideCommand ,
305
+ PutProtectConfigurationRuleSetNumberOverrideCommandInput ,
306
+ PutProtectConfigurationRuleSetNumberOverrideCommandOutput ,
307
+ } from "./commands/PutProtectConfigurationRuleSetNumberOverrideCommand" ;
288
308
import {
289
309
PutRegistrationFieldValueCommand ,
290
310
PutRegistrationFieldValueCommandInput ,
@@ -340,6 +360,11 @@ import {
340
360
SetAccountDefaultProtectConfigurationCommandInput ,
341
361
SetAccountDefaultProtectConfigurationCommandOutput ,
342
362
} from "./commands/SetAccountDefaultProtectConfigurationCommand" ;
363
+ import {
364
+ SetDefaultMessageFeedbackEnabledCommand ,
365
+ SetDefaultMessageFeedbackEnabledCommandInput ,
366
+ SetDefaultMessageFeedbackEnabledCommandOutput ,
367
+ } from "./commands/SetDefaultMessageFeedbackEnabledCommand" ;
343
368
import {
344
369
SetDefaultMessageTypeCommand ,
345
370
SetDefaultMessageTypeCommandInput ,
@@ -433,6 +458,7 @@ const commands = {
433
458
DeleteOptOutListCommand,
434
459
DeletePoolCommand,
435
460
DeleteProtectConfigurationCommand,
461
+ DeleteProtectConfigurationRuleSetNumberOverrideCommand,
436
462
DeleteRegistrationCommand,
437
463
DeleteRegistrationAttachmentCommand,
438
464
DeleteRegistrationFieldValueCommand,
@@ -465,10 +491,13 @@ const commands = {
465
491
GetProtectConfigurationCountryRuleSetCommand,
466
492
GetResourcePolicyCommand,
467
493
ListPoolOriginationIdentitiesCommand,
494
+ ListProtectConfigurationRuleSetNumberOverridesCommand,
468
495
ListRegistrationAssociationsCommand,
469
496
ListTagsForResourceCommand,
470
497
PutKeywordCommand,
498
+ PutMessageFeedbackCommand,
471
499
PutOptedOutNumberCommand,
500
+ PutProtectConfigurationRuleSetNumberOverrideCommand,
472
501
PutRegistrationFieldValueCommand,
473
502
PutResourcePolicyCommand,
474
503
ReleasePhoneNumberCommand,
@@ -480,6 +509,7 @@ const commands = {
480
509
SendTextMessageCommand,
481
510
SendVoiceMessageCommand,
482
511
SetAccountDefaultProtectConfigurationCommand,
512
+ SetDefaultMessageFeedbackEnabledCommand,
483
513
SetDefaultMessageTypeCommand,
484
514
SetDefaultSenderIdCommand,
485
515
SetMediaMessageSpendLimitOverrideCommand,
@@ -875,6 +905,23 @@ export interface PinpointSMSVoiceV2 {
875
905
cb : ( err : any , data ?: DeleteProtectConfigurationCommandOutput ) => void
876
906
) : void ;
877
907
908
+ /**
909
+ * @see {@link DeleteProtectConfigurationRuleSetNumberOverrideCommand }
910
+ */
911
+ deleteProtectConfigurationRuleSetNumberOverride (
912
+ args : DeleteProtectConfigurationRuleSetNumberOverrideCommandInput ,
913
+ options ?: __HttpHandlerOptions
914
+ ) : Promise < DeleteProtectConfigurationRuleSetNumberOverrideCommandOutput > ;
915
+ deleteProtectConfigurationRuleSetNumberOverride (
916
+ args : DeleteProtectConfigurationRuleSetNumberOverrideCommandInput ,
917
+ cb : ( err : any , data ?: DeleteProtectConfigurationRuleSetNumberOverrideCommandOutput ) => void
918
+ ) : void ;
919
+ deleteProtectConfigurationRuleSetNumberOverride (
920
+ args : DeleteProtectConfigurationRuleSetNumberOverrideCommandInput ,
921
+ options : __HttpHandlerOptions ,
922
+ cb : ( err : any , data ?: DeleteProtectConfigurationRuleSetNumberOverrideCommandOutput ) => void
923
+ ) : void ;
924
+
878
925
/**
879
926
* @see {@link DeleteRegistrationCommand }
880
927
*/
@@ -1428,6 +1475,23 @@ export interface PinpointSMSVoiceV2 {
1428
1475
cb : ( err : any , data ?: ListPoolOriginationIdentitiesCommandOutput ) => void
1429
1476
) : void ;
1430
1477
1478
+ /**
1479
+ * @see {@link ListProtectConfigurationRuleSetNumberOverridesCommand }
1480
+ */
1481
+ listProtectConfigurationRuleSetNumberOverrides (
1482
+ args : ListProtectConfigurationRuleSetNumberOverridesCommandInput ,
1483
+ options ?: __HttpHandlerOptions
1484
+ ) : Promise < ListProtectConfigurationRuleSetNumberOverridesCommandOutput > ;
1485
+ listProtectConfigurationRuleSetNumberOverrides (
1486
+ args : ListProtectConfigurationRuleSetNumberOverridesCommandInput ,
1487
+ cb : ( err : any , data ?: ListProtectConfigurationRuleSetNumberOverridesCommandOutput ) => void
1488
+ ) : void ;
1489
+ listProtectConfigurationRuleSetNumberOverrides (
1490
+ args : ListProtectConfigurationRuleSetNumberOverridesCommandInput ,
1491
+ options : __HttpHandlerOptions ,
1492
+ cb : ( err : any , data ?: ListProtectConfigurationRuleSetNumberOverridesCommandOutput ) => void
1493
+ ) : void ;
1494
+
1431
1495
/**
1432
1496
* @see {@link ListRegistrationAssociationsCommand }
1433
1497
*/
@@ -1473,6 +1537,23 @@ export interface PinpointSMSVoiceV2 {
1473
1537
cb : ( err : any , data ?: PutKeywordCommandOutput ) => void
1474
1538
) : void ;
1475
1539
1540
+ /**
1541
+ * @see {@link PutMessageFeedbackCommand }
1542
+ */
1543
+ putMessageFeedback (
1544
+ args : PutMessageFeedbackCommandInput ,
1545
+ options ?: __HttpHandlerOptions
1546
+ ) : Promise < PutMessageFeedbackCommandOutput > ;
1547
+ putMessageFeedback (
1548
+ args : PutMessageFeedbackCommandInput ,
1549
+ cb : ( err : any , data ?: PutMessageFeedbackCommandOutput ) => void
1550
+ ) : void ;
1551
+ putMessageFeedback (
1552
+ args : PutMessageFeedbackCommandInput ,
1553
+ options : __HttpHandlerOptions ,
1554
+ cb : ( err : any , data ?: PutMessageFeedbackCommandOutput ) => void
1555
+ ) : void ;
1556
+
1476
1557
/**
1477
1558
* @see {@link PutOptedOutNumberCommand }
1478
1559
*/
@@ -1490,6 +1571,23 @@ export interface PinpointSMSVoiceV2 {
1490
1571
cb : ( err : any , data ?: PutOptedOutNumberCommandOutput ) => void
1491
1572
) : void ;
1492
1573
1574
+ /**
1575
+ * @see {@link PutProtectConfigurationRuleSetNumberOverrideCommand }
1576
+ */
1577
+ putProtectConfigurationRuleSetNumberOverride (
1578
+ args : PutProtectConfigurationRuleSetNumberOverrideCommandInput ,
1579
+ options ?: __HttpHandlerOptions
1580
+ ) : Promise < PutProtectConfigurationRuleSetNumberOverrideCommandOutput > ;
1581
+ putProtectConfigurationRuleSetNumberOverride (
1582
+ args : PutProtectConfigurationRuleSetNumberOverrideCommandInput ,
1583
+ cb : ( err : any , data ?: PutProtectConfigurationRuleSetNumberOverrideCommandOutput ) => void
1584
+ ) : void ;
1585
+ putProtectConfigurationRuleSetNumberOverride (
1586
+ args : PutProtectConfigurationRuleSetNumberOverrideCommandInput ,
1587
+ options : __HttpHandlerOptions ,
1588
+ cb : ( err : any , data ?: PutProtectConfigurationRuleSetNumberOverrideCommandOutput ) => void
1589
+ ) : void ;
1590
+
1493
1591
/**
1494
1592
* @see {@link PutRegistrationFieldValueCommand }
1495
1593
*/
@@ -1668,6 +1766,23 @@ export interface PinpointSMSVoiceV2 {
1668
1766
cb : ( err : any , data ?: SetAccountDefaultProtectConfigurationCommandOutput ) => void
1669
1767
) : void ;
1670
1768
1769
+ /**
1770
+ * @see {@link SetDefaultMessageFeedbackEnabledCommand }
1771
+ */
1772
+ setDefaultMessageFeedbackEnabled (
1773
+ args : SetDefaultMessageFeedbackEnabledCommandInput ,
1774
+ options ?: __HttpHandlerOptions
1775
+ ) : Promise < SetDefaultMessageFeedbackEnabledCommandOutput > ;
1776
+ setDefaultMessageFeedbackEnabled (
1777
+ args : SetDefaultMessageFeedbackEnabledCommandInput ,
1778
+ cb : ( err : any , data ?: SetDefaultMessageFeedbackEnabledCommandOutput ) => void
1779
+ ) : void ;
1780
+ setDefaultMessageFeedbackEnabled (
1781
+ args : SetDefaultMessageFeedbackEnabledCommandInput ,
1782
+ options : __HttpHandlerOptions ,
1783
+ cb : ( err : any , data ?: SetDefaultMessageFeedbackEnabledCommandOutput ) => void
1784
+ ) : void ;
1785
+
1671
1786
/**
1672
1787
* @see {@link SetDefaultMessageTypeCommand }
1673
1788
*/
0 commit comments