@aws-sdk/client-lakeformation 3.325.0 → 3.326.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/commands/AddLFTagsToResourceCommand.d.ts +20 -0
- package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +9 -0
- package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +80 -0
- package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +80 -0
- package/dist-types/commands/CancelTransactionCommand.d.ts +4 -0
- package/dist-types/commands/CommitTransactionCommand.d.ts +6 -0
- package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +4 -0
- package/dist-types/commands/CreateLFTagCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLFTagCommand.d.ts +4 -0
- package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterResourceCommand.d.ts +4 -0
- package/dist-types/commands/DescribeResourceCommand.d.ts +11 -0
- package/dist-types/commands/DescribeTransactionCommand.d.ts +11 -0
- package/dist-types/commands/ExtendTransactionCommand.d.ts +4 -0
- package/dist-types/commands/GetDataCellsFilterCommand.d.ts +24 -0
- package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +47 -0
- package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +79 -0
- package/dist-types/commands/GetLFTagCommand.d.ts +10 -0
- package/dist-types/commands/GetQueryStateCommand.d.ts +7 -0
- package/dist-types/commands/GetQueryStatisticsCommand.d.ts +17 -0
- package/dist-types/commands/GetResourceLFTagsCommand.d.ts +37 -0
- package/dist-types/commands/GetTableObjectsCommand.d.ts +20 -0
- package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +9 -0
- package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +9 -0
- package/dist-types/commands/GetWorkUnitResultsCommand.d.ts +6 -0
- package/dist-types/commands/GetWorkUnitsCommand.d.ts +14 -0
- package/dist-types/commands/GrantPermissionsCommand.d.ts +4 -0
- package/dist-types/commands/ListDataCellsFilterCommand.d.ts +27 -0
- package/dist-types/commands/ListLFTagsCommand.d.ts +15 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +79 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +14 -0
- package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +17 -0
- package/dist-types/commands/ListTransactionsCommand.d.ts +14 -0
- package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +4 -0
- package/dist-types/commands/RegisterResourceCommand.d.ts +4 -0
- package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +20 -0
- package/dist-types/commands/RevokePermissionsCommand.d.ts +4 -0
- package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +23 -0
- package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +48 -0
- package/dist-types/commands/StartQueryPlanningCommand.d.ts +6 -0
- package/dist-types/commands/StartTransactionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLFTagCommand.d.ts +4 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateTableObjectsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +6 -0
- package/package.json +3 -3
|
@@ -95,6 +95,24 @@ export interface AddLFTagsToResourceCommandOutput extends AddLFTagsToResourceRes
|
|
|
95
95
|
* };
|
|
96
96
|
* const command = new AddLFTagsToResourceCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
+
* // { // AddLFTagsToResourceResponse
|
|
99
|
+
* // Failures: [ // LFTagErrors
|
|
100
|
+
* // { // LFTagError
|
|
101
|
+
* // LFTag: { // LFTagPair
|
|
102
|
+
* // CatalogId: "STRING_VALUE",
|
|
103
|
+
* // TagKey: "STRING_VALUE", // required
|
|
104
|
+
* // TagValues: [ // TagValueList // required
|
|
105
|
+
* // "STRING_VALUE",
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
108
|
+
* // Error: { // ErrorDetail
|
|
109
|
+
* // ErrorCode: "STRING_VALUE",
|
|
110
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // };
|
|
115
|
+
*
|
|
98
116
|
* ```
|
|
99
117
|
*
|
|
100
118
|
* @param AddLFTagsToResourceCommandInput - {@link AddLFTagsToResourceCommandInput}
|
|
@@ -121,6 +139,8 @@ export interface AddLFTagsToResourceCommandOutput extends AddLFTagsToResourceRes
|
|
|
121
139
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
122
140
|
* <p>The operation timed out.</p>
|
|
123
141
|
*
|
|
142
|
+
* @throws {@link LakeFormationServiceException}
|
|
143
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
124
144
|
*
|
|
125
145
|
*/
|
|
126
146
|
export declare class AddLFTagsToResourceCommand extends $Command<AddLFTagsToResourceCommandInput, AddLFTagsToResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -39,6 +39,13 @@ export interface AssumeDecoratedRoleWithSAMLCommandOutput extends AssumeDecorate
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new AssumeDecoratedRoleWithSAMLCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // AssumeDecoratedRoleWithSAMLResponse
|
|
43
|
+
* // AccessKeyId: "STRING_VALUE",
|
|
44
|
+
* // SecretAccessKey: "STRING_VALUE",
|
|
45
|
+
* // SessionToken: "STRING_VALUE",
|
|
46
|
+
* // Expiration: new Date("TIMESTAMP"),
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
42
49
|
* ```
|
|
43
50
|
*
|
|
44
51
|
* @param AssumeDecoratedRoleWithSAMLCommandInput - {@link AssumeDecoratedRoleWithSAMLCommandInput}
|
|
@@ -62,6 +69,8 @@ export interface AssumeDecoratedRoleWithSAMLCommandOutput extends AssumeDecorate
|
|
|
62
69
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
63
70
|
* <p>The operation timed out.</p>
|
|
64
71
|
*
|
|
72
|
+
* @throws {@link LakeFormationServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
65
74
|
*
|
|
66
75
|
*/
|
|
67
76
|
export declare class AssumeDecoratedRoleWithSAMLCommand extends $Command<AssumeDecoratedRoleWithSAMLCommandInput, AssumeDecoratedRoleWithSAMLCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -100,6 +100,84 @@ export interface BatchGrantPermissionsCommandOutput extends BatchGrantPermission
|
|
|
100
100
|
* };
|
|
101
101
|
* const command = new BatchGrantPermissionsCommand(input);
|
|
102
102
|
* const response = await client.send(command);
|
|
103
|
+
* // { // BatchGrantPermissionsResponse
|
|
104
|
+
* // Failures: [ // BatchPermissionsFailureList
|
|
105
|
+
* // { // BatchPermissionsFailureEntry
|
|
106
|
+
* // RequestEntry: { // BatchPermissionsRequestEntry
|
|
107
|
+
* // Id: "STRING_VALUE", // required
|
|
108
|
+
* // Principal: { // DataLakePrincipal
|
|
109
|
+
* // DataLakePrincipalIdentifier: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
111
|
+
* // Resource: { // Resource
|
|
112
|
+
* // Catalog: {},
|
|
113
|
+
* // Database: { // DatabaseResource
|
|
114
|
+
* // CatalogId: "STRING_VALUE",
|
|
115
|
+
* // Name: "STRING_VALUE", // required
|
|
116
|
+
* // },
|
|
117
|
+
* // Table: { // TableResource
|
|
118
|
+
* // CatalogId: "STRING_VALUE",
|
|
119
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
120
|
+
* // Name: "STRING_VALUE",
|
|
121
|
+
* // TableWildcard: {},
|
|
122
|
+
* // },
|
|
123
|
+
* // TableWithColumns: { // TableWithColumnsResource
|
|
124
|
+
* // CatalogId: "STRING_VALUE",
|
|
125
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
126
|
+
* // Name: "STRING_VALUE", // required
|
|
127
|
+
* // ColumnNames: [ // ColumnNames
|
|
128
|
+
* // "STRING_VALUE",
|
|
129
|
+
* // ],
|
|
130
|
+
* // ColumnWildcard: { // ColumnWildcard
|
|
131
|
+
* // ExcludedColumnNames: [
|
|
132
|
+
* // "STRING_VALUE",
|
|
133
|
+
* // ],
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // DataLocation: { // DataLocationResource
|
|
137
|
+
* // CatalogId: "STRING_VALUE",
|
|
138
|
+
* // ResourceArn: "STRING_VALUE", // required
|
|
139
|
+
* // },
|
|
140
|
+
* // DataCellsFilter: { // DataCellsFilterResource
|
|
141
|
+
* // TableCatalogId: "STRING_VALUE",
|
|
142
|
+
* // DatabaseName: "STRING_VALUE",
|
|
143
|
+
* // TableName: "STRING_VALUE",
|
|
144
|
+
* // Name: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // LFTag: { // LFTagKeyResource
|
|
147
|
+
* // CatalogId: "STRING_VALUE",
|
|
148
|
+
* // TagKey: "STRING_VALUE", // required
|
|
149
|
+
* // TagValues: [ // TagValueList // required
|
|
150
|
+
* // "STRING_VALUE",
|
|
151
|
+
* // ],
|
|
152
|
+
* // },
|
|
153
|
+
* // LFTagPolicy: { // LFTagPolicyResource
|
|
154
|
+
* // CatalogId: "STRING_VALUE",
|
|
155
|
+
* // ResourceType: "DATABASE" || "TABLE", // required
|
|
156
|
+
* // Expression: [ // Expression // required
|
|
157
|
+
* // { // LFTag
|
|
158
|
+
* // TagKey: "STRING_VALUE", // required
|
|
159
|
+
* // TagValues: [ // required
|
|
160
|
+
* // "STRING_VALUE",
|
|
161
|
+
* // ],
|
|
162
|
+
* // },
|
|
163
|
+
* // ],
|
|
164
|
+
* // },
|
|
165
|
+
* // },
|
|
166
|
+
* // Permissions: [ // PermissionList
|
|
167
|
+
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
|
|
168
|
+
* // ],
|
|
169
|
+
* // PermissionsWithGrantOption: [
|
|
170
|
+
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
|
|
171
|
+
* // ],
|
|
172
|
+
* // },
|
|
173
|
+
* // Error: { // ErrorDetail
|
|
174
|
+
* // ErrorCode: "STRING_VALUE",
|
|
175
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
176
|
+
* // },
|
|
177
|
+
* // },
|
|
178
|
+
* // ],
|
|
179
|
+
* // };
|
|
180
|
+
*
|
|
103
181
|
* ```
|
|
104
182
|
*
|
|
105
183
|
* @param BatchGrantPermissionsCommandInput - {@link BatchGrantPermissionsCommandInput}
|
|
@@ -114,6 +192,8 @@ export interface BatchGrantPermissionsCommandOutput extends BatchGrantPermission
|
|
|
114
192
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
115
193
|
* <p>The operation timed out.</p>
|
|
116
194
|
*
|
|
195
|
+
* @throws {@link LakeFormationServiceException}
|
|
196
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
117
197
|
*
|
|
118
198
|
*/
|
|
119
199
|
export declare class BatchGrantPermissionsCommand extends $Command<BatchGrantPermissionsCommandInput, BatchGrantPermissionsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -100,6 +100,84 @@ export interface BatchRevokePermissionsCommandOutput extends BatchRevokePermissi
|
|
|
100
100
|
* };
|
|
101
101
|
* const command = new BatchRevokePermissionsCommand(input);
|
|
102
102
|
* const response = await client.send(command);
|
|
103
|
+
* // { // BatchRevokePermissionsResponse
|
|
104
|
+
* // Failures: [ // BatchPermissionsFailureList
|
|
105
|
+
* // { // BatchPermissionsFailureEntry
|
|
106
|
+
* // RequestEntry: { // BatchPermissionsRequestEntry
|
|
107
|
+
* // Id: "STRING_VALUE", // required
|
|
108
|
+
* // Principal: { // DataLakePrincipal
|
|
109
|
+
* // DataLakePrincipalIdentifier: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
111
|
+
* // Resource: { // Resource
|
|
112
|
+
* // Catalog: {},
|
|
113
|
+
* // Database: { // DatabaseResource
|
|
114
|
+
* // CatalogId: "STRING_VALUE",
|
|
115
|
+
* // Name: "STRING_VALUE", // required
|
|
116
|
+
* // },
|
|
117
|
+
* // Table: { // TableResource
|
|
118
|
+
* // CatalogId: "STRING_VALUE",
|
|
119
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
120
|
+
* // Name: "STRING_VALUE",
|
|
121
|
+
* // TableWildcard: {},
|
|
122
|
+
* // },
|
|
123
|
+
* // TableWithColumns: { // TableWithColumnsResource
|
|
124
|
+
* // CatalogId: "STRING_VALUE",
|
|
125
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
126
|
+
* // Name: "STRING_VALUE", // required
|
|
127
|
+
* // ColumnNames: [ // ColumnNames
|
|
128
|
+
* // "STRING_VALUE",
|
|
129
|
+
* // ],
|
|
130
|
+
* // ColumnWildcard: { // ColumnWildcard
|
|
131
|
+
* // ExcludedColumnNames: [
|
|
132
|
+
* // "STRING_VALUE",
|
|
133
|
+
* // ],
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // DataLocation: { // DataLocationResource
|
|
137
|
+
* // CatalogId: "STRING_VALUE",
|
|
138
|
+
* // ResourceArn: "STRING_VALUE", // required
|
|
139
|
+
* // },
|
|
140
|
+
* // DataCellsFilter: { // DataCellsFilterResource
|
|
141
|
+
* // TableCatalogId: "STRING_VALUE",
|
|
142
|
+
* // DatabaseName: "STRING_VALUE",
|
|
143
|
+
* // TableName: "STRING_VALUE",
|
|
144
|
+
* // Name: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // LFTag: { // LFTagKeyResource
|
|
147
|
+
* // CatalogId: "STRING_VALUE",
|
|
148
|
+
* // TagKey: "STRING_VALUE", // required
|
|
149
|
+
* // TagValues: [ // TagValueList // required
|
|
150
|
+
* // "STRING_VALUE",
|
|
151
|
+
* // ],
|
|
152
|
+
* // },
|
|
153
|
+
* // LFTagPolicy: { // LFTagPolicyResource
|
|
154
|
+
* // CatalogId: "STRING_VALUE",
|
|
155
|
+
* // ResourceType: "DATABASE" || "TABLE", // required
|
|
156
|
+
* // Expression: [ // Expression // required
|
|
157
|
+
* // { // LFTag
|
|
158
|
+
* // TagKey: "STRING_VALUE", // required
|
|
159
|
+
* // TagValues: [ // required
|
|
160
|
+
* // "STRING_VALUE",
|
|
161
|
+
* // ],
|
|
162
|
+
* // },
|
|
163
|
+
* // ],
|
|
164
|
+
* // },
|
|
165
|
+
* // },
|
|
166
|
+
* // Permissions: [ // PermissionList
|
|
167
|
+
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
|
|
168
|
+
* // ],
|
|
169
|
+
* // PermissionsWithGrantOption: [
|
|
170
|
+
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
|
|
171
|
+
* // ],
|
|
172
|
+
* // },
|
|
173
|
+
* // Error: { // ErrorDetail
|
|
174
|
+
* // ErrorCode: "STRING_VALUE",
|
|
175
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
176
|
+
* // },
|
|
177
|
+
* // },
|
|
178
|
+
* // ],
|
|
179
|
+
* // };
|
|
180
|
+
*
|
|
103
181
|
* ```
|
|
104
182
|
*
|
|
105
183
|
* @param BatchRevokePermissionsCommandInput - {@link BatchRevokePermissionsCommandInput}
|
|
@@ -114,6 +192,8 @@ export interface BatchRevokePermissionsCommandOutput extends BatchRevokePermissi
|
|
|
114
192
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
115
193
|
* <p>The operation timed out.</p>
|
|
116
194
|
*
|
|
195
|
+
* @throws {@link LakeFormationServiceException}
|
|
196
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
117
197
|
*
|
|
118
198
|
*/
|
|
119
199
|
export declare class BatchRevokePermissionsCommand extends $Command<BatchRevokePermissionsCommandInput, BatchRevokePermissionsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelTransactionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param CancelTransactionCommandInput - {@link CancelTransactionCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons
|
|
|
60
62
|
* @throws {@link TransactionCommittedException} (client fault)
|
|
61
63
|
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link LakeFormationServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class CancelTransactionCommand extends $Command<CancelTransactionCommandInput, CancelTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CommitTransactionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // CommitTransactionResponse
|
|
35
|
+
* // TransactionStatus: "ACTIVE" || "COMMITTED" || "ABORTED" || "COMMIT_IN_PROGRESS",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param CommitTransactionCommandInput - {@link CommitTransactionCommandInput}
|
|
@@ -57,6 +61,8 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
|
|
|
57
61
|
* @throws {@link TransactionCanceledException} (client fault)
|
|
58
62
|
* <p>Contains details about an error related to a transaction that was cancelled.</p>
|
|
59
63
|
*
|
|
64
|
+
* @throws {@link LakeFormationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
60
66
|
*
|
|
61
67
|
*/
|
|
62
68
|
export declare class CommitTransactionCommand extends $Command<CommitTransactionCommandInput, CommitTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -49,6 +49,8 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new CreateDataCellsFilterCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // {};
|
|
53
|
+
*
|
|
52
54
|
* ```
|
|
53
55
|
*
|
|
54
56
|
* @param CreateDataCellsFilterCommandInput - {@link CreateDataCellsFilterCommandInput}
|
|
@@ -78,6 +80,8 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte
|
|
|
78
80
|
* @throws {@link ResourceNumberLimitExceededException} (client fault)
|
|
79
81
|
* <p>A resource numerical limit was exceeded.</p>
|
|
80
82
|
*
|
|
83
|
+
* @throws {@link LakeFormationServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
81
85
|
*
|
|
82
86
|
*/
|
|
83
87
|
export declare class CreateDataCellsFilterCommand extends $Command<CreateDataCellsFilterCommandInput, CreateDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateLFTagCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param CreateLFTagCommandInput - {@link CreateLFTagCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat
|
|
|
61
63
|
* @throws {@link ResourceNumberLimitExceededException} (client fault)
|
|
62
64
|
* <p>A resource numerical limit was exceeded.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link LakeFormationServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class CreateLFTagCommand extends $Command<CreateLFTagCommandInput, CreateLFTagCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteDataCellsFilterCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteDataCellsFilterCommandInput - {@link DeleteDataCellsFilterCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte
|
|
|
57
59
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
58
60
|
* <p>The operation timed out.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link LakeFormationServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteDataCellsFilterCommand extends $Command<DeleteDataCellsFilterCommandInput, DeleteDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteLFTagCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteLFTagCommandInput - {@link DeleteLFTagCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat
|
|
|
55
57
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
56
58
|
* <p>The operation timed out.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link LakeFormationServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteLFTagCommand extends $Command<DeleteLFTagCommandInput, DeleteLFTagCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -47,6 +47,8 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new DeleteObjectsOnCancelCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
50
52
|
* ```
|
|
51
53
|
*
|
|
52
54
|
* @param DeleteObjectsOnCancelCommandInput - {@link DeleteObjectsOnCancelCommandInput}
|
|
@@ -79,6 +81,8 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance
|
|
|
79
81
|
* @throws {@link TransactionCommittedException} (client fault)
|
|
80
82
|
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
81
83
|
*
|
|
84
|
+
* @throws {@link LakeFormationServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
82
86
|
*
|
|
83
87
|
*/
|
|
84
88
|
export declare class DeleteObjectsOnCancelCommand extends $Command<DeleteObjectsOnCancelCommandInput, DeleteObjectsOnCancelCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeregisterResourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeregisterResourceCommandInput - {@link DeregisterResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo
|
|
|
52
54
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
53
55
|
* <p>The operation timed out.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link LakeFormationServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeregisterResourceCommand extends $Command<DeregisterResourceCommandInput, DeregisterResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeResourceResponse
|
|
35
|
+
* // ResourceInfo: { // ResourceInfo
|
|
36
|
+
* // ResourceArn: "STRING_VALUE",
|
|
37
|
+
* // RoleArn: "STRING_VALUE",
|
|
38
|
+
* // LastModified: new Date("TIMESTAMP"),
|
|
39
|
+
* // WithFederation: true || false,
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param DescribeResourceCommandInput - {@link DescribeResourceCommandInput}
|
|
@@ -51,6 +60,8 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse,
|
|
|
51
60
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
52
61
|
* <p>The operation timed out.</p>
|
|
53
62
|
*
|
|
63
|
+
* @throws {@link LakeFormationServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
54
65
|
*
|
|
55
66
|
*/
|
|
56
67
|
export declare class DescribeResourceCommand extends $Command<DescribeResourceCommandInput, DescribeResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeTransactionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeTransactionResponse
|
|
35
|
+
* // TransactionDescription: { // TransactionDescription
|
|
36
|
+
* // TransactionId: "STRING_VALUE",
|
|
37
|
+
* // TransactionStatus: "ACTIVE" || "COMMITTED" || "ABORTED" || "COMMIT_IN_PROGRESS",
|
|
38
|
+
* // TransactionStartTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // TransactionEndTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param DescribeTransactionCommandInput - {@link DescribeTransactionCommandInput}
|
|
@@ -51,6 +60,8 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes
|
|
|
51
60
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
52
61
|
* <p>The operation timed out.</p>
|
|
53
62
|
*
|
|
63
|
+
* @throws {@link LakeFormationServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
54
65
|
*
|
|
55
66
|
*/
|
|
56
67
|
export declare class DescribeTransactionCommand extends $Command<DescribeTransactionCommandInput, DescribeTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ExtendTransactionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param ExtendTransactionCommandInput - {@link ExtendTransactionCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons
|
|
|
61
63
|
* @throws {@link TransactionCommittedException} (client fault)
|
|
62
64
|
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link LakeFormationServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class ExtendTransactionCommand extends $Command<ExtendTransactionCommandInput, ExtendTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,28 @@ export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetDataCellsFilterCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetDataCellsFilterResponse
|
|
38
|
+
* // DataCellsFilter: { // DataCellsFilter
|
|
39
|
+
* // TableCatalogId: "STRING_VALUE", // required
|
|
40
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
41
|
+
* // TableName: "STRING_VALUE", // required
|
|
42
|
+
* // Name: "STRING_VALUE", // required
|
|
43
|
+
* // RowFilter: { // RowFilter
|
|
44
|
+
* // FilterExpression: "STRING_VALUE",
|
|
45
|
+
* // AllRowsWildcard: {},
|
|
46
|
+
* // },
|
|
47
|
+
* // ColumnNames: [ // ColumnNames
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // ColumnWildcard: { // ColumnWildcard
|
|
51
|
+
* // ExcludedColumnNames: [
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // VersionId: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
37
59
|
* ```
|
|
38
60
|
*
|
|
39
61
|
* @param GetDataCellsFilterCommandInput - {@link GetDataCellsFilterCommandInput}
|
|
@@ -57,6 +79,8 @@ export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterRespo
|
|
|
57
79
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
58
80
|
* <p>The operation timed out.</p>
|
|
59
81
|
*
|
|
82
|
+
* @throws {@link LakeFormationServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
60
84
|
*
|
|
61
85
|
*/
|
|
62
86
|
export declare class GetDataCellsFilterCommand extends $Command<GetDataCellsFilterCommandInput, GetDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -31,6 +31,51 @@ export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDataLakeSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDataLakeSettingsResponse
|
|
35
|
+
* // DataLakeSettings: { // DataLakeSettings
|
|
36
|
+
* // DataLakeAdmins: [ // DataLakePrincipalList
|
|
37
|
+
* // { // DataLakePrincipal
|
|
38
|
+
* // DataLakePrincipalIdentifier: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // CreateDatabaseDefaultPermissions: [ // PrincipalPermissionsList
|
|
42
|
+
* // { // PrincipalPermissions
|
|
43
|
+
* // Principal: {
|
|
44
|
+
* // DataLakePrincipalIdentifier: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // Permissions: [ // PermissionList
|
|
47
|
+
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // CreateTableDefaultPermissions: [
|
|
52
|
+
* // {
|
|
53
|
+
* // Principal: {
|
|
54
|
+
* // DataLakePrincipalIdentifier: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // Permissions: [
|
|
57
|
+
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // Parameters: { // ParametersMap
|
|
62
|
+
* // "<keys>": "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // TrustedResourceOwners: [ // TrustedResourceOwners
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // AllowExternalDataFiltering: true || false,
|
|
68
|
+
* // ExternalDataFilteringAllowList: [
|
|
69
|
+
* // {
|
|
70
|
+
* // DataLakePrincipalIdentifier: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // AuthorizedSessionTagValueList: [ // AuthorizedSessionTagValueList
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
34
79
|
* ```
|
|
35
80
|
*
|
|
36
81
|
* @param GetDataLakeSettingsCommandInput - {@link GetDataLakeSettingsCommandInput}
|
|
@@ -48,6 +93,8 @@ export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsRes
|
|
|
48
93
|
* @throws {@link InvalidInputException} (client fault)
|
|
49
94
|
* <p>The input provided was not valid.</p>
|
|
50
95
|
*
|
|
96
|
+
* @throws {@link LakeFormationServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
51
98
|
*
|
|
52
99
|
*/
|
|
53
100
|
export declare class GetDataLakeSettingsCommand extends $Command<GetDataLakeSettingsCommandInput, GetDataLakeSettingsCommandOutput, LakeFormationClientResolvedConfig> {
|