@@ -124,6 +124,11 @@ import {
124
124
DeleteRegistrationFieldValueCommandInput ,
125
125
DeleteRegistrationFieldValueCommandOutput ,
126
126
} from "./commands/DeleteRegistrationFieldValueCommand" ;
127
+ import {
128
+ DeleteResourcePolicyCommand ,
129
+ DeleteResourcePolicyCommandInput ,
130
+ DeleteResourcePolicyCommandOutput ,
131
+ } from "./commands/DeleteResourcePolicyCommand" ;
127
132
import {
128
133
DeleteTextMessageSpendLimitOverrideCommand ,
129
134
DeleteTextMessageSpendLimitOverrideCommandInput ,
@@ -254,6 +259,11 @@ import {
254
259
GetProtectConfigurationCountryRuleSetCommandInput ,
255
260
GetProtectConfigurationCountryRuleSetCommandOutput ,
256
261
} from "./commands/GetProtectConfigurationCountryRuleSetCommand" ;
262
+ import {
263
+ GetResourcePolicyCommand ,
264
+ GetResourcePolicyCommandInput ,
265
+ GetResourcePolicyCommandOutput ,
266
+ } from "./commands/GetResourcePolicyCommand" ;
257
267
import {
258
268
ListPoolOriginationIdentitiesCommand ,
259
269
ListPoolOriginationIdentitiesCommandInput ,
@@ -280,6 +290,11 @@ import {
280
290
PutRegistrationFieldValueCommandInput ,
281
291
PutRegistrationFieldValueCommandOutput ,
282
292
} from "./commands/PutRegistrationFieldValueCommand" ;
293
+ import {
294
+ PutResourcePolicyCommand ,
295
+ PutResourcePolicyCommandInput ,
296
+ PutResourcePolicyCommandOutput ,
297
+ } from "./commands/PutResourcePolicyCommand" ;
283
298
import {
284
299
ReleasePhoneNumberCommand ,
285
300
ReleasePhoneNumberCommandInput ,
@@ -421,6 +436,7 @@ const commands = {
421
436
DeleteRegistrationCommand,
422
437
DeleteRegistrationAttachmentCommand,
423
438
DeleteRegistrationFieldValueCommand,
439
+ DeleteResourcePolicyCommand,
424
440
DeleteTextMessageSpendLimitOverrideCommand,
425
441
DeleteVerifiedDestinationNumberCommand,
426
442
DeleteVoiceMessageSpendLimitOverrideCommand,
@@ -447,12 +463,14 @@ const commands = {
447
463
DisassociateProtectConfigurationCommand,
448
464
DiscardRegistrationVersionCommand,
449
465
GetProtectConfigurationCountryRuleSetCommand,
466
+ GetResourcePolicyCommand,
450
467
ListPoolOriginationIdentitiesCommand,
451
468
ListRegistrationAssociationsCommand,
452
469
ListTagsForResourceCommand,
453
470
PutKeywordCommand,
454
471
PutOptedOutNumberCommand,
455
472
PutRegistrationFieldValueCommand,
473
+ PutResourcePolicyCommand,
456
474
ReleasePhoneNumberCommand,
457
475
ReleaseSenderIdCommand,
458
476
RequestPhoneNumberCommand,
@@ -908,6 +926,23 @@ export interface PinpointSMSVoiceV2 {
908
926
cb : ( err : any , data ?: DeleteRegistrationFieldValueCommandOutput ) => void
909
927
) : void ;
910
928
929
+ /**
930
+ * @see {@link DeleteResourcePolicyCommand }
931
+ */
932
+ deleteResourcePolicy (
933
+ args : DeleteResourcePolicyCommandInput ,
934
+ options ?: __HttpHandlerOptions
935
+ ) : Promise < DeleteResourcePolicyCommandOutput > ;
936
+ deleteResourcePolicy (
937
+ args : DeleteResourcePolicyCommandInput ,
938
+ cb : ( err : any , data ?: DeleteResourcePolicyCommandOutput ) => void
939
+ ) : void ;
940
+ deleteResourcePolicy (
941
+ args : DeleteResourcePolicyCommandInput ,
942
+ options : __HttpHandlerOptions ,
943
+ cb : ( err : any , data ?: DeleteResourcePolicyCommandOutput ) => void
944
+ ) : void ;
945
+
911
946
/**
912
947
* @see {@link DeleteTextMessageSpendLimitOverrideCommand }
913
948
*/
@@ -1359,6 +1394,23 @@ export interface PinpointSMSVoiceV2 {
1359
1394
cb : ( err : any , data ?: GetProtectConfigurationCountryRuleSetCommandOutput ) => void
1360
1395
) : void ;
1361
1396
1397
+ /**
1398
+ * @see {@link GetResourcePolicyCommand }
1399
+ */
1400
+ getResourcePolicy (
1401
+ args : GetResourcePolicyCommandInput ,
1402
+ options ?: __HttpHandlerOptions
1403
+ ) : Promise < GetResourcePolicyCommandOutput > ;
1404
+ getResourcePolicy (
1405
+ args : GetResourcePolicyCommandInput ,
1406
+ cb : ( err : any , data ?: GetResourcePolicyCommandOutput ) => void
1407
+ ) : void ;
1408
+ getResourcePolicy (
1409
+ args : GetResourcePolicyCommandInput ,
1410
+ options : __HttpHandlerOptions ,
1411
+ cb : ( err : any , data ?: GetResourcePolicyCommandOutput ) => void
1412
+ ) : void ;
1413
+
1362
1414
/**
1363
1415
* @see {@link ListPoolOriginationIdentitiesCommand }
1364
1416
*/
@@ -1455,6 +1507,23 @@ export interface PinpointSMSVoiceV2 {
1455
1507
cb : ( err : any , data ?: PutRegistrationFieldValueCommandOutput ) => void
1456
1508
) : void ;
1457
1509
1510
+ /**
1511
+ * @see {@link PutResourcePolicyCommand }
1512
+ */
1513
+ putResourcePolicy (
1514
+ args : PutResourcePolicyCommandInput ,
1515
+ options ?: __HttpHandlerOptions
1516
+ ) : Promise < PutResourcePolicyCommandOutput > ;
1517
+ putResourcePolicy (
1518
+ args : PutResourcePolicyCommandInput ,
1519
+ cb : ( err : any , data ?: PutResourcePolicyCommandOutput ) => void
1520
+ ) : void ;
1521
+ putResourcePolicy (
1522
+ args : PutResourcePolicyCommandInput ,
1523
+ options : __HttpHandlerOptions ,
1524
+ cb : ( err : any , data ?: PutResourcePolicyCommandOutput ) => void
1525
+ ) : void ;
1526
+
1458
1527
/**
1459
1528
* @see {@link ReleasePhoneNumberCommand }
1460
1529
*/
0 commit comments