@aws-sdk/client-lakeformation 3.295.0 → 3.297.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/dist-types/LakeFormation.d.ts +48 -0
- package/dist-types/LakeFormationClient.d.ts +24 -4
- package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +16 -0
- package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +16 -0
- package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/CancelTransactionCommand.d.ts +16 -0
- package/dist-types/commands/CommitTransactionCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +16 -0
- package/dist-types/commands/CreateLFTagCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLFTagCommand.d.ts +16 -0
- package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterResourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeResourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTransactionCommand.d.ts +16 -0
- package/dist-types/commands/ExtendTransactionCommand.d.ts +16 -0
- package/dist-types/commands/GetDataCellsFilterCommand.d.ts +16 -0
- package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +16 -0
- package/dist-types/commands/GetLFTagCommand.d.ts +16 -0
- package/dist-types/commands/GetQueryStateCommand.d.ts +16 -0
- package/dist-types/commands/GetQueryStatisticsCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceLFTagsCommand.d.ts +16 -0
- package/dist-types/commands/GetTableObjectsCommand.d.ts +16 -0
- package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkUnitResultsCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkUnitsCommand.d.ts +16 -0
- package/dist-types/commands/GrantPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataCellsFilterCommand.d.ts +16 -0
- package/dist-types/commands/ListLFTagsCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +16 -0
- package/dist-types/commands/ListTransactionsCommand.d.ts +16 -0
- package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +16 -0
- package/dist-types/commands/RegisterResourceCommand.d.ts +16 -0
- package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +16 -0
- package/dist-types/commands/RevokePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +16 -0
- package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +16 -0
- package/dist-types/commands/StartQueryPlanningCommand.d.ts +16 -0
- package/dist-types/commands/StartTransactionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLFTagCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTableObjectsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +16 -0
- package/dist-types/models/LakeFormationServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +372 -0
- package/dist-types/pagination/GetEffectivePermissionsForPathPaginator.d.ts +3 -0
- package/dist-types/pagination/GetTableObjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetWorkUnitsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDataCellsFilterPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLFTagsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTableStorageOptimizersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTransactionsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchDatabasesByLFTagsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchTablesByLFTagsPaginator.d.ts +3 -0
- package/package.json +31 -31
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { CancelTransactionRequest, CancelTransactionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelTransactionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelTransactionCommandInput extends CancelTransactionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelTransactionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelTransactionCommandOutput extends CancelTransactionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attempts to cancel the specified transaction. Returns an exception if the transaction was previously committed.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CancelTransactionCommandInput - {@link CancelTransactionCommandInput}
|
|
34
|
+
* @returns {@link CancelTransactionCommandOutput}
|
|
28
35
|
* @see {@link CancelTransactionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CancelTransactionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons
|
|
|
55
62
|
export declare class CancelTransactionCommand extends $Command<CancelTransactionCommandInput, CancelTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
56
63
|
readonly input: CancelTransactionCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CancelTransactionCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelTransactionCommandInput, CancelTransactionCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { CommitTransactionRequest, CommitTransactionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CommitTransactionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CommitTransactionCommandInput extends CommitTransactionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CommitTransactionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CommitTransactionCommandOutput extends CommitTransactionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attempts to commit the specified transaction. Returns an exception if the transaction was previously aborted. This API action is idempotent if called multiple times for the same transaction.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CommitTransactionCommandInput - {@link CommitTransactionCommandInput}
|
|
34
|
+
* @returns {@link CommitTransactionCommandOutput}
|
|
28
35
|
* @see {@link CommitTransactionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CommitTransactionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
|
|
|
52
59
|
export declare class CommitTransactionCommand extends $Command<CommitTransactionCommandInput, CommitTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
53
60
|
readonly input: CommitTransactionCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CommitTransactionCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CommitTransactionCommandInput, CommitTransactionCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { CreateDataCellsFilterRequest, CreateDataCellsFilterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDataCellsFilterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDataCellsFilterCommandInput extends CreateDataCellsFilterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDataCellsFilterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a data cell filter to allow one to grant access to certain columns on certain rows.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateDataCellsFilterCommandInput - {@link CreateDataCellsFilterCommandInput}
|
|
34
|
+
* @returns {@link CreateDataCellsFilterCommandOutput}
|
|
28
35
|
* @see {@link CreateDataCellsFilterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateDataCellsFilterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte
|
|
|
55
62
|
export declare class CreateDataCellsFilterCommand extends $Command<CreateDataCellsFilterCommandInput, CreateDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateDataCellsFilterCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateDataCellsFilterCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataCellsFilterCommandInput, CreateDataCellsFilterCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { CreateLFTagRequest, CreateLFTagResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateLFTagCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateLFTagCommandInput extends CreateLFTagRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateLFTagCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an LF-tag with the specified name and values.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateLFTagCommandInput - {@link CreateLFTagCommandInput}
|
|
34
|
+
* @returns {@link CreateLFTagCommandOutput}
|
|
28
35
|
* @see {@link CreateLFTagCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateLFTagCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat
|
|
|
52
59
|
export declare class CreateLFTagCommand extends $Command<CreateLFTagCommandInput, CreateLFTagCommandOutput, LakeFormationClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateLFTagCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateLFTagCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLFTagCommandInput, CreateLFTagCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { DeleteDataCellsFilterRequest, DeleteDataCellsFilterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDataCellsFilterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDataCellsFilterCommandInput extends DeleteDataCellsFilterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDataCellsFilterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a data cell filter.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDataCellsFilterCommandInput - {@link DeleteDataCellsFilterCommandInput}
|
|
34
|
+
* @returns {@link DeleteDataCellsFilterCommandOutput}
|
|
28
35
|
* @see {@link DeleteDataCellsFilterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDataCellsFilterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte
|
|
|
49
56
|
export declare class DeleteDataCellsFilterCommand extends $Command<DeleteDataCellsFilterCommandInput, DeleteDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteDataCellsFilterCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteDataCellsFilterCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataCellsFilterCommandInput, DeleteDataCellsFilterCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { DeleteLFTagRequest, DeleteLFTagResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLFTagCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLFTagCommandInput extends DeleteLFTagRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLFTagCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified LF-tag given a key name. If the input parameter tag key was not found, then the operation will throw an exception. When you delete an LF-tag, the <code>LFTagPolicy</code> attached to the LF-tag becomes invalid. If the deleted LF-tag was still assigned to any resource, the tag policy attach to the deleted LF-tag will no longer be applied to the resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteLFTagCommandInput - {@link DeleteLFTagCommandInput}
|
|
34
|
+
* @returns {@link DeleteLFTagCommandOutput}
|
|
28
35
|
* @see {@link DeleteLFTagCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteLFTagCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat
|
|
|
49
56
|
export declare class DeleteLFTagCommand extends $Command<DeleteLFTagCommandInput, DeleteLFTagCommandOutput, LakeFormationClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteLFTagCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteLFTagCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLFTagCommandInput, DeleteLFTagCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { DeleteObjectsOnCancelRequest, DeleteObjectsOnCancelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteObjectsOnCancelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteObjectsOnCancelCommandInput extends DeleteObjectsOnCancelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteObjectsOnCancelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCancelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>For a specific governed table, provides a list of Amazon S3 objects that will be written during the current transaction and that can be automatically deleted
|
|
18
23
|
* if the transaction is canceled. Without this call, no Amazon S3 objects are automatically deleted when a transaction cancels.
|
|
19
24
|
* </p>
|
|
@@ -32,6 +37,8 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DeleteObjectsOnCancelCommandInput - {@link DeleteObjectsOnCancelCommandInput}
|
|
41
|
+
* @returns {@link DeleteObjectsOnCancelCommandOutput}
|
|
35
42
|
* @see {@link DeleteObjectsOnCancelCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DeleteObjectsOnCancelCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance
|
|
|
65
72
|
export declare class DeleteObjectsOnCancelCommand extends $Command<DeleteObjectsOnCancelCommandInput, DeleteObjectsOnCancelCommandOutput, LakeFormationClientResolvedConfig> {
|
|
66
73
|
readonly input: DeleteObjectsOnCancelCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: DeleteObjectsOnCancelCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteObjectsOnCancelCommandInput, DeleteObjectsOnCancelCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { DeregisterResourceRequest, DeregisterResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterResourceCommandInput extends DeregisterResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterResourceCommandOutput extends DeregisterResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregisters the resource as managed by the Data Catalog.</p>
|
|
18
23
|
* <p>When you deregister a path, Lake Formation removes the path from the inline policy attached to your service-linked role.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeregisterResourceCommandInput - {@link DeregisterResourceCommandInput}
|
|
35
|
+
* @returns {@link DeregisterResourceCommandOutput}
|
|
29
36
|
* @see {@link DeregisterResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeregisterResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo
|
|
|
47
54
|
export declare class DeregisterResourceCommand extends $Command<DeregisterResourceCommandInput, DeregisterResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
48
55
|
readonly input: DeregisterResourceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeregisterResourceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterResourceCommandInput, DeregisterResourceCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { DescribeResourceRequest, DescribeResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeResourceCommandInput extends DescribeResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeResourceCommandOutput extends DescribeResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the current data access role for the given resource registered in Lake Formation.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeResourceCommandInput - {@link DescribeResourceCommandInput}
|
|
34
|
+
* @returns {@link DescribeResourceCommandOutput}
|
|
28
35
|
* @see {@link DescribeResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse,
|
|
|
46
53
|
export declare class DescribeResourceCommand extends $Command<DescribeResourceCommandInput, DescribeResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
47
54
|
readonly input: DescribeResourceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DescribeResourceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeResourceCommandInput, DescribeResourceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { DescribeTransactionRequest, DescribeTransactionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTransactionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTransactionCommandInput extends DescribeTransactionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTransactionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTransactionCommandOutput extends DescribeTransactionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the details of a single transaction.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeTransactionCommandInput - {@link DescribeTransactionCommandInput}
|
|
34
|
+
* @returns {@link DescribeTransactionCommandOutput}
|
|
28
35
|
* @see {@link DescribeTransactionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeTransactionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes
|
|
|
46
53
|
export declare class DescribeTransactionCommand extends $Command<DescribeTransactionCommandInput, DescribeTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
47
54
|
readonly input: DescribeTransactionCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DescribeTransactionCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTransactionCommandInput, DescribeTransactionCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { ExtendTransactionRequest, ExtendTransactionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExtendTransactionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExtendTransactionCommandInput extends ExtendTransactionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExtendTransactionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExtendTransactionCommandOutput extends ExtendTransactionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Indicates to the service that the specified transaction is still active and should not be treated as idle and aborted.</p>
|
|
18
23
|
* <p>Write transactions that remain idle for a long period are automatically aborted unless explicitly extended.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ExtendTransactionCommandInput - {@link ExtendTransactionCommandInput}
|
|
35
|
+
* @returns {@link ExtendTransactionCommandOutput}
|
|
29
36
|
* @see {@link ExtendTransactionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ExtendTransactionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons
|
|
|
56
63
|
export declare class ExtendTransactionCommand extends $Command<ExtendTransactionCommandInput, ExtendTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
57
64
|
readonly input: ExtendTransactionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ExtendTransactionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExtendTransactionCommandInput, ExtendTransactionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { GetDataCellsFilterRequest, GetDataCellsFilterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDataCellsFilterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDataCellsFilterCommandInput extends GetDataCellsFilterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDataCellsFilterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a data cells filter.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDataCellsFilterCommandInput - {@link GetDataCellsFilterCommandInput}
|
|
34
|
+
* @returns {@link GetDataCellsFilterCommandOutput}
|
|
28
35
|
* @see {@link GetDataCellsFilterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDataCellsFilterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterRespo
|
|
|
49
56
|
export declare class GetDataCellsFilterCommand extends $Command<GetDataCellsFilterCommandInput, GetDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
50
57
|
readonly input: GetDataCellsFilterCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetDataCellsFilterCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataCellsFilterCommandInput, GetDataCellsFilterCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
|
|
5
5
|
import { GetDataLakeSettingsRequest, GetDataLakeSettingsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDataLakeSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDataLakeSettingsCommandInput extends GetDataLakeSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDataLakeSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the list of the data lake administrators of a Lake Formation-managed data lake. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDataLakeSettingsCommandInput - {@link GetDataLakeSettingsCommandInput}
|
|
34
|
+
* @returns {@link GetDataLakeSettingsCommandOutput}
|
|
28
35
|
* @see {@link GetDataLakeSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDataLakeSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsRes
|
|
|
43
50
|
export declare class GetDataLakeSettingsCommand extends $Command<GetDataLakeSettingsCommandInput, GetDataLakeSettingsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
44
51
|
readonly input: GetDataLakeSettingsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetDataLakeSettingsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataLakeSettingsCommandInput, GetDataLakeSettingsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|