@@ -37,12 +37,22 @@ import {
37
37
CreateDataCellsFilterCommandInput ,
38
38
CreateDataCellsFilterCommandOutput ,
39
39
} from "./commands/CreateDataCellsFilterCommand" ;
40
+ import {
41
+ CreateLakeFormationOptInCommand ,
42
+ CreateLakeFormationOptInCommandInput ,
43
+ CreateLakeFormationOptInCommandOutput ,
44
+ } from "./commands/CreateLakeFormationOptInCommand" ;
40
45
import { CreateLFTagCommand , CreateLFTagCommandInput , CreateLFTagCommandOutput } from "./commands/CreateLFTagCommand" ;
41
46
import {
42
47
DeleteDataCellsFilterCommand ,
43
48
DeleteDataCellsFilterCommandInput ,
44
49
DeleteDataCellsFilterCommandOutput ,
45
50
} from "./commands/DeleteDataCellsFilterCommand" ;
51
+ import {
52
+ DeleteLakeFormationOptInCommand ,
53
+ DeleteLakeFormationOptInCommandInput ,
54
+ DeleteLakeFormationOptInCommandOutput ,
55
+ } from "./commands/DeleteLakeFormationOptInCommand" ;
46
56
import { DeleteLFTagCommand , DeleteLFTagCommandInput , DeleteLFTagCommandOutput } from "./commands/DeleteLFTagCommand" ;
47
57
import {
48
58
DeleteObjectsOnCancelCommand ,
@@ -135,6 +145,11 @@ import {
135
145
ListDataCellsFilterCommandInput ,
136
146
ListDataCellsFilterCommandOutput ,
137
147
} from "./commands/ListDataCellsFilterCommand" ;
148
+ import {
149
+ ListLakeFormationOptInsCommand ,
150
+ ListLakeFormationOptInsCommandInput ,
151
+ ListLakeFormationOptInsCommandOutput ,
152
+ } from "./commands/ListLakeFormationOptInsCommand" ;
138
153
import { ListLFTagsCommand , ListLFTagsCommandInput , ListLFTagsCommandOutput } from "./commands/ListLFTagsCommand" ;
139
154
import {
140
155
ListPermissionsCommand ,
@@ -227,8 +242,10 @@ const commands = {
227
242
CancelTransactionCommand,
228
243
CommitTransactionCommand,
229
244
CreateDataCellsFilterCommand,
245
+ CreateLakeFormationOptInCommand,
230
246
CreateLFTagCommand,
231
247
DeleteDataCellsFilterCommand,
248
+ DeleteLakeFormationOptInCommand,
232
249
DeleteLFTagCommand,
233
250
DeleteObjectsOnCancelCommand,
234
251
DeregisterResourceCommand,
@@ -249,6 +266,7 @@ const commands = {
249
266
GetWorkUnitsCommand,
250
267
GrantPermissionsCommand,
251
268
ListDataCellsFilterCommand,
269
+ ListLakeFormationOptInsCommand,
252
270
ListLFTagsCommand,
253
271
ListPermissionsCommand,
254
272
ListResourcesCommand,
@@ -389,6 +407,23 @@ export interface LakeFormation {
389
407
cb : ( err : any , data ?: CreateDataCellsFilterCommandOutput ) => void
390
408
) : void ;
391
409
410
+ /**
411
+ * @see {@link CreateLakeFormationOptInCommand }
412
+ */
413
+ createLakeFormationOptIn (
414
+ args : CreateLakeFormationOptInCommandInput ,
415
+ options ?: __HttpHandlerOptions
416
+ ) : Promise < CreateLakeFormationOptInCommandOutput > ;
417
+ createLakeFormationOptIn (
418
+ args : CreateLakeFormationOptInCommandInput ,
419
+ cb : ( err : any , data ?: CreateLakeFormationOptInCommandOutput ) => void
420
+ ) : void ;
421
+ createLakeFormationOptIn (
422
+ args : CreateLakeFormationOptInCommandInput ,
423
+ options : __HttpHandlerOptions ,
424
+ cb : ( err : any , data ?: CreateLakeFormationOptInCommandOutput ) => void
425
+ ) : void ;
426
+
392
427
/**
393
428
* @see {@link CreateLFTagCommand }
394
429
*/
@@ -417,6 +452,23 @@ export interface LakeFormation {
417
452
cb : ( err : any , data ?: DeleteDataCellsFilterCommandOutput ) => void
418
453
) : void ;
419
454
455
+ /**
456
+ * @see {@link DeleteLakeFormationOptInCommand }
457
+ */
458
+ deleteLakeFormationOptIn (
459
+ args : DeleteLakeFormationOptInCommandInput ,
460
+ options ?: __HttpHandlerOptions
461
+ ) : Promise < DeleteLakeFormationOptInCommandOutput > ;
462
+ deleteLakeFormationOptIn (
463
+ args : DeleteLakeFormationOptInCommandInput ,
464
+ cb : ( err : any , data ?: DeleteLakeFormationOptInCommandOutput ) => void
465
+ ) : void ;
466
+ deleteLakeFormationOptIn (
467
+ args : DeleteLakeFormationOptInCommandInput ,
468
+ options : __HttpHandlerOptions ,
469
+ cb : ( err : any , data ?: DeleteLakeFormationOptInCommandOutput ) => void
470
+ ) : void ;
471
+
420
472
/**
421
473
* @see {@link DeleteLFTagCommand }
422
474
*/
@@ -730,6 +782,23 @@ export interface LakeFormation {
730
782
cb : ( err : any , data ?: ListDataCellsFilterCommandOutput ) => void
731
783
) : void ;
732
784
785
+ /**
786
+ * @see {@link ListLakeFormationOptInsCommand }
787
+ */
788
+ listLakeFormationOptIns (
789
+ args : ListLakeFormationOptInsCommandInput ,
790
+ options ?: __HttpHandlerOptions
791
+ ) : Promise < ListLakeFormationOptInsCommandOutput > ;
792
+ listLakeFormationOptIns (
793
+ args : ListLakeFormationOptInsCommandInput ,
794
+ cb : ( err : any , data ?: ListLakeFormationOptInsCommandOutput ) => void
795
+ ) : void ;
796
+ listLakeFormationOptIns (
797
+ args : ListLakeFormationOptInsCommandInput ,
798
+ options : __HttpHandlerOptions ,
799
+ cb : ( err : any , data ?: ListLakeFormationOptInsCommandOutput ) => void
800
+ ) : void ;
801
+
733
802
/**
734
803
* @see {@link ListLFTagsCommand }
735
804
*/
0 commit comments