@@ -37,6 +37,11 @@ import {
37
37
CreateDataCellsFilterCommandInput ,
38
38
CreateDataCellsFilterCommandOutput ,
39
39
} from "./commands/CreateDataCellsFilterCommand" ;
40
+ import {
41
+ CreateLakeFormationIdentityCenterConfigurationCommand ,
42
+ CreateLakeFormationIdentityCenterConfigurationCommandInput ,
43
+ CreateLakeFormationIdentityCenterConfigurationCommandOutput ,
44
+ } from "./commands/CreateLakeFormationIdentityCenterConfigurationCommand" ;
40
45
import {
41
46
CreateLakeFormationOptInCommand ,
42
47
CreateLakeFormationOptInCommandInput ,
@@ -48,6 +53,11 @@ import {
48
53
DeleteDataCellsFilterCommandInput ,
49
54
DeleteDataCellsFilterCommandOutput ,
50
55
} from "./commands/DeleteDataCellsFilterCommand" ;
56
+ import {
57
+ DeleteLakeFormationIdentityCenterConfigurationCommand ,
58
+ DeleteLakeFormationIdentityCenterConfigurationCommandInput ,
59
+ DeleteLakeFormationIdentityCenterConfigurationCommandOutput ,
60
+ } from "./commands/DeleteLakeFormationIdentityCenterConfigurationCommand" ;
51
61
import {
52
62
DeleteLakeFormationOptInCommand ,
53
63
DeleteLakeFormationOptInCommandInput ,
@@ -64,6 +74,11 @@ import {
64
74
DeregisterResourceCommandInput ,
65
75
DeregisterResourceCommandOutput ,
66
76
} from "./commands/DeregisterResourceCommand" ;
77
+ import {
78
+ DescribeLakeFormationIdentityCenterConfigurationCommand ,
79
+ DescribeLakeFormationIdentityCenterConfigurationCommandInput ,
80
+ DescribeLakeFormationIdentityCenterConfigurationCommandOutput ,
81
+ } from "./commands/DescribeLakeFormationIdentityCenterConfigurationCommand" ;
67
82
import {
68
83
DescribeResourceCommand ,
69
84
DescribeResourceCommandInput ,
@@ -216,6 +231,11 @@ import {
216
231
UpdateDataCellsFilterCommandInput ,
217
232
UpdateDataCellsFilterCommandOutput ,
218
233
} from "./commands/UpdateDataCellsFilterCommand" ;
234
+ import {
235
+ UpdateLakeFormationIdentityCenterConfigurationCommand ,
236
+ UpdateLakeFormationIdentityCenterConfigurationCommandInput ,
237
+ UpdateLakeFormationIdentityCenterConfigurationCommandOutput ,
238
+ } from "./commands/UpdateLakeFormationIdentityCenterConfigurationCommand" ;
219
239
import { UpdateLFTagCommand , UpdateLFTagCommandInput , UpdateLFTagCommandOutput } from "./commands/UpdateLFTagCommand" ;
220
240
import {
221
241
UpdateResourceCommand ,
@@ -242,13 +262,16 @@ const commands = {
242
262
CancelTransactionCommand,
243
263
CommitTransactionCommand,
244
264
CreateDataCellsFilterCommand,
265
+ CreateLakeFormationIdentityCenterConfigurationCommand,
245
266
CreateLakeFormationOptInCommand,
246
267
CreateLFTagCommand,
247
268
DeleteDataCellsFilterCommand,
269
+ DeleteLakeFormationIdentityCenterConfigurationCommand,
248
270
DeleteLakeFormationOptInCommand,
249
271
DeleteLFTagCommand,
250
272
DeleteObjectsOnCancelCommand,
251
273
DeregisterResourceCommand,
274
+ DescribeLakeFormationIdentityCenterConfigurationCommand,
252
275
DescribeResourceCommand,
253
276
DescribeTransactionCommand,
254
277
ExtendTransactionCommand,
@@ -281,6 +304,7 @@ const commands = {
281
304
StartQueryPlanningCommand,
282
305
StartTransactionCommand,
283
306
UpdateDataCellsFilterCommand,
307
+ UpdateLakeFormationIdentityCenterConfigurationCommand,
284
308
UpdateLFTagCommand,
285
309
UpdateResourceCommand,
286
310
UpdateTableObjectsCommand,
@@ -407,6 +431,23 @@ export interface LakeFormation {
407
431
cb : ( err : any , data ?: CreateDataCellsFilterCommandOutput ) => void
408
432
) : void ;
409
433
434
+ /**
435
+ * @see {@link CreateLakeFormationIdentityCenterConfigurationCommand }
436
+ */
437
+ createLakeFormationIdentityCenterConfiguration (
438
+ args : CreateLakeFormationIdentityCenterConfigurationCommandInput ,
439
+ options ?: __HttpHandlerOptions
440
+ ) : Promise < CreateLakeFormationIdentityCenterConfigurationCommandOutput > ;
441
+ createLakeFormationIdentityCenterConfiguration (
442
+ args : CreateLakeFormationIdentityCenterConfigurationCommandInput ,
443
+ cb : ( err : any , data ?: CreateLakeFormationIdentityCenterConfigurationCommandOutput ) => void
444
+ ) : void ;
445
+ createLakeFormationIdentityCenterConfiguration (
446
+ args : CreateLakeFormationIdentityCenterConfigurationCommandInput ,
447
+ options : __HttpHandlerOptions ,
448
+ cb : ( err : any , data ?: CreateLakeFormationIdentityCenterConfigurationCommandOutput ) => void
449
+ ) : void ;
450
+
410
451
/**
411
452
* @see {@link CreateLakeFormationOptInCommand }
412
453
*/
@@ -452,6 +493,23 @@ export interface LakeFormation {
452
493
cb : ( err : any , data ?: DeleteDataCellsFilterCommandOutput ) => void
453
494
) : void ;
454
495
496
+ /**
497
+ * @see {@link DeleteLakeFormationIdentityCenterConfigurationCommand }
498
+ */
499
+ deleteLakeFormationIdentityCenterConfiguration (
500
+ args : DeleteLakeFormationIdentityCenterConfigurationCommandInput ,
501
+ options ?: __HttpHandlerOptions
502
+ ) : Promise < DeleteLakeFormationIdentityCenterConfigurationCommandOutput > ;
503
+ deleteLakeFormationIdentityCenterConfiguration (
504
+ args : DeleteLakeFormationIdentityCenterConfigurationCommandInput ,
505
+ cb : ( err : any , data ?: DeleteLakeFormationIdentityCenterConfigurationCommandOutput ) => void
506
+ ) : void ;
507
+ deleteLakeFormationIdentityCenterConfiguration (
508
+ args : DeleteLakeFormationIdentityCenterConfigurationCommandInput ,
509
+ options : __HttpHandlerOptions ,
510
+ cb : ( err : any , data ?: DeleteLakeFormationIdentityCenterConfigurationCommandOutput ) => void
511
+ ) : void ;
512
+
455
513
/**
456
514
* @see {@link DeleteLakeFormationOptInCommand }
457
515
*/
@@ -514,6 +572,23 @@ export interface LakeFormation {
514
572
cb : ( err : any , data ?: DeregisterResourceCommandOutput ) => void
515
573
) : void ;
516
574
575
+ /**
576
+ * @see {@link DescribeLakeFormationIdentityCenterConfigurationCommand }
577
+ */
578
+ describeLakeFormationIdentityCenterConfiguration (
579
+ args : DescribeLakeFormationIdentityCenterConfigurationCommandInput ,
580
+ options ?: __HttpHandlerOptions
581
+ ) : Promise < DescribeLakeFormationIdentityCenterConfigurationCommandOutput > ;
582
+ describeLakeFormationIdentityCenterConfiguration (
583
+ args : DescribeLakeFormationIdentityCenterConfigurationCommandInput ,
584
+ cb : ( err : any , data ?: DescribeLakeFormationIdentityCenterConfigurationCommandOutput ) => void
585
+ ) : void ;
586
+ describeLakeFormationIdentityCenterConfiguration (
587
+ args : DescribeLakeFormationIdentityCenterConfigurationCommandInput ,
588
+ options : __HttpHandlerOptions ,
589
+ cb : ( err : any , data ?: DescribeLakeFormationIdentityCenterConfigurationCommandOutput ) => void
590
+ ) : void ;
591
+
517
592
/**
518
593
* @see {@link DescribeResourceCommand }
519
594
*/
@@ -1022,6 +1097,23 @@ export interface LakeFormation {
1022
1097
cb : ( err : any , data ?: UpdateDataCellsFilterCommandOutput ) => void
1023
1098
) : void ;
1024
1099
1100
+ /**
1101
+ * @see {@link UpdateLakeFormationIdentityCenterConfigurationCommand }
1102
+ */
1103
+ updateLakeFormationIdentityCenterConfiguration (
1104
+ args : UpdateLakeFormationIdentityCenterConfigurationCommandInput ,
1105
+ options ?: __HttpHandlerOptions
1106
+ ) : Promise < UpdateLakeFormationIdentityCenterConfigurationCommandOutput > ;
1107
+ updateLakeFormationIdentityCenterConfiguration (
1108
+ args : UpdateLakeFormationIdentityCenterConfigurationCommandInput ,
1109
+ cb : ( err : any , data ?: UpdateLakeFormationIdentityCenterConfigurationCommandOutput ) => void
1110
+ ) : void ;
1111
+ updateLakeFormationIdentityCenterConfiguration (
1112
+ args : UpdateLakeFormationIdentityCenterConfigurationCommandInput ,
1113
+ options : __HttpHandlerOptions ,
1114
+ cb : ( err : any , data ?: UpdateLakeFormationIdentityCenterConfigurationCommandOutput ) => void
1115
+ ) : void ;
1116
+
1025
1117
/**
1026
1118
* @see {@link UpdateLFTagCommand }
1027
1119
*/
0 commit comments