@@ -79,6 +79,11 @@ import {
79
79
DeleteProvisionedConcurrencyConfigCommandInput ,
80
80
DeleteProvisionedConcurrencyConfigCommandOutput ,
81
81
} from "./commands/DeleteProvisionedConcurrencyConfigCommand" ;
82
+ import {
83
+ DeleteResourcePolicyCommand ,
84
+ DeleteResourcePolicyCommandInput ,
85
+ DeleteResourcePolicyCommandOutput ,
86
+ } from "./commands/DeleteResourcePolicyCommand" ;
82
87
import {
83
88
GetAccountSettingsCommand ,
84
89
GetAccountSettingsCommandInput ,
@@ -147,6 +152,16 @@ import {
147
152
GetProvisionedConcurrencyConfigCommandInput ,
148
153
GetProvisionedConcurrencyConfigCommandOutput ,
149
154
} from "./commands/GetProvisionedConcurrencyConfigCommand" ;
155
+ import {
156
+ GetPublicAccessBlockConfigCommand ,
157
+ GetPublicAccessBlockConfigCommandInput ,
158
+ GetPublicAccessBlockConfigCommandOutput ,
159
+ } from "./commands/GetPublicAccessBlockConfigCommand" ;
160
+ import {
161
+ GetResourcePolicyCommand ,
162
+ GetResourcePolicyCommandInput ,
163
+ GetResourcePolicyCommandOutput ,
164
+ } from "./commands/GetResourcePolicyCommand" ;
150
165
import {
151
166
GetRuntimeManagementConfigCommand ,
152
167
GetRuntimeManagementConfigCommandInput ,
@@ -242,6 +257,16 @@ import {
242
257
PutProvisionedConcurrencyConfigCommandInput ,
243
258
PutProvisionedConcurrencyConfigCommandOutput ,
244
259
} from "./commands/PutProvisionedConcurrencyConfigCommand" ;
260
+ import {
261
+ PutPublicAccessBlockConfigCommand ,
262
+ PutPublicAccessBlockConfigCommandInput ,
263
+ PutPublicAccessBlockConfigCommandOutput ,
264
+ } from "./commands/PutPublicAccessBlockConfigCommand" ;
265
+ import {
266
+ PutResourcePolicyCommand ,
267
+ PutResourcePolicyCommandInput ,
268
+ PutResourcePolicyCommandOutput ,
269
+ } from "./commands/PutResourcePolicyCommand" ;
245
270
import {
246
271
PutRuntimeManagementConfigCommand ,
247
272
PutRuntimeManagementConfigCommandInput ,
@@ -314,6 +339,7 @@ const commands = {
314
339
DeleteFunctionUrlConfigCommand,
315
340
DeleteLayerVersionCommand,
316
341
DeleteProvisionedConcurrencyConfigCommand,
342
+ DeleteResourcePolicyCommand,
317
343
GetAccountSettingsCommand,
318
344
GetAliasCommand,
319
345
GetCodeSigningConfigCommand,
@@ -330,6 +356,8 @@ const commands = {
330
356
GetLayerVersionPolicyCommand,
331
357
GetPolicyCommand,
332
358
GetProvisionedConcurrencyConfigCommand,
359
+ GetPublicAccessBlockConfigCommand,
360
+ GetResourcePolicyCommand,
333
361
GetRuntimeManagementConfigCommand,
334
362
InvokeCommand,
335
363
InvokeAsyncCommand,
@@ -353,6 +381,8 @@ const commands = {
353
381
PutFunctionEventInvokeConfigCommand,
354
382
PutFunctionRecursionConfigCommand,
355
383
PutProvisionedConcurrencyConfigCommand,
384
+ PutPublicAccessBlockConfigCommand,
385
+ PutResourcePolicyCommand,
356
386
PutRuntimeManagementConfigCommand,
357
387
RemoveLayerVersionPermissionCommand,
358
388
RemovePermissionCommand,
@@ -633,6 +663,23 @@ export interface Lambda {
633
663
cb : ( err : any , data ?: DeleteProvisionedConcurrencyConfigCommandOutput ) => void
634
664
) : void ;
635
665
666
+ /**
667
+ * @see {@link DeleteResourcePolicyCommand }
668
+ */
669
+ deleteResourcePolicy (
670
+ args : DeleteResourcePolicyCommandInput ,
671
+ options ?: __HttpHandlerOptions
672
+ ) : Promise < DeleteResourcePolicyCommandOutput > ;
673
+ deleteResourcePolicy (
674
+ args : DeleteResourcePolicyCommandInput ,
675
+ cb : ( err : any , data ?: DeleteResourcePolicyCommandOutput ) => void
676
+ ) : void ;
677
+ deleteResourcePolicy (
678
+ args : DeleteResourcePolicyCommandInput ,
679
+ options : __HttpHandlerOptions ,
680
+ cb : ( err : any , data ?: DeleteResourcePolicyCommandOutput ) => void
681
+ ) : void ;
682
+
636
683
/**
637
684
* @see {@link GetAccountSettingsCommand }
638
685
*/
@@ -885,6 +932,40 @@ export interface Lambda {
885
932
cb : ( err : any , data ?: GetProvisionedConcurrencyConfigCommandOutput ) => void
886
933
) : void ;
887
934
935
+ /**
936
+ * @see {@link GetPublicAccessBlockConfigCommand }
937
+ */
938
+ getPublicAccessBlockConfig (
939
+ args : GetPublicAccessBlockConfigCommandInput ,
940
+ options ?: __HttpHandlerOptions
941
+ ) : Promise < GetPublicAccessBlockConfigCommandOutput > ;
942
+ getPublicAccessBlockConfig (
943
+ args : GetPublicAccessBlockConfigCommandInput ,
944
+ cb : ( err : any , data ?: GetPublicAccessBlockConfigCommandOutput ) => void
945
+ ) : void ;
946
+ getPublicAccessBlockConfig (
947
+ args : GetPublicAccessBlockConfigCommandInput ,
948
+ options : __HttpHandlerOptions ,
949
+ cb : ( err : any , data ?: GetPublicAccessBlockConfigCommandOutput ) => void
950
+ ) : void ;
951
+
952
+ /**
953
+ * @see {@link GetResourcePolicyCommand }
954
+ */
955
+ getResourcePolicy (
956
+ args : GetResourcePolicyCommandInput ,
957
+ options ?: __HttpHandlerOptions
958
+ ) : Promise < GetResourcePolicyCommandOutput > ;
959
+ getResourcePolicy (
960
+ args : GetResourcePolicyCommandInput ,
961
+ cb : ( err : any , data ?: GetResourcePolicyCommandOutput ) => void
962
+ ) : void ;
963
+ getResourcePolicy (
964
+ args : GetResourcePolicyCommandInput ,
965
+ options : __HttpHandlerOptions ,
966
+ cb : ( err : any , data ?: GetResourcePolicyCommandOutput ) => void
967
+ ) : void ;
968
+
888
969
/**
889
970
* @see {@link GetRuntimeManagementConfigCommand }
890
971
*/
@@ -1241,6 +1322,40 @@ export interface Lambda {
1241
1322
cb : ( err : any , data ?: PutProvisionedConcurrencyConfigCommandOutput ) => void
1242
1323
) : void ;
1243
1324
1325
+ /**
1326
+ * @see {@link PutPublicAccessBlockConfigCommand }
1327
+ */
1328
+ putPublicAccessBlockConfig (
1329
+ args : PutPublicAccessBlockConfigCommandInput ,
1330
+ options ?: __HttpHandlerOptions
1331
+ ) : Promise < PutPublicAccessBlockConfigCommandOutput > ;
1332
+ putPublicAccessBlockConfig (
1333
+ args : PutPublicAccessBlockConfigCommandInput ,
1334
+ cb : ( err : any , data ?: PutPublicAccessBlockConfigCommandOutput ) => void
1335
+ ) : void ;
1336
+ putPublicAccessBlockConfig (
1337
+ args : PutPublicAccessBlockConfigCommandInput ,
1338
+ options : __HttpHandlerOptions ,
1339
+ cb : ( err : any , data ?: PutPublicAccessBlockConfigCommandOutput ) => void
1340
+ ) : void ;
1341
+
1342
+ /**
1343
+ * @see {@link PutResourcePolicyCommand }
1344
+ */
1345
+ putResourcePolicy (
1346
+ args : PutResourcePolicyCommandInput ,
1347
+ options ?: __HttpHandlerOptions
1348
+ ) : Promise < PutResourcePolicyCommandOutput > ;
1349
+ putResourcePolicy (
1350
+ args : PutResourcePolicyCommandInput ,
1351
+ cb : ( err : any , data ?: PutResourcePolicyCommandOutput ) => void
1352
+ ) : void ;
1353
+ putResourcePolicy (
1354
+ args : PutResourcePolicyCommandInput ,
1355
+ options : __HttpHandlerOptions ,
1356
+ cb : ( err : any , data ?: PutResourcePolicyCommandOutput ) => void
1357
+ ) : void ;
1358
+
1244
1359
/**
1245
1360
* @see {@link PutRuntimeManagementConfigCommand }
1246
1361
*/
0 commit comments