@aws-sdk/client-lakeformation 3.451.0 → 3.458.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 (36) hide show
  1. package/README.md +82 -50
  2. package/dist-cjs/LakeFormation.js +8 -0
  3. package/dist-cjs/commands/CreateLakeFormationIdentityCenterConfigurationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.js +51 -0
  6. package/dist-cjs/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.js +51 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +9 -1
  9. package/dist-cjs/protocols/Aws_restJson1.js +283 -2
  10. package/dist-es/LakeFormation.js +8 -0
  11. package/dist-es/commands/CreateLakeFormationIdentityCenterConfigurationCommand.js +47 -0
  12. package/dist-es/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.js +47 -0
  13. package/dist-es/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.js +47 -0
  14. package/dist-es/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.js +47 -0
  15. package/dist-es/commands/index.js +4 -0
  16. package/dist-es/models/models_0.js +8 -0
  17. package/dist-es/protocols/Aws_restJson1.js +272 -0
  18. package/dist-types/LakeFormation.d.ts +28 -0
  19. package/dist-types/LakeFormationClient.d.ts +6 -2
  20. package/dist-types/commands/CreateLakeFormationIdentityCenterConfigurationCommand.d.ts +98 -0
  21. package/dist-types/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.d.ts +89 -0
  22. package/dist-types/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.d.ts +96 -0
  23. package/dist-types/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.d.ts +96 -0
  24. package/dist-types/commands/index.d.ts +4 -0
  25. package/dist-types/models/models_0.d.ts +161 -2
  26. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  27. package/dist-types/ts3.4/LakeFormation.d.ts +92 -0
  28. package/dist-types/ts3.4/LakeFormationClient.d.ts +24 -0
  29. package/dist-types/ts3.4/commands/CreateLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
  30. package/dist-types/ts3.4/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
  31. package/dist-types/ts3.4/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
  32. package/dist-types/ts3.4/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +42 -0
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  36. package/package.json +3 -3
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateLakeFormationIdentityCenterConfigurationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class CreateLakeFormationIdentityCenterConfigurationCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateLakeFormationIdentityCenterConfigurationCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "LakeFormationClient";
29
+ const commandName = "CreateLakeFormationIdentityCenterConfigurationCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSLakeFormation",
38
+ operation: "CreateLakeFormationIdentityCenterConfiguration",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_CreateLakeFormationIdentityCenterConfigurationCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_CreateLakeFormationIdentityCenterConfigurationCommand)(output, context);
49
+ }
50
+ }
51
+ exports.CreateLakeFormationIdentityCenterConfigurationCommand = CreateLakeFormationIdentityCenterConfigurationCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteLakeFormationIdentityCenterConfigurationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteLakeFormationIdentityCenterConfigurationCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteLakeFormationIdentityCenterConfigurationCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "LakeFormationClient";
29
+ const commandName = "DeleteLakeFormationIdentityCenterConfigurationCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSLakeFormation",
38
+ operation: "DeleteLakeFormationIdentityCenterConfiguration",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_DeleteLakeFormationIdentityCenterConfigurationCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_DeleteLakeFormationIdentityCenterConfigurationCommand)(output, context);
49
+ }
50
+ }
51
+ exports.DeleteLakeFormationIdentityCenterConfigurationCommand = DeleteLakeFormationIdentityCenterConfigurationCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DescribeLakeFormationIdentityCenterConfigurationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DescribeLakeFormationIdentityCenterConfigurationCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeLakeFormationIdentityCenterConfigurationCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "LakeFormationClient";
29
+ const commandName = "DescribeLakeFormationIdentityCenterConfigurationCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSLakeFormation",
38
+ operation: "DescribeLakeFormationIdentityCenterConfiguration",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_DescribeLakeFormationIdentityCenterConfigurationCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_DescribeLakeFormationIdentityCenterConfigurationCommand)(output, context);
49
+ }
50
+ }
51
+ exports.DescribeLakeFormationIdentityCenterConfigurationCommand = DescribeLakeFormationIdentityCenterConfigurationCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateLakeFormationIdentityCenterConfigurationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class UpdateLakeFormationIdentityCenterConfigurationCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateLakeFormationIdentityCenterConfigurationCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "LakeFormationClient";
29
+ const commandName = "UpdateLakeFormationIdentityCenterConfigurationCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSLakeFormation",
38
+ operation: "UpdateLakeFormationIdentityCenterConfiguration",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_UpdateLakeFormationIdentityCenterConfigurationCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_UpdateLakeFormationIdentityCenterConfigurationCommand)(output, context);
49
+ }
50
+ }
51
+ exports.UpdateLakeFormationIdentityCenterConfigurationCommand = UpdateLakeFormationIdentityCenterConfigurationCommand;
@@ -9,12 +9,15 @@ tslib_1.__exportStar(require("./CancelTransactionCommand"), exports);
9
9
  tslib_1.__exportStar(require("./CommitTransactionCommand"), exports);
10
10
  tslib_1.__exportStar(require("./CreateDataCellsFilterCommand"), exports);
11
11
  tslib_1.__exportStar(require("./CreateLFTagCommand"), exports);
12
+ tslib_1.__exportStar(require("./CreateLakeFormationIdentityCenterConfigurationCommand"), exports);
12
13
  tslib_1.__exportStar(require("./CreateLakeFormationOptInCommand"), exports);
13
14
  tslib_1.__exportStar(require("./DeleteDataCellsFilterCommand"), exports);
14
15
  tslib_1.__exportStar(require("./DeleteLFTagCommand"), exports);
16
+ tslib_1.__exportStar(require("./DeleteLakeFormationIdentityCenterConfigurationCommand"), exports);
15
17
  tslib_1.__exportStar(require("./DeleteLakeFormationOptInCommand"), exports);
16
18
  tslib_1.__exportStar(require("./DeleteObjectsOnCancelCommand"), exports);
17
19
  tslib_1.__exportStar(require("./DeregisterResourceCommand"), exports);
20
+ tslib_1.__exportStar(require("./DescribeLakeFormationIdentityCenterConfigurationCommand"), exports);
18
21
  tslib_1.__exportStar(require("./DescribeResourceCommand"), exports);
19
22
  tslib_1.__exportStar(require("./DescribeTransactionCommand"), exports);
20
23
  tslib_1.__exportStar(require("./ExtendTransactionCommand"), exports);
@@ -48,6 +51,7 @@ tslib_1.__exportStar(require("./StartQueryPlanningCommand"), exports);
48
51
  tslib_1.__exportStar(require("./StartTransactionCommand"), exports);
49
52
  tslib_1.__exportStar(require("./UpdateDataCellsFilterCommand"), exports);
50
53
  tslib_1.__exportStar(require("./UpdateLFTagCommand"), exports);
54
+ tslib_1.__exportStar(require("./UpdateLakeFormationIdentityCenterConfigurationCommand"), exports);
51
55
  tslib_1.__exportStar(require("./UpdateResourceCommand"), exports);
52
56
  tslib_1.__exportStar(require("./UpdateTableObjectsCommand"), exports);
53
57
  tslib_1.__exportStar(require("./UpdateTableStorageOptimizerCommand"), exports);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartQueryPlanningRequestFilterSensitiveLog = exports.GetWorkUnitResultsResponseFilterSensitiveLog = exports.GetWorkUnitResultsRequestFilterSensitiveLog = exports.TransactionType = exports.TransactionStatusFilter = exports.OptimizerType = exports.FieldNameString = exports.ComparisonOperator = exports.DataLakeResourceType = exports.ResourceShareType = exports.WorkUnitsNotReadyYetException = exports.PermissionTypeMismatchException = exports.PermissionType = exports.GlueEncryptionException = exports.ThrottledException = exports.StatisticsNotReadyYetException = exports.ExpiredException = exports.QueryStateString = exports.ResourceNotReadyException = exports.ResourceNumberLimitExceededException = exports.TransactionCanceledException = exports.TransactionStatus = exports.TransactionCommittedException = exports.TransactionCommitInProgressException = exports.Permission = exports.AlreadyExistsException = exports.OperationTimeoutException = exports.InvalidInputException = exports.InternalServiceException = exports.EntityNotFoundException = exports.ConcurrentModificationException = exports.ResourceType = exports.AccessDeniedException = void 0;
3
+ exports.StartQueryPlanningRequestFilterSensitiveLog = exports.GetWorkUnitResultsResponseFilterSensitiveLog = exports.GetWorkUnitResultsRequestFilterSensitiveLog = exports.TransactionType = exports.TransactionStatusFilter = exports.OptimizerType = exports.FieldNameString = exports.ComparisonOperator = exports.DataLakeResourceType = exports.ResourceShareType = exports.WorkUnitsNotReadyYetException = exports.PermissionTypeMismatchException = exports.PermissionType = exports.GlueEncryptionException = exports.ThrottledException = exports.StatisticsNotReadyYetException = exports.ExpiredException = exports.QueryStateString = exports.ResourceNotReadyException = exports.EnableStatus = exports.ResourceNumberLimitExceededException = exports.TransactionCanceledException = exports.TransactionStatus = exports.TransactionCommittedException = exports.TransactionCommitInProgressException = exports.Permission = exports.ApplicationStatus = exports.AlreadyExistsException = exports.OperationTimeoutException = exports.InvalidInputException = exports.InternalServiceException = exports.EntityNotFoundException = exports.ConcurrentModificationException = exports.ResourceType = exports.AccessDeniedException = void 0;
4
4
  const smithy_client_1 = require("@smithy/smithy-client");
5
5
  const LakeFormationServiceException_1 = require("./LakeFormationServiceException");
6
6
  class AccessDeniedException extends LakeFormationServiceException_1.LakeFormationServiceException {
@@ -105,6 +105,10 @@ class AlreadyExistsException extends LakeFormationServiceException_1.LakeFormati
105
105
  }
106
106
  }
107
107
  exports.AlreadyExistsException = AlreadyExistsException;
108
+ exports.ApplicationStatus = {
109
+ DISABLED: "DISABLED",
110
+ ENABLED: "ENABLED",
111
+ };
108
112
  exports.Permission = {
109
113
  ALL: "ALL",
110
114
  ALTER: "ALTER",
@@ -182,6 +186,10 @@ class ResourceNumberLimitExceededException extends LakeFormationServiceException
182
186
  }
183
187
  }
184
188
  exports.ResourceNumberLimitExceededException = ResourceNumberLimitExceededException;
189
+ exports.EnableStatus = {
190
+ DISABLED: "DISABLED",
191
+ ENABLED: "ENABLED",
192
+ };
185
193
  class ResourceNotReadyException extends LakeFormationServiceException_1.LakeFormationServiceException {
186
194
  constructor(opts) {
187
195
  super({
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.se_UpdateTableStorageOptimizerCommand = exports.se_UpdateTableObjectsCommand = exports.se_UpdateResourceCommand = exports.se_UpdateLFTagCommand = exports.se_UpdateDataCellsFilterCommand = exports.se_StartTransactionCommand = exports.se_StartQueryPlanningCommand = exports.se_SearchTablesByLFTagsCommand = exports.se_SearchDatabasesByLFTagsCommand = exports.se_RevokePermissionsCommand = exports.se_RemoveLFTagsFromResourceCommand = exports.se_RegisterResourceCommand = exports.se_PutDataLakeSettingsCommand = exports.se_ListTransactionsCommand = exports.se_ListTableStorageOptimizersCommand = exports.se_ListResourcesCommand = exports.se_ListPermissionsCommand = exports.se_ListLFTagsCommand = exports.se_ListLakeFormationOptInsCommand = exports.se_ListDataCellsFilterCommand = exports.se_GrantPermissionsCommand = exports.se_GetWorkUnitsCommand = exports.se_GetWorkUnitResultsCommand = exports.se_GetTemporaryGlueTableCredentialsCommand = exports.se_GetTemporaryGluePartitionCredentialsCommand = exports.se_GetTableObjectsCommand = exports.se_GetResourceLFTagsCommand = exports.se_GetQueryStatisticsCommand = exports.se_GetQueryStateCommand = exports.se_GetLFTagCommand = exports.se_GetEffectivePermissionsForPathCommand = exports.se_GetDataLakeSettingsCommand = exports.se_GetDataCellsFilterCommand = exports.se_ExtendTransactionCommand = exports.se_DescribeTransactionCommand = exports.se_DescribeResourceCommand = exports.se_DeregisterResourceCommand = exports.se_DeleteObjectsOnCancelCommand = exports.se_DeleteLFTagCommand = exports.se_DeleteLakeFormationOptInCommand = exports.se_DeleteDataCellsFilterCommand = exports.se_CreateLFTagCommand = exports.se_CreateLakeFormationOptInCommand = exports.se_CreateDataCellsFilterCommand = exports.se_CommitTransactionCommand = exports.se_CancelTransactionCommand = exports.se_BatchRevokePermissionsCommand = exports.se_BatchGrantPermissionsCommand = exports.se_AssumeDecoratedRoleWithSAMLCommand = exports.se_AddLFTagsToResourceCommand = void 0;
4
- exports.de_UpdateTableStorageOptimizerCommand = exports.de_UpdateTableObjectsCommand = exports.de_UpdateResourceCommand = exports.de_UpdateLFTagCommand = exports.de_UpdateDataCellsFilterCommand = exports.de_StartTransactionCommand = exports.de_StartQueryPlanningCommand = exports.de_SearchTablesByLFTagsCommand = exports.de_SearchDatabasesByLFTagsCommand = exports.de_RevokePermissionsCommand = exports.de_RemoveLFTagsFromResourceCommand = exports.de_RegisterResourceCommand = exports.de_PutDataLakeSettingsCommand = exports.de_ListTransactionsCommand = exports.de_ListTableStorageOptimizersCommand = exports.de_ListResourcesCommand = exports.de_ListPermissionsCommand = exports.de_ListLFTagsCommand = exports.de_ListLakeFormationOptInsCommand = exports.de_ListDataCellsFilterCommand = exports.de_GrantPermissionsCommand = exports.de_GetWorkUnitsCommand = exports.de_GetWorkUnitResultsCommand = exports.de_GetTemporaryGlueTableCredentialsCommand = exports.de_GetTemporaryGluePartitionCredentialsCommand = exports.de_GetTableObjectsCommand = exports.de_GetResourceLFTagsCommand = exports.de_GetQueryStatisticsCommand = exports.de_GetQueryStateCommand = exports.de_GetLFTagCommand = exports.de_GetEffectivePermissionsForPathCommand = exports.de_GetDataLakeSettingsCommand = exports.de_GetDataCellsFilterCommand = exports.de_ExtendTransactionCommand = exports.de_DescribeTransactionCommand = exports.de_DescribeResourceCommand = exports.de_DeregisterResourceCommand = exports.de_DeleteObjectsOnCancelCommand = exports.de_DeleteLFTagCommand = exports.de_DeleteLakeFormationOptInCommand = exports.de_DeleteDataCellsFilterCommand = exports.de_CreateLFTagCommand = exports.de_CreateLakeFormationOptInCommand = exports.de_CreateDataCellsFilterCommand = exports.de_CommitTransactionCommand = exports.de_CancelTransactionCommand = exports.de_BatchRevokePermissionsCommand = exports.de_BatchGrantPermissionsCommand = exports.de_AssumeDecoratedRoleWithSAMLCommand = exports.de_AddLFTagsToResourceCommand = void 0;
3
+ exports.se_UpdateLakeFormationIdentityCenterConfigurationCommand = exports.se_UpdateDataCellsFilterCommand = exports.se_StartTransactionCommand = exports.se_StartQueryPlanningCommand = exports.se_SearchTablesByLFTagsCommand = exports.se_SearchDatabasesByLFTagsCommand = exports.se_RevokePermissionsCommand = exports.se_RemoveLFTagsFromResourceCommand = exports.se_RegisterResourceCommand = exports.se_PutDataLakeSettingsCommand = exports.se_ListTransactionsCommand = exports.se_ListTableStorageOptimizersCommand = exports.se_ListResourcesCommand = exports.se_ListPermissionsCommand = exports.se_ListLFTagsCommand = exports.se_ListLakeFormationOptInsCommand = exports.se_ListDataCellsFilterCommand = exports.se_GrantPermissionsCommand = exports.se_GetWorkUnitsCommand = exports.se_GetWorkUnitResultsCommand = exports.se_GetTemporaryGlueTableCredentialsCommand = exports.se_GetTemporaryGluePartitionCredentialsCommand = exports.se_GetTableObjectsCommand = exports.se_GetResourceLFTagsCommand = exports.se_GetQueryStatisticsCommand = exports.se_GetQueryStateCommand = exports.se_GetLFTagCommand = exports.se_GetEffectivePermissionsForPathCommand = exports.se_GetDataLakeSettingsCommand = exports.se_GetDataCellsFilterCommand = exports.se_ExtendTransactionCommand = exports.se_DescribeTransactionCommand = exports.se_DescribeResourceCommand = exports.se_DescribeLakeFormationIdentityCenterConfigurationCommand = exports.se_DeregisterResourceCommand = exports.se_DeleteObjectsOnCancelCommand = exports.se_DeleteLFTagCommand = exports.se_DeleteLakeFormationOptInCommand = exports.se_DeleteLakeFormationIdentityCenterConfigurationCommand = exports.se_DeleteDataCellsFilterCommand = exports.se_CreateLFTagCommand = exports.se_CreateLakeFormationOptInCommand = exports.se_CreateLakeFormationIdentityCenterConfigurationCommand = exports.se_CreateDataCellsFilterCommand = exports.se_CommitTransactionCommand = exports.se_CancelTransactionCommand = exports.se_BatchRevokePermissionsCommand = exports.se_BatchGrantPermissionsCommand = exports.se_AssumeDecoratedRoleWithSAMLCommand = exports.se_AddLFTagsToResourceCommand = void 0;
4
+ exports.de_SearchTablesByLFTagsCommand = exports.de_SearchDatabasesByLFTagsCommand = exports.de_RevokePermissionsCommand = exports.de_RemoveLFTagsFromResourceCommand = exports.de_RegisterResourceCommand = exports.de_PutDataLakeSettingsCommand = exports.de_ListTransactionsCommand = exports.de_ListTableStorageOptimizersCommand = exports.de_ListResourcesCommand = exports.de_ListPermissionsCommand = exports.de_ListLFTagsCommand = exports.de_ListLakeFormationOptInsCommand = exports.de_ListDataCellsFilterCommand = exports.de_GrantPermissionsCommand = exports.de_GetWorkUnitsCommand = exports.de_GetWorkUnitResultsCommand = exports.de_GetTemporaryGlueTableCredentialsCommand = exports.de_GetTemporaryGluePartitionCredentialsCommand = exports.de_GetTableObjectsCommand = exports.de_GetResourceLFTagsCommand = exports.de_GetQueryStatisticsCommand = exports.de_GetQueryStateCommand = exports.de_GetLFTagCommand = exports.de_GetEffectivePermissionsForPathCommand = exports.de_GetDataLakeSettingsCommand = exports.de_GetDataCellsFilterCommand = exports.de_ExtendTransactionCommand = exports.de_DescribeTransactionCommand = exports.de_DescribeResourceCommand = exports.de_DescribeLakeFormationIdentityCenterConfigurationCommand = exports.de_DeregisterResourceCommand = exports.de_DeleteObjectsOnCancelCommand = exports.de_DeleteLFTagCommand = exports.de_DeleteLakeFormationOptInCommand = exports.de_DeleteLakeFormationIdentityCenterConfigurationCommand = exports.de_DeleteDataCellsFilterCommand = exports.de_CreateLFTagCommand = exports.de_CreateLakeFormationOptInCommand = exports.de_CreateLakeFormationIdentityCenterConfigurationCommand = exports.de_CreateDataCellsFilterCommand = exports.de_CommitTransactionCommand = exports.de_CancelTransactionCommand = exports.de_BatchRevokePermissionsCommand = exports.de_BatchGrantPermissionsCommand = exports.de_AssumeDecoratedRoleWithSAMLCommand = exports.de_AddLFTagsToResourceCommand = exports.se_UpdateTableStorageOptimizerCommand = exports.se_UpdateTableObjectsCommand = exports.se_UpdateResourceCommand = exports.se_UpdateLFTagCommand = void 0;
5
+ exports.de_UpdateTableStorageOptimizerCommand = exports.de_UpdateTableObjectsCommand = exports.de_UpdateResourceCommand = exports.de_UpdateLFTagCommand = exports.de_UpdateLakeFormationIdentityCenterConfigurationCommand = exports.de_UpdateDataCellsFilterCommand = exports.de_StartTransactionCommand = exports.de_StartQueryPlanningCommand = void 0;
5
6
  const protocol_http_1 = require("@smithy/protocol-http");
6
7
  const smithy_client_1 = require("@smithy/smithy-client");
7
8
  const LakeFormationServiceException_1 = require("../models/LakeFormationServiceException");
@@ -160,6 +161,30 @@ const se_CreateDataCellsFilterCommand = async (input, context) => {
160
161
  });
161
162
  };
162
163
  exports.se_CreateDataCellsFilterCommand = se_CreateDataCellsFilterCommand;
164
+ const se_CreateLakeFormationIdentityCenterConfigurationCommand = async (input, context) => {
165
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
166
+ const headers = {
167
+ "content-type": "application/json",
168
+ };
169
+ const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
170
+ "/CreateLakeFormationIdentityCenterConfiguration";
171
+ let body;
172
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
173
+ CatalogId: [],
174
+ ExternalFiltering: (_) => (0, smithy_client_1._json)(_),
175
+ InstanceArn: [],
176
+ }));
177
+ return new protocol_http_1.HttpRequest({
178
+ protocol,
179
+ hostname,
180
+ port,
181
+ method: "POST",
182
+ headers,
183
+ path: resolvedPath,
184
+ body,
185
+ });
186
+ };
187
+ exports.se_CreateLakeFormationIdentityCenterConfigurationCommand = se_CreateLakeFormationIdentityCenterConfigurationCommand;
163
188
  const se_CreateLakeFormationOptInCommand = async (input, context) => {
164
189
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
165
190
  const headers = {
@@ -229,6 +254,28 @@ const se_DeleteDataCellsFilterCommand = async (input, context) => {
229
254
  });
230
255
  };
231
256
  exports.se_DeleteDataCellsFilterCommand = se_DeleteDataCellsFilterCommand;
257
+ const se_DeleteLakeFormationIdentityCenterConfigurationCommand = async (input, context) => {
258
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
259
+ const headers = {
260
+ "content-type": "application/json",
261
+ };
262
+ const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
263
+ "/DeleteLakeFormationIdentityCenterConfiguration";
264
+ let body;
265
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
266
+ CatalogId: [],
267
+ }));
268
+ return new protocol_http_1.HttpRequest({
269
+ protocol,
270
+ hostname,
271
+ port,
272
+ method: "POST",
273
+ headers,
274
+ path: resolvedPath,
275
+ body,
276
+ });
277
+ };
278
+ exports.se_DeleteLakeFormationIdentityCenterConfigurationCommand = se_DeleteLakeFormationIdentityCenterConfigurationCommand;
232
279
  const se_DeleteLakeFormationOptInCommand = async (input, context) => {
233
280
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
234
281
  const headers = {
@@ -319,6 +366,28 @@ const se_DeregisterResourceCommand = async (input, context) => {
319
366
  });
320
367
  };
321
368
  exports.se_DeregisterResourceCommand = se_DeregisterResourceCommand;
369
+ const se_DescribeLakeFormationIdentityCenterConfigurationCommand = async (input, context) => {
370
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
371
+ const headers = {
372
+ "content-type": "application/json",
373
+ };
374
+ const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
375
+ "/DescribeLakeFormationIdentityCenterConfiguration";
376
+ let body;
377
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
378
+ CatalogId: [],
379
+ }));
380
+ return new protocol_http_1.HttpRequest({
381
+ protocol,
382
+ hostname,
383
+ port,
384
+ method: "POST",
385
+ headers,
386
+ path: resolvedPath,
387
+ body,
388
+ });
389
+ };
390
+ exports.se_DescribeLakeFormationIdentityCenterConfigurationCommand = se_DescribeLakeFormationIdentityCenterConfigurationCommand;
322
391
  const se_DescribeResourceCommand = async (input, context) => {
323
392
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
324
393
  const headers = {
@@ -1101,6 +1170,30 @@ const se_UpdateDataCellsFilterCommand = async (input, context) => {
1101
1170
  });
1102
1171
  };
1103
1172
  exports.se_UpdateDataCellsFilterCommand = se_UpdateDataCellsFilterCommand;
1173
+ const se_UpdateLakeFormationIdentityCenterConfigurationCommand = async (input, context) => {
1174
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
1175
+ const headers = {
1176
+ "content-type": "application/json",
1177
+ };
1178
+ const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
1179
+ "/UpdateLakeFormationIdentityCenterConfiguration";
1180
+ let body;
1181
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
1182
+ ApplicationStatus: [],
1183
+ CatalogId: [],
1184
+ ExternalFiltering: (_) => (0, smithy_client_1._json)(_),
1185
+ }));
1186
+ return new protocol_http_1.HttpRequest({
1187
+ protocol,
1188
+ hostname,
1189
+ port,
1190
+ method: "POST",
1191
+ headers,
1192
+ path: resolvedPath,
1193
+ body,
1194
+ });
1195
+ };
1196
+ exports.se_UpdateLakeFormationIdentityCenterConfigurationCommand = se_UpdateLakeFormationIdentityCenterConfigurationCommand;
1104
1197
  const se_UpdateLFTagCommand = async (input, context) => {
1105
1198
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
1106
1199
  const headers = {
@@ -1515,6 +1608,55 @@ const de_CreateDataCellsFilterCommandError = async (output, context) => {
1515
1608
  });
1516
1609
  }
1517
1610
  };
1611
+ const de_CreateLakeFormationIdentityCenterConfigurationCommand = async (output, context) => {
1612
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1613
+ return de_CreateLakeFormationIdentityCenterConfigurationCommandError(output, context);
1614
+ }
1615
+ const contents = (0, smithy_client_1.map)({
1616
+ $metadata: deserializeMetadata(output),
1617
+ });
1618
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
1619
+ const doc = (0, smithy_client_1.take)(data, {
1620
+ ApplicationArn: smithy_client_1.expectString,
1621
+ });
1622
+ Object.assign(contents, doc);
1623
+ return contents;
1624
+ };
1625
+ exports.de_CreateLakeFormationIdentityCenterConfigurationCommand = de_CreateLakeFormationIdentityCenterConfigurationCommand;
1626
+ const de_CreateLakeFormationIdentityCenterConfigurationCommandError = async (output, context) => {
1627
+ const parsedOutput = {
1628
+ ...output,
1629
+ body: await parseErrorBody(output.body, context),
1630
+ };
1631
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1632
+ switch (errorCode) {
1633
+ case "AccessDeniedException":
1634
+ case "com.amazonaws.lakeformation#AccessDeniedException":
1635
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
1636
+ case "AlreadyExistsException":
1637
+ case "com.amazonaws.lakeformation#AlreadyExistsException":
1638
+ throw await de_AlreadyExistsExceptionRes(parsedOutput, context);
1639
+ case "ConcurrentModificationException":
1640
+ case "com.amazonaws.lakeformation#ConcurrentModificationException":
1641
+ throw await de_ConcurrentModificationExceptionRes(parsedOutput, context);
1642
+ case "InternalServiceException":
1643
+ case "com.amazonaws.lakeformation#InternalServiceException":
1644
+ throw await de_InternalServiceExceptionRes(parsedOutput, context);
1645
+ case "InvalidInputException":
1646
+ case "com.amazonaws.lakeformation#InvalidInputException":
1647
+ throw await de_InvalidInputExceptionRes(parsedOutput, context);
1648
+ case "OperationTimeoutException":
1649
+ case "com.amazonaws.lakeformation#OperationTimeoutException":
1650
+ throw await de_OperationTimeoutExceptionRes(parsedOutput, context);
1651
+ default:
1652
+ const parsedBody = parsedOutput.body;
1653
+ return throwDefaultError({
1654
+ output,
1655
+ parsedBody,
1656
+ errorCode,
1657
+ });
1658
+ }
1659
+ };
1518
1660
  const de_CreateLakeFormationOptInCommand = async (output, context) => {
1519
1661
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1520
1662
  return de_CreateLakeFormationOptInCommandError(output, context);
@@ -1647,6 +1789,51 @@ const de_DeleteDataCellsFilterCommandError = async (output, context) => {
1647
1789
  });
1648
1790
  }
1649
1791
  };
1792
+ const de_DeleteLakeFormationIdentityCenterConfigurationCommand = async (output, context) => {
1793
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1794
+ return de_DeleteLakeFormationIdentityCenterConfigurationCommandError(output, context);
1795
+ }
1796
+ const contents = (0, smithy_client_1.map)({
1797
+ $metadata: deserializeMetadata(output),
1798
+ });
1799
+ await (0, smithy_client_1.collectBody)(output.body, context);
1800
+ return contents;
1801
+ };
1802
+ exports.de_DeleteLakeFormationIdentityCenterConfigurationCommand = de_DeleteLakeFormationIdentityCenterConfigurationCommand;
1803
+ const de_DeleteLakeFormationIdentityCenterConfigurationCommandError = async (output, context) => {
1804
+ const parsedOutput = {
1805
+ ...output,
1806
+ body: await parseErrorBody(output.body, context),
1807
+ };
1808
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1809
+ switch (errorCode) {
1810
+ case "AccessDeniedException":
1811
+ case "com.amazonaws.lakeformation#AccessDeniedException":
1812
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
1813
+ case "ConcurrentModificationException":
1814
+ case "com.amazonaws.lakeformation#ConcurrentModificationException":
1815
+ throw await de_ConcurrentModificationExceptionRes(parsedOutput, context);
1816
+ case "EntityNotFoundException":
1817
+ case "com.amazonaws.lakeformation#EntityNotFoundException":
1818
+ throw await de_EntityNotFoundExceptionRes(parsedOutput, context);
1819
+ case "InternalServiceException":
1820
+ case "com.amazonaws.lakeformation#InternalServiceException":
1821
+ throw await de_InternalServiceExceptionRes(parsedOutput, context);
1822
+ case "InvalidInputException":
1823
+ case "com.amazonaws.lakeformation#InvalidInputException":
1824
+ throw await de_InvalidInputExceptionRes(parsedOutput, context);
1825
+ case "OperationTimeoutException":
1826
+ case "com.amazonaws.lakeformation#OperationTimeoutException":
1827
+ throw await de_OperationTimeoutExceptionRes(parsedOutput, context);
1828
+ default:
1829
+ const parsedBody = parsedOutput.body;
1830
+ return throwDefaultError({
1831
+ output,
1832
+ parsedBody,
1833
+ errorCode,
1834
+ });
1835
+ }
1836
+ };
1650
1837
  const de_DeleteLakeFormationOptInCommand = async (output, context) => {
1651
1838
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1652
1839
  return de_DeleteLakeFormationOptInCommandError(output, context);
@@ -1824,6 +2011,55 @@ const de_DeregisterResourceCommandError = async (output, context) => {
1824
2011
  });
1825
2012
  }
1826
2013
  };
2014
+ const de_DescribeLakeFormationIdentityCenterConfigurationCommand = async (output, context) => {
2015
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2016
+ return de_DescribeLakeFormationIdentityCenterConfigurationCommandError(output, context);
2017
+ }
2018
+ const contents = (0, smithy_client_1.map)({
2019
+ $metadata: deserializeMetadata(output),
2020
+ });
2021
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
2022
+ const doc = (0, smithy_client_1.take)(data, {
2023
+ ApplicationArn: smithy_client_1.expectString,
2024
+ CatalogId: smithy_client_1.expectString,
2025
+ ExternalFiltering: smithy_client_1._json,
2026
+ InstanceArn: smithy_client_1.expectString,
2027
+ });
2028
+ Object.assign(contents, doc);
2029
+ return contents;
2030
+ };
2031
+ exports.de_DescribeLakeFormationIdentityCenterConfigurationCommand = de_DescribeLakeFormationIdentityCenterConfigurationCommand;
2032
+ const de_DescribeLakeFormationIdentityCenterConfigurationCommandError = async (output, context) => {
2033
+ const parsedOutput = {
2034
+ ...output,
2035
+ body: await parseErrorBody(output.body, context),
2036
+ };
2037
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
2038
+ switch (errorCode) {
2039
+ case "AccessDeniedException":
2040
+ case "com.amazonaws.lakeformation#AccessDeniedException":
2041
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
2042
+ case "EntityNotFoundException":
2043
+ case "com.amazonaws.lakeformation#EntityNotFoundException":
2044
+ throw await de_EntityNotFoundExceptionRes(parsedOutput, context);
2045
+ case "InternalServiceException":
2046
+ case "com.amazonaws.lakeformation#InternalServiceException":
2047
+ throw await de_InternalServiceExceptionRes(parsedOutput, context);
2048
+ case "InvalidInputException":
2049
+ case "com.amazonaws.lakeformation#InvalidInputException":
2050
+ throw await de_InvalidInputExceptionRes(parsedOutput, context);
2051
+ case "OperationTimeoutException":
2052
+ case "com.amazonaws.lakeformation#OperationTimeoutException":
2053
+ throw await de_OperationTimeoutExceptionRes(parsedOutput, context);
2054
+ default:
2055
+ const parsedBody = parsedOutput.body;
2056
+ return throwDefaultError({
2057
+ output,
2058
+ parsedBody,
2059
+ errorCode,
2060
+ });
2061
+ }
2062
+ };
1827
2063
  const de_DescribeResourceCommand = async (output, context) => {
1828
2064
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1829
2065
  return de_DescribeResourceCommandError(output, context);
@@ -3260,6 +3496,51 @@ const de_UpdateDataCellsFilterCommandError = async (output, context) => {
3260
3496
  });
3261
3497
  }
3262
3498
  };
3499
+ const de_UpdateLakeFormationIdentityCenterConfigurationCommand = async (output, context) => {
3500
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3501
+ return de_UpdateLakeFormationIdentityCenterConfigurationCommandError(output, context);
3502
+ }
3503
+ const contents = (0, smithy_client_1.map)({
3504
+ $metadata: deserializeMetadata(output),
3505
+ });
3506
+ await (0, smithy_client_1.collectBody)(output.body, context);
3507
+ return contents;
3508
+ };
3509
+ exports.de_UpdateLakeFormationIdentityCenterConfigurationCommand = de_UpdateLakeFormationIdentityCenterConfigurationCommand;
3510
+ const de_UpdateLakeFormationIdentityCenterConfigurationCommandError = async (output, context) => {
3511
+ const parsedOutput = {
3512
+ ...output,
3513
+ body: await parseErrorBody(output.body, context),
3514
+ };
3515
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
3516
+ switch (errorCode) {
3517
+ case "AccessDeniedException":
3518
+ case "com.amazonaws.lakeformation#AccessDeniedException":
3519
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
3520
+ case "ConcurrentModificationException":
3521
+ case "com.amazonaws.lakeformation#ConcurrentModificationException":
3522
+ throw await de_ConcurrentModificationExceptionRes(parsedOutput, context);
3523
+ case "EntityNotFoundException":
3524
+ case "com.amazonaws.lakeformation#EntityNotFoundException":
3525
+ throw await de_EntityNotFoundExceptionRes(parsedOutput, context);
3526
+ case "InternalServiceException":
3527
+ case "com.amazonaws.lakeformation#InternalServiceException":
3528
+ throw await de_InternalServiceExceptionRes(parsedOutput, context);
3529
+ case "InvalidInputException":
3530
+ case "com.amazonaws.lakeformation#InvalidInputException":
3531
+ throw await de_InvalidInputExceptionRes(parsedOutput, context);
3532
+ case "OperationTimeoutException":
3533
+ case "com.amazonaws.lakeformation#OperationTimeoutException":
3534
+ throw await de_OperationTimeoutExceptionRes(parsedOutput, context);
3535
+ default:
3536
+ const parsedBody = parsedOutput.body;
3537
+ return throwDefaultError({
3538
+ output,
3539
+ parsedBody,
3540
+ errorCode,
3541
+ });
3542
+ }
3543
+ };
3263
3544
  const de_UpdateLFTagCommand = async (output, context) => {
3264
3545
  if (output.statusCode !== 200 && output.statusCode >= 300) {
3265
3546
  return de_UpdateLFTagCommandError(output, context);