@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.
- package/README.md +82 -50
- package/dist-cjs/LakeFormation.js +8 -0
- package/dist-cjs/commands/CreateLakeFormationIdentityCenterConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.js +51 -0
- package/dist-cjs/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +9 -1
- package/dist-cjs/protocols/Aws_restJson1.js +283 -2
- package/dist-es/LakeFormation.js +8 -0
- package/dist-es/commands/CreateLakeFormationIdentityCenterConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.js +47 -0
- package/dist-es/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.js +47 -0
- package/dist-es/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +272 -0
- package/dist-types/LakeFormation.d.ts +28 -0
- package/dist-types/LakeFormationClient.d.ts +6 -2
- package/dist-types/commands/CreateLakeFormationIdentityCenterConfigurationCommand.d.ts +98 -0
- package/dist-types/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.d.ts +89 -0
- package/dist-types/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +161 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/LakeFormation.d.ts +92 -0
- package/dist-types/ts3.4/LakeFormationClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +3 -3
package/dist-types/ts3.4/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.d.ts
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LakeFormationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LakeFormationClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeLakeFormationIdentityCenterConfigurationRequest,
|
|
16
|
+
DescribeLakeFormationIdentityCenterConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeLakeFormationIdentityCenterConfigurationCommandInput
|
|
20
|
+
extends DescribeLakeFormationIdentityCenterConfigurationRequest {}
|
|
21
|
+
export interface DescribeLakeFormationIdentityCenterConfigurationCommandOutput
|
|
22
|
+
extends DescribeLakeFormationIdentityCenterConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeLakeFormationIdentityCenterConfigurationCommand extends $Command<
|
|
25
|
+
DescribeLakeFormationIdentityCenterConfigurationCommandInput,
|
|
26
|
+
DescribeLakeFormationIdentityCenterConfigurationCommandOutput,
|
|
27
|
+
LakeFormationClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeLakeFormationIdentityCenterConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(
|
|
32
|
+
input: DescribeLakeFormationIdentityCenterConfigurationCommandInput
|
|
33
|
+
);
|
|
34
|
+
resolveMiddleware(
|
|
35
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
36
|
+
configuration: LakeFormationClientResolvedConfig,
|
|
37
|
+
options?: __HttpHandlerOptions
|
|
38
|
+
): Handler<
|
|
39
|
+
DescribeLakeFormationIdentityCenterConfigurationCommandInput,
|
|
40
|
+
DescribeLakeFormationIdentityCenterConfigurationCommandOutput
|
|
41
|
+
>;
|
|
42
|
+
private serialize;
|
|
43
|
+
private deserialize;
|
|
44
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LakeFormationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LakeFormationClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateLakeFormationIdentityCenterConfigurationRequest,
|
|
16
|
+
UpdateLakeFormationIdentityCenterConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateLakeFormationIdentityCenterConfigurationCommandInput
|
|
20
|
+
extends UpdateLakeFormationIdentityCenterConfigurationRequest {}
|
|
21
|
+
export interface UpdateLakeFormationIdentityCenterConfigurationCommandOutput
|
|
22
|
+
extends UpdateLakeFormationIdentityCenterConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateLakeFormationIdentityCenterConfigurationCommand extends $Command<
|
|
25
|
+
UpdateLakeFormationIdentityCenterConfigurationCommandInput,
|
|
26
|
+
UpdateLakeFormationIdentityCenterConfigurationCommandOutput,
|
|
27
|
+
LakeFormationClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateLakeFormationIdentityCenterConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(
|
|
32
|
+
input: UpdateLakeFormationIdentityCenterConfigurationCommandInput
|
|
33
|
+
);
|
|
34
|
+
resolveMiddleware(
|
|
35
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
36
|
+
configuration: LakeFormationClientResolvedConfig,
|
|
37
|
+
options?: __HttpHandlerOptions
|
|
38
|
+
): Handler<
|
|
39
|
+
UpdateLakeFormationIdentityCenterConfigurationCommandInput,
|
|
40
|
+
UpdateLakeFormationIdentityCenterConfigurationCommandOutput
|
|
41
|
+
>;
|
|
42
|
+
private serialize;
|
|
43
|
+
private deserialize;
|
|
44
|
+
}
|
|
@@ -6,12 +6,15 @@ export * from "./CancelTransactionCommand";
|
|
|
6
6
|
export * from "./CommitTransactionCommand";
|
|
7
7
|
export * from "./CreateDataCellsFilterCommand";
|
|
8
8
|
export * from "./CreateLFTagCommand";
|
|
9
|
+
export * from "./CreateLakeFormationIdentityCenterConfigurationCommand";
|
|
9
10
|
export * from "./CreateLakeFormationOptInCommand";
|
|
10
11
|
export * from "./DeleteDataCellsFilterCommand";
|
|
11
12
|
export * from "./DeleteLFTagCommand";
|
|
13
|
+
export * from "./DeleteLakeFormationIdentityCenterConfigurationCommand";
|
|
12
14
|
export * from "./DeleteLakeFormationOptInCommand";
|
|
13
15
|
export * from "./DeleteObjectsOnCancelCommand";
|
|
14
16
|
export * from "./DeregisterResourceCommand";
|
|
17
|
+
export * from "./DescribeLakeFormationIdentityCenterConfigurationCommand";
|
|
15
18
|
export * from "./DescribeResourceCommand";
|
|
16
19
|
export * from "./DescribeTransactionCommand";
|
|
17
20
|
export * from "./ExtendTransactionCommand";
|
|
@@ -45,6 +48,7 @@ export * from "./StartQueryPlanningCommand";
|
|
|
45
48
|
export * from "./StartTransactionCommand";
|
|
46
49
|
export * from "./UpdateDataCellsFilterCommand";
|
|
47
50
|
export * from "./UpdateLFTagCommand";
|
|
51
|
+
export * from "./UpdateLakeFormationIdentityCenterConfigurationCommand";
|
|
48
52
|
export * from "./UpdateResourceCommand";
|
|
49
53
|
export * from "./UpdateTableObjectsCommand";
|
|
50
54
|
export * from "./UpdateTableStorageOptimizerCommand";
|
|
@@ -149,6 +149,12 @@ export declare class AlreadyExistsException extends __BaseException {
|
|
|
149
149
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
150
150
|
);
|
|
151
151
|
}
|
|
152
|
+
export declare const ApplicationStatus: {
|
|
153
|
+
readonly DISABLED: "DISABLED";
|
|
154
|
+
readonly ENABLED: "ENABLED";
|
|
155
|
+
};
|
|
156
|
+
export type ApplicationStatus =
|
|
157
|
+
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
152
158
|
export interface AssumeDecoratedRoleWithSAMLRequest {
|
|
153
159
|
SAMLAssertion: string | undefined;
|
|
154
160
|
RoleArn: string | undefined;
|
|
@@ -282,6 +288,23 @@ export declare class ResourceNumberLimitExceededException extends __BaseExceptio
|
|
|
282
288
|
>
|
|
283
289
|
);
|
|
284
290
|
}
|
|
291
|
+
export declare const EnableStatus: {
|
|
292
|
+
readonly DISABLED: "DISABLED";
|
|
293
|
+
readonly ENABLED: "ENABLED";
|
|
294
|
+
};
|
|
295
|
+
export type EnableStatus = (typeof EnableStatus)[keyof typeof EnableStatus];
|
|
296
|
+
export interface ExternalFilteringConfiguration {
|
|
297
|
+
Status: EnableStatus | undefined;
|
|
298
|
+
AuthorizedTargets: string[] | undefined;
|
|
299
|
+
}
|
|
300
|
+
export interface CreateLakeFormationIdentityCenterConfigurationRequest {
|
|
301
|
+
CatalogId?: string;
|
|
302
|
+
InstanceArn?: string;
|
|
303
|
+
ExternalFiltering?: ExternalFilteringConfiguration;
|
|
304
|
+
}
|
|
305
|
+
export interface CreateLakeFormationIdentityCenterConfigurationResponse {
|
|
306
|
+
ApplicationArn?: string;
|
|
307
|
+
}
|
|
285
308
|
export interface CreateLakeFormationOptInRequest {
|
|
286
309
|
Principal: DataLakePrincipal | undefined;
|
|
287
310
|
Resource: Resource | undefined;
|
|
@@ -300,6 +323,10 @@ export interface DeleteDataCellsFilterRequest {
|
|
|
300
323
|
Name?: string;
|
|
301
324
|
}
|
|
302
325
|
export interface DeleteDataCellsFilterResponse {}
|
|
326
|
+
export interface DeleteLakeFormationIdentityCenterConfigurationRequest {
|
|
327
|
+
CatalogId?: string;
|
|
328
|
+
}
|
|
329
|
+
export interface DeleteLakeFormationIdentityCenterConfigurationResponse {}
|
|
303
330
|
export interface DeleteLakeFormationOptInRequest {
|
|
304
331
|
Principal: DataLakePrincipal | undefined;
|
|
305
332
|
Resource: Resource | undefined;
|
|
@@ -334,6 +361,15 @@ export interface DeregisterResourceRequest {
|
|
|
334
361
|
ResourceArn: string | undefined;
|
|
335
362
|
}
|
|
336
363
|
export interface DeregisterResourceResponse {}
|
|
364
|
+
export interface DescribeLakeFormationIdentityCenterConfigurationRequest {
|
|
365
|
+
CatalogId?: string;
|
|
366
|
+
}
|
|
367
|
+
export interface DescribeLakeFormationIdentityCenterConfigurationResponse {
|
|
368
|
+
CatalogId?: string;
|
|
369
|
+
InstanceArn?: string;
|
|
370
|
+
ApplicationArn?: string;
|
|
371
|
+
ExternalFiltering?: ExternalFilteringConfiguration;
|
|
372
|
+
}
|
|
337
373
|
export interface DescribeResourceRequest {
|
|
338
374
|
ResourceArn: string | undefined;
|
|
339
375
|
}
|
|
@@ -851,6 +887,12 @@ export interface UpdateDataCellsFilterRequest {
|
|
|
851
887
|
TableData: DataCellsFilter | undefined;
|
|
852
888
|
}
|
|
853
889
|
export interface UpdateDataCellsFilterResponse {}
|
|
890
|
+
export interface UpdateLakeFormationIdentityCenterConfigurationRequest {
|
|
891
|
+
CatalogId?: string;
|
|
892
|
+
ApplicationStatus?: ApplicationStatus;
|
|
893
|
+
ExternalFiltering?: ExternalFilteringConfiguration;
|
|
894
|
+
}
|
|
895
|
+
export interface UpdateLakeFormationIdentityCenterConfigurationResponse {}
|
|
854
896
|
export interface UpdateLFTagRequest {
|
|
855
897
|
CatalogId?: string;
|
|
856
898
|
TagKey: string | undefined;
|
|
@@ -34,6 +34,10 @@ import {
|
|
|
34
34
|
CreateDataCellsFilterCommandInput,
|
|
35
35
|
CreateDataCellsFilterCommandOutput,
|
|
36
36
|
} from "../commands/CreateDataCellsFilterCommand";
|
|
37
|
+
import {
|
|
38
|
+
CreateLakeFormationIdentityCenterConfigurationCommandInput,
|
|
39
|
+
CreateLakeFormationIdentityCenterConfigurationCommandOutput,
|
|
40
|
+
} from "../commands/CreateLakeFormationIdentityCenterConfigurationCommand";
|
|
37
41
|
import {
|
|
38
42
|
CreateLakeFormationOptInCommandInput,
|
|
39
43
|
CreateLakeFormationOptInCommandOutput,
|
|
@@ -46,6 +50,10 @@ import {
|
|
|
46
50
|
DeleteDataCellsFilterCommandInput,
|
|
47
51
|
DeleteDataCellsFilterCommandOutput,
|
|
48
52
|
} from "../commands/DeleteDataCellsFilterCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteLakeFormationIdentityCenterConfigurationCommandInput,
|
|
55
|
+
DeleteLakeFormationIdentityCenterConfigurationCommandOutput,
|
|
56
|
+
} from "../commands/DeleteLakeFormationIdentityCenterConfigurationCommand";
|
|
49
57
|
import {
|
|
50
58
|
DeleteLakeFormationOptInCommandInput,
|
|
51
59
|
DeleteLakeFormationOptInCommandOutput,
|
|
@@ -62,6 +70,10 @@ import {
|
|
|
62
70
|
DeregisterResourceCommandInput,
|
|
63
71
|
DeregisterResourceCommandOutput,
|
|
64
72
|
} from "../commands/DeregisterResourceCommand";
|
|
73
|
+
import {
|
|
74
|
+
DescribeLakeFormationIdentityCenterConfigurationCommandInput,
|
|
75
|
+
DescribeLakeFormationIdentityCenterConfigurationCommandOutput,
|
|
76
|
+
} from "../commands/DescribeLakeFormationIdentityCenterConfigurationCommand";
|
|
65
77
|
import {
|
|
66
78
|
DescribeResourceCommandInput,
|
|
67
79
|
DescribeResourceCommandOutput,
|
|
@@ -190,6 +202,10 @@ import {
|
|
|
190
202
|
UpdateDataCellsFilterCommandInput,
|
|
191
203
|
UpdateDataCellsFilterCommandOutput,
|
|
192
204
|
} from "../commands/UpdateDataCellsFilterCommand";
|
|
205
|
+
import {
|
|
206
|
+
UpdateLakeFormationIdentityCenterConfigurationCommandInput,
|
|
207
|
+
UpdateLakeFormationIdentityCenterConfigurationCommandOutput,
|
|
208
|
+
} from "../commands/UpdateLakeFormationIdentityCenterConfigurationCommand";
|
|
193
209
|
import {
|
|
194
210
|
UpdateLFTagCommandInput,
|
|
195
211
|
UpdateLFTagCommandOutput,
|
|
@@ -234,6 +250,10 @@ export declare const se_CreateDataCellsFilterCommand: (
|
|
|
234
250
|
input: CreateDataCellsFilterCommandInput,
|
|
235
251
|
context: __SerdeContext
|
|
236
252
|
) => Promise<__HttpRequest>;
|
|
253
|
+
export declare const se_CreateLakeFormationIdentityCenterConfigurationCommand: (
|
|
254
|
+
input: CreateLakeFormationIdentityCenterConfigurationCommandInput,
|
|
255
|
+
context: __SerdeContext
|
|
256
|
+
) => Promise<__HttpRequest>;
|
|
237
257
|
export declare const se_CreateLakeFormationOptInCommand: (
|
|
238
258
|
input: CreateLakeFormationOptInCommandInput,
|
|
239
259
|
context: __SerdeContext
|
|
@@ -246,6 +266,10 @@ export declare const se_DeleteDataCellsFilterCommand: (
|
|
|
246
266
|
input: DeleteDataCellsFilterCommandInput,
|
|
247
267
|
context: __SerdeContext
|
|
248
268
|
) => Promise<__HttpRequest>;
|
|
269
|
+
export declare const se_DeleteLakeFormationIdentityCenterConfigurationCommand: (
|
|
270
|
+
input: DeleteLakeFormationIdentityCenterConfigurationCommandInput,
|
|
271
|
+
context: __SerdeContext
|
|
272
|
+
) => Promise<__HttpRequest>;
|
|
249
273
|
export declare const se_DeleteLakeFormationOptInCommand: (
|
|
250
274
|
input: DeleteLakeFormationOptInCommandInput,
|
|
251
275
|
context: __SerdeContext
|
|
@@ -262,6 +286,10 @@ export declare const se_DeregisterResourceCommand: (
|
|
|
262
286
|
input: DeregisterResourceCommandInput,
|
|
263
287
|
context: __SerdeContext
|
|
264
288
|
) => Promise<__HttpRequest>;
|
|
289
|
+
export declare const se_DescribeLakeFormationIdentityCenterConfigurationCommand: (
|
|
290
|
+
input: DescribeLakeFormationIdentityCenterConfigurationCommandInput,
|
|
291
|
+
context: __SerdeContext
|
|
292
|
+
) => Promise<__HttpRequest>;
|
|
265
293
|
export declare const se_DescribeResourceCommand: (
|
|
266
294
|
input: DescribeResourceCommandInput,
|
|
267
295
|
context: __SerdeContext
|
|
@@ -390,6 +418,10 @@ export declare const se_UpdateDataCellsFilterCommand: (
|
|
|
390
418
|
input: UpdateDataCellsFilterCommandInput,
|
|
391
419
|
context: __SerdeContext
|
|
392
420
|
) => Promise<__HttpRequest>;
|
|
421
|
+
export declare const se_UpdateLakeFormationIdentityCenterConfigurationCommand: (
|
|
422
|
+
input: UpdateLakeFormationIdentityCenterConfigurationCommandInput,
|
|
423
|
+
context: __SerdeContext
|
|
424
|
+
) => Promise<__HttpRequest>;
|
|
393
425
|
export declare const se_UpdateLFTagCommand: (
|
|
394
426
|
input: UpdateLFTagCommandInput,
|
|
395
427
|
context: __SerdeContext
|
|
@@ -434,6 +466,10 @@ export declare const de_CreateDataCellsFilterCommand: (
|
|
|
434
466
|
output: __HttpResponse,
|
|
435
467
|
context: __SerdeContext
|
|
436
468
|
) => Promise<CreateDataCellsFilterCommandOutput>;
|
|
469
|
+
export declare const de_CreateLakeFormationIdentityCenterConfigurationCommand: (
|
|
470
|
+
output: __HttpResponse,
|
|
471
|
+
context: __SerdeContext
|
|
472
|
+
) => Promise<CreateLakeFormationIdentityCenterConfigurationCommandOutput>;
|
|
437
473
|
export declare const de_CreateLakeFormationOptInCommand: (
|
|
438
474
|
output: __HttpResponse,
|
|
439
475
|
context: __SerdeContext
|
|
@@ -446,6 +482,10 @@ export declare const de_DeleteDataCellsFilterCommand: (
|
|
|
446
482
|
output: __HttpResponse,
|
|
447
483
|
context: __SerdeContext
|
|
448
484
|
) => Promise<DeleteDataCellsFilterCommandOutput>;
|
|
485
|
+
export declare const de_DeleteLakeFormationIdentityCenterConfigurationCommand: (
|
|
486
|
+
output: __HttpResponse,
|
|
487
|
+
context: __SerdeContext
|
|
488
|
+
) => Promise<DeleteLakeFormationIdentityCenterConfigurationCommandOutput>;
|
|
449
489
|
export declare const de_DeleteLakeFormationOptInCommand: (
|
|
450
490
|
output: __HttpResponse,
|
|
451
491
|
context: __SerdeContext
|
|
@@ -462,6 +502,10 @@ export declare const de_DeregisterResourceCommand: (
|
|
|
462
502
|
output: __HttpResponse,
|
|
463
503
|
context: __SerdeContext
|
|
464
504
|
) => Promise<DeregisterResourceCommandOutput>;
|
|
505
|
+
export declare const de_DescribeLakeFormationIdentityCenterConfigurationCommand: (
|
|
506
|
+
output: __HttpResponse,
|
|
507
|
+
context: __SerdeContext
|
|
508
|
+
) => Promise<DescribeLakeFormationIdentityCenterConfigurationCommandOutput>;
|
|
465
509
|
export declare const de_DescribeResourceCommand: (
|
|
466
510
|
output: __HttpResponse,
|
|
467
511
|
context: __SerdeContext
|
|
@@ -590,6 +634,10 @@ export declare const de_UpdateDataCellsFilterCommand: (
|
|
|
590
634
|
output: __HttpResponse,
|
|
591
635
|
context: __SerdeContext
|
|
592
636
|
) => Promise<UpdateDataCellsFilterCommandOutput>;
|
|
637
|
+
export declare const de_UpdateLakeFormationIdentityCenterConfigurationCommand: (
|
|
638
|
+
output: __HttpResponse,
|
|
639
|
+
context: __SerdeContext
|
|
640
|
+
) => Promise<UpdateLakeFormationIdentityCenterConfigurationCommandOutput>;
|
|
593
641
|
export declare const de_UpdateLFTagCommand: (
|
|
594
642
|
output: __HttpResponse,
|
|
595
643
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lakeformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.458.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.458.0",
|
|
25
25
|
"@aws-sdk/core": "3.451.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.458.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|