@@ -48,6 +48,11 @@ import {
48
48
CreateLakeFormationOptInCommandOutput ,
49
49
} from "./commands/CreateLakeFormationOptInCommand" ;
50
50
import { CreateLFTagCommand , CreateLFTagCommandInput , CreateLFTagCommandOutput } from "./commands/CreateLFTagCommand" ;
51
+ import {
52
+ CreateLFTagExpressionCommand ,
53
+ CreateLFTagExpressionCommandInput ,
54
+ CreateLFTagExpressionCommandOutput ,
55
+ } from "./commands/CreateLFTagExpressionCommand" ;
51
56
import {
52
57
DeleteDataCellsFilterCommand ,
53
58
DeleteDataCellsFilterCommandInput ,
@@ -64,6 +69,11 @@ import {
64
69
DeleteLakeFormationOptInCommandOutput ,
65
70
} from "./commands/DeleteLakeFormationOptInCommand" ;
66
71
import { DeleteLFTagCommand , DeleteLFTagCommandInput , DeleteLFTagCommandOutput } from "./commands/DeleteLFTagCommand" ;
72
+ import {
73
+ DeleteLFTagExpressionCommand ,
74
+ DeleteLFTagExpressionCommandInput ,
75
+ DeleteLFTagExpressionCommandOutput ,
76
+ } from "./commands/DeleteLFTagExpressionCommand" ;
67
77
import {
68
78
DeleteObjectsOnCancelCommand ,
69
79
DeleteObjectsOnCancelCommandInput ,
@@ -115,6 +125,11 @@ import {
115
125
GetEffectivePermissionsForPathCommandOutput ,
116
126
} from "./commands/GetEffectivePermissionsForPathCommand" ;
117
127
import { GetLFTagCommand , GetLFTagCommandInput , GetLFTagCommandOutput } from "./commands/GetLFTagCommand" ;
128
+ import {
129
+ GetLFTagExpressionCommand ,
130
+ GetLFTagExpressionCommandInput ,
131
+ GetLFTagExpressionCommandOutput ,
132
+ } from "./commands/GetLFTagExpressionCommand" ;
118
133
import {
119
134
GetQueryStateCommand ,
120
135
GetQueryStateCommandInput ,
@@ -170,6 +185,11 @@ import {
170
185
ListLakeFormationOptInsCommandInput ,
171
186
ListLakeFormationOptInsCommandOutput ,
172
187
} from "./commands/ListLakeFormationOptInsCommand" ;
188
+ import {
189
+ ListLFTagExpressionsCommand ,
190
+ ListLFTagExpressionsCommandInput ,
191
+ ListLFTagExpressionsCommandOutput ,
192
+ } from "./commands/ListLFTagExpressionsCommand" ;
173
193
import { ListLFTagsCommand , ListLFTagsCommandInput , ListLFTagsCommandOutput } from "./commands/ListLFTagsCommand" ;
174
194
import {
175
195
ListPermissionsCommand ,
@@ -242,6 +262,11 @@ import {
242
262
UpdateLakeFormationIdentityCenterConfigurationCommandOutput ,
243
263
} from "./commands/UpdateLakeFormationIdentityCenterConfigurationCommand" ;
244
264
import { UpdateLFTagCommand , UpdateLFTagCommandInput , UpdateLFTagCommandOutput } from "./commands/UpdateLFTagCommand" ;
265
+ import {
266
+ UpdateLFTagExpressionCommand ,
267
+ UpdateLFTagExpressionCommandInput ,
268
+ UpdateLFTagExpressionCommandOutput ,
269
+ } from "./commands/UpdateLFTagExpressionCommand" ;
245
270
import {
246
271
UpdateResourceCommand ,
247
272
UpdateResourceCommandInput ,
@@ -270,10 +295,12 @@ const commands = {
270
295
CreateLakeFormationIdentityCenterConfigurationCommand,
271
296
CreateLakeFormationOptInCommand,
272
297
CreateLFTagCommand,
298
+ CreateLFTagExpressionCommand,
273
299
DeleteDataCellsFilterCommand,
274
300
DeleteLakeFormationIdentityCenterConfigurationCommand,
275
301
DeleteLakeFormationOptInCommand,
276
302
DeleteLFTagCommand,
303
+ DeleteLFTagExpressionCommand,
277
304
DeleteObjectsOnCancelCommand,
278
305
DeregisterResourceCommand,
279
306
DescribeLakeFormationIdentityCenterConfigurationCommand,
@@ -285,6 +312,7 @@ const commands = {
285
312
GetDataLakeSettingsCommand,
286
313
GetEffectivePermissionsForPathCommand,
287
314
GetLFTagCommand,
315
+ GetLFTagExpressionCommand,
288
316
GetQueryStateCommand,
289
317
GetQueryStatisticsCommand,
290
318
GetResourceLFTagsCommand,
@@ -296,6 +324,7 @@ const commands = {
296
324
GrantPermissionsCommand,
297
325
ListDataCellsFilterCommand,
298
326
ListLakeFormationOptInsCommand,
327
+ ListLFTagExpressionsCommand,
299
328
ListLFTagsCommand,
300
329
ListPermissionsCommand,
301
330
ListResourcesCommand,
@@ -312,6 +341,7 @@ const commands = {
312
341
UpdateDataCellsFilterCommand,
313
342
UpdateLakeFormationIdentityCenterConfigurationCommand,
314
343
UpdateLFTagCommand,
344
+ UpdateLFTagExpressionCommand,
315
345
UpdateResourceCommand,
316
346
UpdateTableObjectsCommand,
317
347
UpdateTableStorageOptimizerCommand,
@@ -483,6 +513,23 @@ export interface LakeFormation {
483
513
cb : ( err : any , data ?: CreateLFTagCommandOutput ) => void
484
514
) : void ;
485
515
516
+ /**
517
+ * @see {@link CreateLFTagExpressionCommand }
518
+ */
519
+ createLFTagExpression (
520
+ args : CreateLFTagExpressionCommandInput ,
521
+ options ?: __HttpHandlerOptions
522
+ ) : Promise < CreateLFTagExpressionCommandOutput > ;
523
+ createLFTagExpression (
524
+ args : CreateLFTagExpressionCommandInput ,
525
+ cb : ( err : any , data ?: CreateLFTagExpressionCommandOutput ) => void
526
+ ) : void ;
527
+ createLFTagExpression (
528
+ args : CreateLFTagExpressionCommandInput ,
529
+ options : __HttpHandlerOptions ,
530
+ cb : ( err : any , data ?: CreateLFTagExpressionCommandOutput ) => void
531
+ ) : void ;
532
+
486
533
/**
487
534
* @see {@link DeleteDataCellsFilterCommand }
488
535
*/
@@ -547,6 +594,23 @@ export interface LakeFormation {
547
594
cb : ( err : any , data ?: DeleteLFTagCommandOutput ) => void
548
595
) : void ;
549
596
597
+ /**
598
+ * @see {@link DeleteLFTagExpressionCommand }
599
+ */
600
+ deleteLFTagExpression (
601
+ args : DeleteLFTagExpressionCommandInput ,
602
+ options ?: __HttpHandlerOptions
603
+ ) : Promise < DeleteLFTagExpressionCommandOutput > ;
604
+ deleteLFTagExpression (
605
+ args : DeleteLFTagExpressionCommandInput ,
606
+ cb : ( err : any , data ?: DeleteLFTagExpressionCommandOutput ) => void
607
+ ) : void ;
608
+ deleteLFTagExpression (
609
+ args : DeleteLFTagExpressionCommandInput ,
610
+ options : __HttpHandlerOptions ,
611
+ cb : ( err : any , data ?: DeleteLFTagExpressionCommandOutput ) => void
612
+ ) : void ;
613
+
550
614
/**
551
615
* @see {@link DeleteObjectsOnCancelCommand }
552
616
*/
@@ -732,6 +796,23 @@ export interface LakeFormation {
732
796
cb : ( err : any , data ?: GetLFTagCommandOutput ) => void
733
797
) : void ;
734
798
799
+ /**
800
+ * @see {@link GetLFTagExpressionCommand }
801
+ */
802
+ getLFTagExpression (
803
+ args : GetLFTagExpressionCommandInput ,
804
+ options ?: __HttpHandlerOptions
805
+ ) : Promise < GetLFTagExpressionCommandOutput > ;
806
+ getLFTagExpression (
807
+ args : GetLFTagExpressionCommandInput ,
808
+ cb : ( err : any , data ?: GetLFTagExpressionCommandOutput ) => void
809
+ ) : void ;
810
+ getLFTagExpression (
811
+ args : GetLFTagExpressionCommandInput ,
812
+ options : __HttpHandlerOptions ,
813
+ cb : ( err : any , data ?: GetLFTagExpressionCommandOutput ) => void
814
+ ) : void ;
815
+
735
816
/**
736
817
* @see {@link GetQueryStateCommand }
737
818
*/
@@ -906,6 +987,24 @@ export interface LakeFormation {
906
987
cb : ( err : any , data ?: ListLakeFormationOptInsCommandOutput ) => void
907
988
) : void ;
908
989
990
+ /**
991
+ * @see {@link ListLFTagExpressionsCommand }
992
+ */
993
+ listLFTagExpressions ( ) : Promise < ListLFTagExpressionsCommandOutput > ;
994
+ listLFTagExpressions (
995
+ args : ListLFTagExpressionsCommandInput ,
996
+ options ?: __HttpHandlerOptions
997
+ ) : Promise < ListLFTagExpressionsCommandOutput > ;
998
+ listLFTagExpressions (
999
+ args : ListLFTagExpressionsCommandInput ,
1000
+ cb : ( err : any , data ?: ListLFTagExpressionsCommandOutput ) => void
1001
+ ) : void ;
1002
+ listLFTagExpressions (
1003
+ args : ListLFTagExpressionsCommandInput ,
1004
+ options : __HttpHandlerOptions ,
1005
+ cb : ( err : any , data ?: ListLFTagExpressionsCommandOutput ) => void
1006
+ ) : void ;
1007
+
909
1008
/**
910
1009
* @see {@link ListLFTagsCommand }
911
1010
*/
@@ -1163,6 +1262,23 @@ export interface LakeFormation {
1163
1262
cb : ( err : any , data ?: UpdateLFTagCommandOutput ) => void
1164
1263
) : void ;
1165
1264
1265
+ /**
1266
+ * @see {@link UpdateLFTagExpressionCommand }
1267
+ */
1268
+ updateLFTagExpression (
1269
+ args : UpdateLFTagExpressionCommandInput ,
1270
+ options ?: __HttpHandlerOptions
1271
+ ) : Promise < UpdateLFTagExpressionCommandOutput > ;
1272
+ updateLFTagExpression (
1273
+ args : UpdateLFTagExpressionCommandInput ,
1274
+ cb : ( err : any , data ?: UpdateLFTagExpressionCommandOutput ) => void
1275
+ ) : void ;
1276
+ updateLFTagExpression (
1277
+ args : UpdateLFTagExpressionCommandInput ,
1278
+ options : __HttpHandlerOptions ,
1279
+ cb : ( err : any , data ?: UpdateLFTagExpressionCommandOutput ) => void
1280
+ ) : void ;
1281
+
1166
1282
/**
1167
1283
* @see {@link UpdateResourceCommand }
1168
1284
*/
0 commit comments