@aws-sdk/client-lakeformation 3.682.0 → 3.687.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/README.md +41 -1
  2. package/dist-cjs/index.js +240 -0
  3. package/dist-es/LakeFormation.js +10 -0
  4. package/dist-es/commands/CreateLFTagExpressionCommand.js +22 -0
  5. package/dist-es/commands/DeleteLFTagExpressionCommand.js +22 -0
  6. package/dist-es/commands/GetLFTagExpressionCommand.js +22 -0
  7. package/dist-es/commands/ListLFTagExpressionsCommand.js +22 -0
  8. package/dist-es/commands/UpdateLFTagExpressionCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +2 -0
  11. package/dist-es/pagination/ListLFTagExpressionsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +137 -0
  14. package/dist-types/LakeFormation.d.ts +36 -0
  15. package/dist-types/LakeFormationClient.d.ts +7 -2
  16. package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +6 -1
  17. package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +16 -6
  18. package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +16 -6
  19. package/dist-types/commands/CreateLFTagExpressionCommand.d.ts +105 -0
  20. package/dist-types/commands/CreateLakeFormationOptInCommand.d.ts +6 -1
  21. package/dist-types/commands/DeleteLFTagExpressionCommand.d.ts +86 -0
  22. package/dist-types/commands/DeleteLakeFormationOptInCommand.d.ts +6 -1
  23. package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +2 -2
  24. package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +8 -3
  25. package/dist-types/commands/GetLFTagExpressionCommand.d.ts +98 -0
  26. package/dist-types/commands/GetResourceLFTagsCommand.d.ts +6 -1
  27. package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +1 -1
  28. package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +2 -1
  29. package/dist-types/commands/GrantPermissionsCommand.d.ts +8 -3
  30. package/dist-types/commands/ListLFTagExpressionsCommand.d.ts +103 -0
  31. package/dist-types/commands/ListLakeFormationOptInsCommand.d.ts +12 -2
  32. package/dist-types/commands/ListPermissionsCommand.d.ts +15 -5
  33. package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +2 -2
  34. package/dist-types/commands/RegisterResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +6 -1
  36. package/dist-types/commands/RevokePermissionsCommand.d.ts +8 -3
  37. package/dist-types/commands/UpdateLFTagExpressionCommand.d.ts +98 -0
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/models/models_0.d.ts +216 -5
  40. package/dist-types/pagination/ListLFTagExpressionsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  43. package/dist-types/ts3.4/LakeFormation.d.ts +86 -0
  44. package/dist-types/ts3.4/LakeFormationClient.d.ts +30 -0
  45. package/dist-types/ts3.4/commands/CreateLFTagExpressionCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/DeleteLFTagExpressionCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/GetLFTagExpressionCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/ListLFTagExpressionsCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/UpdateLFTagExpressionCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +53 -1
  52. package/dist-types/ts3.4/pagination/ListLFTagExpressionsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  55. package/package.json +36 -36
package/README.md CHANGED
@@ -12,7 +12,7 @@ AWS SDK for JavaScript LakeFormation Client for Node.js, Browser and React Nativ
12
12
 
13
13
  ## Installing
14
14
 
15
- To install the this package, simply type add or install @aws-sdk/client-lakeformation
15
+ To install this package, simply type add or install @aws-sdk/client-lakeformation
16
16
  using your favorite package manager:
17
17
 
18
18
  - `npm install @aws-sdk/client-lakeformation`
@@ -284,6 +284,14 @@ CreateLFTag
284
284
 
285
285
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/CreateLFTagCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/CreateLFTagCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/CreateLFTagCommandOutput/)
286
286
 
287
+ </details>
288
+ <details>
289
+ <summary>
290
+ CreateLFTagExpression
291
+ </summary>
292
+
293
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/CreateLFTagExpressionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/CreateLFTagExpressionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/CreateLFTagExpressionCommandOutput/)
294
+
287
295
  </details>
288
296
  <details>
289
297
  <summary>
@@ -316,6 +324,14 @@ DeleteLFTag
316
324
 
317
325
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/DeleteLFTagCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/DeleteLFTagCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/DeleteLFTagCommandOutput/)
318
326
 
327
+ </details>
328
+ <details>
329
+ <summary>
330
+ DeleteLFTagExpression
331
+ </summary>
332
+
333
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/DeleteLFTagExpressionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/DeleteLFTagExpressionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/DeleteLFTagExpressionCommandOutput/)
334
+
319
335
  </details>
320
336
  <details>
321
337
  <summary>
@@ -404,6 +420,14 @@ GetLFTag
404
420
 
405
421
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/GetLFTagCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/GetLFTagCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/GetLFTagCommandOutput/)
406
422
 
423
+ </details>
424
+ <details>
425
+ <summary>
426
+ GetLFTagExpression
427
+ </summary>
428
+
429
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/GetLFTagExpressionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/GetLFTagExpressionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/GetLFTagExpressionCommandOutput/)
430
+
407
431
  </details>
408
432
  <details>
409
433
  <summary>
@@ -492,6 +516,14 @@ ListLakeFormationOptIns
492
516
 
493
517
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/ListLakeFormationOptInsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/ListLakeFormationOptInsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/ListLakeFormationOptInsCommandOutput/)
494
518
 
519
+ </details>
520
+ <details>
521
+ <summary>
522
+ ListLFTagExpressions
523
+ </summary>
524
+
525
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/ListLFTagExpressionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/ListLFTagExpressionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/ListLFTagExpressionsCommandOutput/)
526
+
495
527
  </details>
496
528
  <details>
497
529
  <summary>
@@ -620,6 +652,14 @@ UpdateLFTag
620
652
 
621
653
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/UpdateLFTagCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/UpdateLFTagCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/UpdateLFTagCommandOutput/)
622
654
 
655
+ </details>
656
+ <details>
657
+ <summary>
658
+ UpdateLFTagExpression
659
+ </summary>
660
+
661
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/UpdateLFTagExpressionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/UpdateLFTagExpressionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/UpdateLFTagExpressionCommandOutput/)
662
+
623
663
  </details>
624
664
  <details>
625
665
  <summary>
package/dist-cjs/index.js CHANGED
@@ -34,11 +34,13 @@ __export(src_exports, {
34
34
  ConcurrentModificationException: () => ConcurrentModificationException,
35
35
  CreateDataCellsFilterCommand: () => CreateDataCellsFilterCommand,
36
36
  CreateLFTagCommand: () => CreateLFTagCommand,
37
+ CreateLFTagExpressionCommand: () => CreateLFTagExpressionCommand,
37
38
  CreateLakeFormationIdentityCenterConfigurationCommand: () => CreateLakeFormationIdentityCenterConfigurationCommand,
38
39
  CreateLakeFormationOptInCommand: () => CreateLakeFormationOptInCommand,
39
40
  DataLakeResourceType: () => DataLakeResourceType,
40
41
  DeleteDataCellsFilterCommand: () => DeleteDataCellsFilterCommand,
41
42
  DeleteLFTagCommand: () => DeleteLFTagCommand,
43
+ DeleteLFTagExpressionCommand: () => DeleteLFTagExpressionCommand,
42
44
  DeleteLakeFormationIdentityCenterConfigurationCommand: () => DeleteLakeFormationIdentityCenterConfigurationCommand,
43
45
  DeleteLakeFormationOptInCommand: () => DeleteLakeFormationOptInCommand,
44
46
  DeleteObjectsOnCancelCommand: () => DeleteObjectsOnCancelCommand,
@@ -56,6 +58,7 @@ __export(src_exports, {
56
58
  GetDataLakeSettingsCommand: () => GetDataLakeSettingsCommand,
57
59
  GetEffectivePermissionsForPathCommand: () => GetEffectivePermissionsForPathCommand,
58
60
  GetLFTagCommand: () => GetLFTagCommand,
61
+ GetLFTagExpressionCommand: () => GetLFTagExpressionCommand,
59
62
  GetQueryStateCommand: () => GetQueryStateCommand,
60
63
  GetQueryStatisticsCommand: () => GetQueryStatisticsCommand,
61
64
  GetResourceLFTagsCommand: () => GetResourceLFTagsCommand,
@@ -74,6 +77,7 @@ __export(src_exports, {
74
77
  LakeFormationClient: () => LakeFormationClient,
75
78
  LakeFormationServiceException: () => LakeFormationServiceException,
76
79
  ListDataCellsFilterCommand: () => ListDataCellsFilterCommand,
80
+ ListLFTagExpressionsCommand: () => ListLFTagExpressionsCommand,
77
81
  ListLFTagsCommand: () => ListLFTagsCommand,
78
82
  ListLakeFormationOptInsCommand: () => ListLakeFormationOptInsCommand,
79
83
  ListPermissionsCommand: () => ListPermissionsCommand,
@@ -109,6 +113,7 @@ __export(src_exports, {
109
113
  TransactionType: () => TransactionType,
110
114
  UpdateDataCellsFilterCommand: () => UpdateDataCellsFilterCommand,
111
115
  UpdateLFTagCommand: () => UpdateLFTagCommand,
116
+ UpdateLFTagExpressionCommand: () => UpdateLFTagExpressionCommand,
112
117
  UpdateLakeFormationIdentityCenterConfigurationCommand: () => UpdateLakeFormationIdentityCenterConfigurationCommand,
113
118
  UpdateResourceCommand: () => UpdateResourceCommand,
114
119
  UpdateTableObjectsCommand: () => UpdateTableObjectsCommand,
@@ -119,6 +124,7 @@ __export(src_exports, {
119
124
  paginateGetTableObjects: () => paginateGetTableObjects,
120
125
  paginateGetWorkUnits: () => paginateGetWorkUnits,
121
126
  paginateListDataCellsFilter: () => paginateListDataCellsFilter,
127
+ paginateListLFTagExpressions: () => paginateListLFTagExpressions,
122
128
  paginateListLFTags: () => paginateListLFTags,
123
129
  paginateListLakeFormationOptIns: () => paginateListLakeFormationOptIns,
124
130
  paginateListPermissions: () => paginateListPermissions,
@@ -437,6 +443,7 @@ var Permission = {
437
443
  ASSOCIATE: "ASSOCIATE",
438
444
  CREATE_DATABASE: "CREATE_DATABASE",
439
445
  CREATE_LF_TAG: "CREATE_LF_TAG",
446
+ CREATE_LF_TAG_EXPRESSION: "CREATE_LF_TAG_EXPRESSION",
440
447
  CREATE_TABLE: "CREATE_TABLE",
441
448
  DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS",
442
449
  DELETE: "DELETE",
@@ -678,6 +685,7 @@ var DataLakeResourceType = {
678
685
  CATALOG: "CATALOG",
679
686
  DATABASE: "DATABASE",
680
687
  DATA_LOCATION: "DATA_LOCATION",
688
+ LF_NAMED_TAG_EXPRESSION: "LF_NAMED_TAG_EXPRESSION",
681
689
  LF_TAG: "LF_TAG",
682
690
  LF_TAG_POLICY: "LF_TAG_POLICY",
683
691
  LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE",
@@ -894,6 +902,24 @@ var se_CreateLFTagCommand = /* @__PURE__ */ __name(async (input, context) => {
894
902
  b.m("POST").h(headers).b(body);
895
903
  return b.build();
896
904
  }, "se_CreateLFTagCommand");
905
+ var se_CreateLFTagExpressionCommand = /* @__PURE__ */ __name(async (input, context) => {
906
+ const b = (0, import_core.requestBuilder)(input, context);
907
+ const headers = {
908
+ "content-type": "application/json"
909
+ };
910
+ b.bp("/CreateLFTagExpression");
911
+ let body;
912
+ body = JSON.stringify(
913
+ (0, import_smithy_client.take)(input, {
914
+ CatalogId: [],
915
+ Description: [],
916
+ Expression: (_) => (0, import_smithy_client._json)(_),
917
+ Name: []
918
+ })
919
+ );
920
+ b.m("POST").h(headers).b(body);
921
+ return b.build();
922
+ }, "se_CreateLFTagExpressionCommand");
897
923
  var se_DeleteDataCellsFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
898
924
  const b = (0, import_core.requestBuilder)(input, context);
899
925
  const headers = {
@@ -959,6 +985,22 @@ var se_DeleteLFTagCommand = /* @__PURE__ */ __name(async (input, context) => {
959
985
  b.m("POST").h(headers).b(body);
960
986
  return b.build();
961
987
  }, "se_DeleteLFTagCommand");
988
+ var se_DeleteLFTagExpressionCommand = /* @__PURE__ */ __name(async (input, context) => {
989
+ const b = (0, import_core.requestBuilder)(input, context);
990
+ const headers = {
991
+ "content-type": "application/json"
992
+ };
993
+ b.bp("/DeleteLFTagExpression");
994
+ let body;
995
+ body = JSON.stringify(
996
+ (0, import_smithy_client.take)(input, {
997
+ CatalogId: [],
998
+ Name: []
999
+ })
1000
+ );
1001
+ b.m("POST").h(headers).b(body);
1002
+ return b.build();
1003
+ }, "se_DeleteLFTagExpressionCommand");
962
1004
  var se_DeleteObjectsOnCancelCommand = /* @__PURE__ */ __name(async (input, context) => {
963
1005
  const b = (0, import_core.requestBuilder)(input, context);
964
1006
  const headers = {
@@ -1128,6 +1170,22 @@ var se_GetLFTagCommand = /* @__PURE__ */ __name(async (input, context) => {
1128
1170
  b.m("POST").h(headers).b(body);
1129
1171
  return b.build();
1130
1172
  }, "se_GetLFTagCommand");
1173
+ var se_GetLFTagExpressionCommand = /* @__PURE__ */ __name(async (input, context) => {
1174
+ const b = (0, import_core.requestBuilder)(input, context);
1175
+ const headers = {
1176
+ "content-type": "application/json"
1177
+ };
1178
+ b.bp("/GetLFTagExpression");
1179
+ let body;
1180
+ body = JSON.stringify(
1181
+ (0, import_smithy_client.take)(input, {
1182
+ CatalogId: [],
1183
+ Name: []
1184
+ })
1185
+ );
1186
+ b.m("POST").h(headers).b(body);
1187
+ return b.build();
1188
+ }, "se_GetLFTagExpressionCommand");
1131
1189
  var se_GetQueryStateCommand = /* @__PURE__ */ __name(async (input, context) => {
1132
1190
  const b = (0, import_core.requestBuilder)(input, context);
1133
1191
  const headers = {
@@ -1358,6 +1416,23 @@ var se_ListLakeFormationOptInsCommand = /* @__PURE__ */ __name(async (input, con
1358
1416
  b.m("POST").h(headers).b(body);
1359
1417
  return b.build();
1360
1418
  }, "se_ListLakeFormationOptInsCommand");
1419
+ var se_ListLFTagExpressionsCommand = /* @__PURE__ */ __name(async (input, context) => {
1420
+ const b = (0, import_core.requestBuilder)(input, context);
1421
+ const headers = {
1422
+ "content-type": "application/json"
1423
+ };
1424
+ b.bp("/ListLFTagExpressions");
1425
+ let body;
1426
+ body = JSON.stringify(
1427
+ (0, import_smithy_client.take)(input, {
1428
+ CatalogId: [],
1429
+ MaxResults: [],
1430
+ NextToken: []
1431
+ })
1432
+ );
1433
+ b.m("POST").h(headers).b(body);
1434
+ return b.build();
1435
+ }, "se_ListLFTagExpressionsCommand");
1361
1436
  var se_ListLFTagsCommand = /* @__PURE__ */ __name(async (input, context) => {
1362
1437
  const b = (0, import_core.requestBuilder)(input, context);
1363
1438
  const headers = {
@@ -1649,6 +1724,24 @@ var se_UpdateLFTagCommand = /* @__PURE__ */ __name(async (input, context) => {
1649
1724
  b.m("POST").h(headers).b(body);
1650
1725
  return b.build();
1651
1726
  }, "se_UpdateLFTagCommand");
1727
+ var se_UpdateLFTagExpressionCommand = /* @__PURE__ */ __name(async (input, context) => {
1728
+ const b = (0, import_core.requestBuilder)(input, context);
1729
+ const headers = {
1730
+ "content-type": "application/json"
1731
+ };
1732
+ b.bp("/UpdateLFTagExpression");
1733
+ let body;
1734
+ body = JSON.stringify(
1735
+ (0, import_smithy_client.take)(input, {
1736
+ CatalogId: [],
1737
+ Description: [],
1738
+ Expression: (_) => (0, import_smithy_client._json)(_),
1739
+ Name: []
1740
+ })
1741
+ );
1742
+ b.m("POST").h(headers).b(body);
1743
+ return b.build();
1744
+ }, "se_UpdateLFTagExpressionCommand");
1652
1745
  var se_UpdateResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
1653
1746
  const b = (0, import_core.requestBuilder)(input, context);
1654
1747
  const headers = {
@@ -1831,6 +1924,16 @@ var de_CreateLFTagCommand = /* @__PURE__ */ __name(async (output, context) => {
1831
1924
  await (0, import_smithy_client.collectBody)(output.body, context);
1832
1925
  return contents;
1833
1926
  }, "de_CreateLFTagCommand");
1927
+ var de_CreateLFTagExpressionCommand = /* @__PURE__ */ __name(async (output, context) => {
1928
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1929
+ return de_CommandError(output, context);
1930
+ }
1931
+ const contents = (0, import_smithy_client.map)({
1932
+ $metadata: deserializeMetadata(output)
1933
+ });
1934
+ await (0, import_smithy_client.collectBody)(output.body, context);
1935
+ return contents;
1936
+ }, "de_CreateLFTagExpressionCommand");
1834
1937
  var de_DeleteDataCellsFilterCommand = /* @__PURE__ */ __name(async (output, context) => {
1835
1938
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1836
1939
  return de_CommandError(output, context);
@@ -1871,6 +1974,16 @@ var de_DeleteLFTagCommand = /* @__PURE__ */ __name(async (output, context) => {
1871
1974
  await (0, import_smithy_client.collectBody)(output.body, context);
1872
1975
  return contents;
1873
1976
  }, "de_DeleteLFTagCommand");
1977
+ var de_DeleteLFTagExpressionCommand = /* @__PURE__ */ __name(async (output, context) => {
1978
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1979
+ return de_CommandError(output, context);
1980
+ }
1981
+ const contents = (0, import_smithy_client.map)({
1982
+ $metadata: deserializeMetadata(output)
1983
+ });
1984
+ await (0, import_smithy_client.collectBody)(output.body, context);
1985
+ return contents;
1986
+ }, "de_DeleteLFTagExpressionCommand");
1874
1987
  var de_DeleteObjectsOnCancelCommand = /* @__PURE__ */ __name(async (output, context) => {
1875
1988
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1876
1989
  return de_CommandError(output, context);
@@ -2021,6 +2134,23 @@ var de_GetLFTagCommand = /* @__PURE__ */ __name(async (output, context) => {
2021
2134
  Object.assign(contents, doc);
2022
2135
  return contents;
2023
2136
  }, "de_GetLFTagCommand");
2137
+ var de_GetLFTagExpressionCommand = /* @__PURE__ */ __name(async (output, context) => {
2138
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2139
+ return de_CommandError(output, context);
2140
+ }
2141
+ const contents = (0, import_smithy_client.map)({
2142
+ $metadata: deserializeMetadata(output)
2143
+ });
2144
+ const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
2145
+ const doc = (0, import_smithy_client.take)(data, {
2146
+ CatalogId: import_smithy_client.expectString,
2147
+ Description: import_smithy_client.expectString,
2148
+ Expression: import_smithy_client._json,
2149
+ Name: import_smithy_client.expectString
2150
+ });
2151
+ Object.assign(contents, doc);
2152
+ return contents;
2153
+ }, "de_GetLFTagExpressionCommand");
2024
2154
  var de_GetQueryStateCommand = /* @__PURE__ */ __name(async (output, context) => {
2025
2155
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2026
2156
  return de_CommandError(output, context);
@@ -2186,6 +2316,21 @@ var de_ListLakeFormationOptInsCommand = /* @__PURE__ */ __name(async (output, co
2186
2316
  Object.assign(contents, doc);
2187
2317
  return contents;
2188
2318
  }, "de_ListLakeFormationOptInsCommand");
2319
+ var de_ListLFTagExpressionsCommand = /* @__PURE__ */ __name(async (output, context) => {
2320
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2321
+ return de_CommandError(output, context);
2322
+ }
2323
+ const contents = (0, import_smithy_client.map)({
2324
+ $metadata: deserializeMetadata(output)
2325
+ });
2326
+ const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
2327
+ const doc = (0, import_smithy_client.take)(data, {
2328
+ LFTagExpressions: import_smithy_client._json,
2329
+ NextToken: import_smithy_client.expectString
2330
+ });
2331
+ Object.assign(contents, doc);
2332
+ return contents;
2333
+ }, "de_ListLFTagExpressionsCommand");
2189
2334
  var de_ListLFTagsCommand = /* @__PURE__ */ __name(async (output, context) => {
2190
2335
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2191
2336
  return de_CommandError(output, context);
@@ -2393,6 +2538,16 @@ var de_UpdateLFTagCommand = /* @__PURE__ */ __name(async (output, context) => {
2393
2538
  await (0, import_smithy_client.collectBody)(output.body, context);
2394
2539
  return contents;
2395
2540
  }, "de_UpdateLFTagCommand");
2541
+ var de_UpdateLFTagExpressionCommand = /* @__PURE__ */ __name(async (output, context) => {
2542
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2543
+ return de_CommandError(output, context);
2544
+ }
2545
+ const contents = (0, import_smithy_client.map)({
2546
+ $metadata: deserializeMetadata(output)
2547
+ });
2548
+ await (0, import_smithy_client.collectBody)(output.body, context);
2549
+ return contents;
2550
+ }, "de_UpdateLFTagExpressionCommand");
2396
2551
  var de_UpdateResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
2397
2552
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2398
2553
  return de_CommandError(output, context);
@@ -2954,6 +3109,20 @@ var _CreateLFTagCommand = class _CreateLFTagCommand extends import_smithy_client
2954
3109
  __name(_CreateLFTagCommand, "CreateLFTagCommand");
2955
3110
  var CreateLFTagCommand = _CreateLFTagCommand;
2956
3111
 
3112
+ // src/commands/CreateLFTagExpressionCommand.ts
3113
+
3114
+
3115
+
3116
+ var _CreateLFTagExpressionCommand = class _CreateLFTagExpressionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3117
+ return [
3118
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3119
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3120
+ ];
3121
+ }).s("AWSLakeFormation", "CreateLFTagExpression", {}).n("LakeFormationClient", "CreateLFTagExpressionCommand").f(void 0, void 0).ser(se_CreateLFTagExpressionCommand).de(de_CreateLFTagExpressionCommand).build() {
3122
+ };
3123
+ __name(_CreateLFTagExpressionCommand, "CreateLFTagExpressionCommand");
3124
+ var CreateLFTagExpressionCommand = _CreateLFTagExpressionCommand;
3125
+
2957
3126
  // src/commands/DeleteDataCellsFilterCommand.ts
2958
3127
 
2959
3128
 
@@ -3010,6 +3179,20 @@ var _DeleteLFTagCommand = class _DeleteLFTagCommand extends import_smithy_client
3010
3179
  __name(_DeleteLFTagCommand, "DeleteLFTagCommand");
3011
3180
  var DeleteLFTagCommand = _DeleteLFTagCommand;
3012
3181
 
3182
+ // src/commands/DeleteLFTagExpressionCommand.ts
3183
+
3184
+
3185
+
3186
+ var _DeleteLFTagExpressionCommand = class _DeleteLFTagExpressionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3187
+ return [
3188
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3189
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3190
+ ];
3191
+ }).s("AWSLakeFormation", "DeleteLFTagExpression", {}).n("LakeFormationClient", "DeleteLFTagExpressionCommand").f(void 0, void 0).ser(se_DeleteLFTagExpressionCommand).de(de_DeleteLFTagExpressionCommand).build() {
3192
+ };
3193
+ __name(_DeleteLFTagExpressionCommand, "DeleteLFTagExpressionCommand");
3194
+ var DeleteLFTagExpressionCommand = _DeleteLFTagExpressionCommand;
3195
+
3013
3196
  // src/commands/DeleteObjectsOnCancelCommand.ts
3014
3197
 
3015
3198
 
@@ -3164,6 +3347,20 @@ var _GetLFTagCommand = class _GetLFTagCommand extends import_smithy_client.Comma
3164
3347
  __name(_GetLFTagCommand, "GetLFTagCommand");
3165
3348
  var GetLFTagCommand = _GetLFTagCommand;
3166
3349
 
3350
+ // src/commands/GetLFTagExpressionCommand.ts
3351
+
3352
+
3353
+
3354
+ var _GetLFTagExpressionCommand = class _GetLFTagExpressionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3355
+ return [
3356
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3357
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3358
+ ];
3359
+ }).s("AWSLakeFormation", "GetLFTagExpression", {}).n("LakeFormationClient", "GetLFTagExpressionCommand").f(void 0, void 0).ser(se_GetLFTagExpressionCommand).de(de_GetLFTagExpressionCommand).build() {
3360
+ };
3361
+ __name(_GetLFTagExpressionCommand, "GetLFTagExpressionCommand");
3362
+ var GetLFTagExpressionCommand = _GetLFTagExpressionCommand;
3363
+
3167
3364
  // src/commands/GetQueryStateCommand.ts
3168
3365
 
3169
3366
 
@@ -3318,6 +3515,20 @@ var _ListLakeFormationOptInsCommand = class _ListLakeFormationOptInsCommand exte
3318
3515
  __name(_ListLakeFormationOptInsCommand, "ListLakeFormationOptInsCommand");
3319
3516
  var ListLakeFormationOptInsCommand = _ListLakeFormationOptInsCommand;
3320
3517
 
3518
+ // src/commands/ListLFTagExpressionsCommand.ts
3519
+
3520
+
3521
+
3522
+ var _ListLFTagExpressionsCommand = class _ListLFTagExpressionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3523
+ return [
3524
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3525
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3526
+ ];
3527
+ }).s("AWSLakeFormation", "ListLFTagExpressions", {}).n("LakeFormationClient", "ListLFTagExpressionsCommand").f(void 0, void 0).ser(se_ListLFTagExpressionsCommand).de(de_ListLFTagExpressionsCommand).build() {
3528
+ };
3529
+ __name(_ListLFTagExpressionsCommand, "ListLFTagExpressionsCommand");
3530
+ var ListLFTagExpressionsCommand = _ListLFTagExpressionsCommand;
3531
+
3321
3532
  // src/commands/ListLFTagsCommand.ts
3322
3533
 
3323
3534
 
@@ -3542,6 +3753,20 @@ var _UpdateLFTagCommand = class _UpdateLFTagCommand extends import_smithy_client
3542
3753
  __name(_UpdateLFTagCommand, "UpdateLFTagCommand");
3543
3754
  var UpdateLFTagCommand = _UpdateLFTagCommand;
3544
3755
 
3756
+ // src/commands/UpdateLFTagExpressionCommand.ts
3757
+
3758
+
3759
+
3760
+ var _UpdateLFTagExpressionCommand = class _UpdateLFTagExpressionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3761
+ return [
3762
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3763
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3764
+ ];
3765
+ }).s("AWSLakeFormation", "UpdateLFTagExpression", {}).n("LakeFormationClient", "UpdateLFTagExpressionCommand").f(void 0, void 0).ser(se_UpdateLFTagExpressionCommand).de(de_UpdateLFTagExpressionCommand).build() {
3766
+ };
3767
+ __name(_UpdateLFTagExpressionCommand, "UpdateLFTagExpressionCommand");
3768
+ var UpdateLFTagExpressionCommand = _UpdateLFTagExpressionCommand;
3769
+
3545
3770
  // src/commands/UpdateResourceCommand.ts
3546
3771
 
3547
3772
 
@@ -3596,10 +3821,12 @@ var commands = {
3596
3821
  CreateLakeFormationIdentityCenterConfigurationCommand,
3597
3822
  CreateLakeFormationOptInCommand,
3598
3823
  CreateLFTagCommand,
3824
+ CreateLFTagExpressionCommand,
3599
3825
  DeleteDataCellsFilterCommand,
3600
3826
  DeleteLakeFormationIdentityCenterConfigurationCommand,
3601
3827
  DeleteLakeFormationOptInCommand,
3602
3828
  DeleteLFTagCommand,
3829
+ DeleteLFTagExpressionCommand,
3603
3830
  DeleteObjectsOnCancelCommand,
3604
3831
  DeregisterResourceCommand,
3605
3832
  DescribeLakeFormationIdentityCenterConfigurationCommand,
@@ -3611,6 +3838,7 @@ var commands = {
3611
3838
  GetDataLakeSettingsCommand,
3612
3839
  GetEffectivePermissionsForPathCommand,
3613
3840
  GetLFTagCommand,
3841
+ GetLFTagExpressionCommand,
3614
3842
  GetQueryStateCommand,
3615
3843
  GetQueryStatisticsCommand,
3616
3844
  GetResourceLFTagsCommand,
@@ -3622,6 +3850,7 @@ var commands = {
3622
3850
  GrantPermissionsCommand,
3623
3851
  ListDataCellsFilterCommand,
3624
3852
  ListLakeFormationOptInsCommand,
3853
+ ListLFTagExpressionsCommand,
3625
3854
  ListLFTagsCommand,
3626
3855
  ListPermissionsCommand,
3627
3856
  ListResourcesCommand,
@@ -3638,6 +3867,7 @@ var commands = {
3638
3867
  UpdateDataCellsFilterCommand,
3639
3868
  UpdateLakeFormationIdentityCenterConfigurationCommand,
3640
3869
  UpdateLFTagCommand,
3870
+ UpdateLFTagExpressionCommand,
3641
3871
  UpdateResourceCommand,
3642
3872
  UpdateTableObjectsCommand,
3643
3873
  UpdateTableStorageOptimizerCommand
@@ -3664,6 +3894,10 @@ var paginateGetWorkUnits = (0, import_core.createPaginator)(LakeFormationClient,
3664
3894
 
3665
3895
  var paginateListDataCellsFilter = (0, import_core.createPaginator)(LakeFormationClient, ListDataCellsFilterCommand, "NextToken", "NextToken", "MaxResults");
3666
3896
 
3897
+ // src/pagination/ListLFTagExpressionsPaginator.ts
3898
+
3899
+ var paginateListLFTagExpressions = (0, import_core.createPaginator)(LakeFormationClient, ListLFTagExpressionsCommand, "NextToken", "NextToken", "MaxResults");
3900
+
3667
3901
  // src/pagination/ListLFTagsPaginator.ts
3668
3902
 
3669
3903
  var paginateListLFTags = (0, import_core.createPaginator)(LakeFormationClient, ListLFTagsCommand, "NextToken", "NextToken", "MaxResults");
@@ -3711,10 +3945,12 @@ var paginateSearchTablesByLFTags = (0, import_core.createPaginator)(LakeFormatio
3711
3945
  CommitTransactionCommand,
3712
3946
  CreateDataCellsFilterCommand,
3713
3947
  CreateLFTagCommand,
3948
+ CreateLFTagExpressionCommand,
3714
3949
  CreateLakeFormationIdentityCenterConfigurationCommand,
3715
3950
  CreateLakeFormationOptInCommand,
3716
3951
  DeleteDataCellsFilterCommand,
3717
3952
  DeleteLFTagCommand,
3953
+ DeleteLFTagExpressionCommand,
3718
3954
  DeleteLakeFormationIdentityCenterConfigurationCommand,
3719
3955
  DeleteLakeFormationOptInCommand,
3720
3956
  DeleteObjectsOnCancelCommand,
@@ -3728,6 +3964,7 @@ var paginateSearchTablesByLFTags = (0, import_core.createPaginator)(LakeFormatio
3728
3964
  GetDataLakeSettingsCommand,
3729
3965
  GetEffectivePermissionsForPathCommand,
3730
3966
  GetLFTagCommand,
3967
+ GetLFTagExpressionCommand,
3731
3968
  GetQueryStateCommand,
3732
3969
  GetQueryStatisticsCommand,
3733
3970
  GetResourceLFTagsCommand,
@@ -3738,6 +3975,7 @@ var paginateSearchTablesByLFTags = (0, import_core.createPaginator)(LakeFormatio
3738
3975
  GetWorkUnitsCommand,
3739
3976
  GrantPermissionsCommand,
3740
3977
  ListDataCellsFilterCommand,
3978
+ ListLFTagExpressionsCommand,
3741
3979
  ListLFTagsCommand,
3742
3980
  ListLakeFormationOptInsCommand,
3743
3981
  ListPermissionsCommand,
@@ -3754,6 +3992,7 @@ var paginateSearchTablesByLFTags = (0, import_core.createPaginator)(LakeFormatio
3754
3992
  StartTransactionCommand,
3755
3993
  UpdateDataCellsFilterCommand,
3756
3994
  UpdateLFTagCommand,
3995
+ UpdateLFTagExpressionCommand,
3757
3996
  UpdateLakeFormationIdentityCenterConfigurationCommand,
3758
3997
  UpdateResourceCommand,
3759
3998
  UpdateTableObjectsCommand,
@@ -3762,6 +4001,7 @@ var paginateSearchTablesByLFTags = (0, import_core.createPaginator)(LakeFormatio
3762
4001
  paginateGetTableObjects,
3763
4002
  paginateGetWorkUnits,
3764
4003
  paginateListDataCellsFilter,
4004
+ paginateListLFTagExpressions,
3765
4005
  paginateListLFTags,
3766
4006
  paginateListLakeFormationOptIns,
3767
4007
  paginateListPermissions,
@@ -9,10 +9,12 @@ import { CreateDataCellsFilterCommand, } from "./commands/CreateDataCellsFilterC
9
9
  import { CreateLakeFormationIdentityCenterConfigurationCommand, } from "./commands/CreateLakeFormationIdentityCenterConfigurationCommand";
10
10
  import { CreateLakeFormationOptInCommand, } from "./commands/CreateLakeFormationOptInCommand";
11
11
  import { CreateLFTagCommand } from "./commands/CreateLFTagCommand";
12
+ import { CreateLFTagExpressionCommand, } from "./commands/CreateLFTagExpressionCommand";
12
13
  import { DeleteDataCellsFilterCommand, } from "./commands/DeleteDataCellsFilterCommand";
13
14
  import { DeleteLakeFormationIdentityCenterConfigurationCommand, } from "./commands/DeleteLakeFormationIdentityCenterConfigurationCommand";
14
15
  import { DeleteLakeFormationOptInCommand, } from "./commands/DeleteLakeFormationOptInCommand";
15
16
  import { DeleteLFTagCommand } from "./commands/DeleteLFTagCommand";
17
+ import { DeleteLFTagExpressionCommand, } from "./commands/DeleteLFTagExpressionCommand";
16
18
  import { DeleteObjectsOnCancelCommand, } from "./commands/DeleteObjectsOnCancelCommand";
17
19
  import { DeregisterResourceCommand, } from "./commands/DeregisterResourceCommand";
18
20
  import { DescribeLakeFormationIdentityCenterConfigurationCommand, } from "./commands/DescribeLakeFormationIdentityCenterConfigurationCommand";
@@ -24,6 +26,7 @@ import { GetDataLakePrincipalCommand, } from "./commands/GetDataLakePrincipalCom
24
26
  import { GetDataLakeSettingsCommand, } from "./commands/GetDataLakeSettingsCommand";
25
27
  import { GetEffectivePermissionsForPathCommand, } from "./commands/GetEffectivePermissionsForPathCommand";
26
28
  import { GetLFTagCommand } from "./commands/GetLFTagCommand";
29
+ import { GetLFTagExpressionCommand, } from "./commands/GetLFTagExpressionCommand";
27
30
  import { GetQueryStateCommand, } from "./commands/GetQueryStateCommand";
28
31
  import { GetQueryStatisticsCommand, } from "./commands/GetQueryStatisticsCommand";
29
32
  import { GetResourceLFTagsCommand, } from "./commands/GetResourceLFTagsCommand";
@@ -35,6 +38,7 @@ import { GetWorkUnitsCommand, } from "./commands/GetWorkUnitsCommand";
35
38
  import { GrantPermissionsCommand, } from "./commands/GrantPermissionsCommand";
36
39
  import { ListDataCellsFilterCommand, } from "./commands/ListDataCellsFilterCommand";
37
40
  import { ListLakeFormationOptInsCommand, } from "./commands/ListLakeFormationOptInsCommand";
41
+ import { ListLFTagExpressionsCommand, } from "./commands/ListLFTagExpressionsCommand";
38
42
  import { ListLFTagsCommand } from "./commands/ListLFTagsCommand";
39
43
  import { ListPermissionsCommand, } from "./commands/ListPermissionsCommand";
40
44
  import { ListResourcesCommand, } from "./commands/ListResourcesCommand";
@@ -51,6 +55,7 @@ import { StartTransactionCommand, } from "./commands/StartTransactionCommand";
51
55
  import { UpdateDataCellsFilterCommand, } from "./commands/UpdateDataCellsFilterCommand";
52
56
  import { UpdateLakeFormationIdentityCenterConfigurationCommand, } from "./commands/UpdateLakeFormationIdentityCenterConfigurationCommand";
53
57
  import { UpdateLFTagCommand } from "./commands/UpdateLFTagCommand";
58
+ import { UpdateLFTagExpressionCommand, } from "./commands/UpdateLFTagExpressionCommand";
54
59
  import { UpdateResourceCommand, } from "./commands/UpdateResourceCommand";
55
60
  import { UpdateTableObjectsCommand, } from "./commands/UpdateTableObjectsCommand";
56
61
  import { UpdateTableStorageOptimizerCommand, } from "./commands/UpdateTableStorageOptimizerCommand";
@@ -66,10 +71,12 @@ const commands = {
66
71
  CreateLakeFormationIdentityCenterConfigurationCommand,
67
72
  CreateLakeFormationOptInCommand,
68
73
  CreateLFTagCommand,
74
+ CreateLFTagExpressionCommand,
69
75
  DeleteDataCellsFilterCommand,
70
76
  DeleteLakeFormationIdentityCenterConfigurationCommand,
71
77
  DeleteLakeFormationOptInCommand,
72
78
  DeleteLFTagCommand,
79
+ DeleteLFTagExpressionCommand,
73
80
  DeleteObjectsOnCancelCommand,
74
81
  DeregisterResourceCommand,
75
82
  DescribeLakeFormationIdentityCenterConfigurationCommand,
@@ -81,6 +88,7 @@ const commands = {
81
88
  GetDataLakeSettingsCommand,
82
89
  GetEffectivePermissionsForPathCommand,
83
90
  GetLFTagCommand,
91
+ GetLFTagExpressionCommand,
84
92
  GetQueryStateCommand,
85
93
  GetQueryStatisticsCommand,
86
94
  GetResourceLFTagsCommand,
@@ -92,6 +100,7 @@ const commands = {
92
100
  GrantPermissionsCommand,
93
101
  ListDataCellsFilterCommand,
94
102
  ListLakeFormationOptInsCommand,
103
+ ListLFTagExpressionsCommand,
95
104
  ListLFTagsCommand,
96
105
  ListPermissionsCommand,
97
106
  ListResourcesCommand,
@@ -108,6 +117,7 @@ const commands = {
108
117
  UpdateDataCellsFilterCommand,
109
118
  UpdateLakeFormationIdentityCenterConfigurationCommand,
110
119
  UpdateLFTagCommand,
120
+ UpdateLFTagExpressionCommand,
111
121
  UpdateResourceCommand,
112
122
  UpdateTableObjectsCommand,
113
123
  UpdateTableStorageOptimizerCommand,
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_CreateLFTagExpressionCommand, se_CreateLFTagExpressionCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class CreateLFTagExpressionCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("AWSLakeFormation", "CreateLFTagExpression", {})
17
+ .n("LakeFormationClient", "CreateLFTagExpressionCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_CreateLFTagExpressionCommand)
20
+ .de(de_CreateLFTagExpressionCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_DeleteLFTagExpressionCommand, se_DeleteLFTagExpressionCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class DeleteLFTagExpressionCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("AWSLakeFormation", "DeleteLFTagExpression", {})
17
+ .n("LakeFormationClient", "DeleteLFTagExpressionCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_DeleteLFTagExpressionCommand)
20
+ .de(de_DeleteLFTagExpressionCommand)
21
+ .build() {
22
+ }