@aws-sdk/client-lakeformation 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/LakeFormation.d.ts +0 -45
- package/dist-types/ts3.4/LakeFormationClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddLFTagsToResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGrantPermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchRevokePermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CancelTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CommitTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDataCellsFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLFTagCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteDataCellsFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLFTagCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteObjectsOnCancelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeregisterResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExtendTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDataLakeSettingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEffectivePermissionsForPathCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLFTagCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetQueryStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetQueryStatisticsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetResourceLFTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTableObjectsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetWorkUnitResultsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetWorkUnitsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GrantPermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDataCellsFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLFTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTableStorageOptimizersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTransactionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutDataLakeSettingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveLFTagsFromResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RevokePermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SearchDatabasesByLFTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SearchTablesByLFTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartQueryPlanningCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLFTagCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateTableObjectsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateTableStorageOptimizerCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/LakeFormationServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -447
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,150 +1,99 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Readable } from "stream";
|
|
3
3
|
import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException";
|
|
4
|
-
|
|
5
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
5
|
readonly name: "AccessDeniedException";
|
|
7
6
|
readonly $fault: "client";
|
|
8
|
-
|
|
9
7
|
Message?: string;
|
|
10
|
-
|
|
11
8
|
constructor(
|
|
12
9
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
13
10
|
);
|
|
14
11
|
}
|
|
15
|
-
|
|
16
12
|
export interface LFTagPair {
|
|
17
13
|
CatalogId?: string;
|
|
18
|
-
|
|
19
14
|
TagKey: string | undefined;
|
|
20
|
-
|
|
21
15
|
TagValues: string[] | undefined;
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
export interface CatalogResource {}
|
|
25
|
-
|
|
26
18
|
export interface DatabaseResource {
|
|
27
19
|
CatalogId?: string;
|
|
28
|
-
|
|
29
20
|
Name: string | undefined;
|
|
30
21
|
}
|
|
31
|
-
|
|
32
22
|
export interface DataCellsFilterResource {
|
|
33
23
|
TableCatalogId?: string;
|
|
34
|
-
|
|
35
24
|
DatabaseName?: string;
|
|
36
|
-
|
|
37
25
|
TableName?: string;
|
|
38
|
-
|
|
39
26
|
Name?: string;
|
|
40
27
|
}
|
|
41
|
-
|
|
42
28
|
export interface DataLocationResource {
|
|
43
29
|
CatalogId?: string;
|
|
44
|
-
|
|
45
30
|
ResourceArn: string | undefined;
|
|
46
31
|
}
|
|
47
|
-
|
|
48
32
|
export interface LFTagKeyResource {
|
|
49
33
|
CatalogId?: string;
|
|
50
|
-
|
|
51
34
|
TagKey: string | undefined;
|
|
52
|
-
|
|
53
35
|
TagValues: string[] | undefined;
|
|
54
36
|
}
|
|
55
|
-
|
|
56
37
|
export interface LFTag {
|
|
57
38
|
TagKey: string | undefined;
|
|
58
|
-
|
|
59
39
|
TagValues: string[] | undefined;
|
|
60
40
|
}
|
|
61
41
|
export declare enum ResourceType {
|
|
62
42
|
DATABASE = "DATABASE",
|
|
63
43
|
TABLE = "TABLE",
|
|
64
44
|
}
|
|
65
|
-
|
|
66
45
|
export interface LFTagPolicyResource {
|
|
67
46
|
CatalogId?: string;
|
|
68
|
-
|
|
69
47
|
ResourceType: ResourceType | string | undefined;
|
|
70
|
-
|
|
71
48
|
Expression: LFTag[] | undefined;
|
|
72
49
|
}
|
|
73
|
-
|
|
74
50
|
export interface TableWildcard {}
|
|
75
|
-
|
|
76
51
|
export interface TableResource {
|
|
77
52
|
CatalogId?: string;
|
|
78
|
-
|
|
79
53
|
DatabaseName: string | undefined;
|
|
80
|
-
|
|
81
54
|
Name?: string;
|
|
82
|
-
|
|
83
55
|
TableWildcard?: TableWildcard;
|
|
84
56
|
}
|
|
85
|
-
|
|
86
57
|
export interface ColumnWildcard {
|
|
87
58
|
ExcludedColumnNames?: string[];
|
|
88
59
|
}
|
|
89
|
-
|
|
90
60
|
export interface TableWithColumnsResource {
|
|
91
61
|
CatalogId?: string;
|
|
92
|
-
|
|
93
62
|
DatabaseName: string | undefined;
|
|
94
|
-
|
|
95
63
|
Name: string | undefined;
|
|
96
|
-
|
|
97
64
|
ColumnNames?: string[];
|
|
98
|
-
|
|
99
65
|
ColumnWildcard?: ColumnWildcard;
|
|
100
66
|
}
|
|
101
|
-
|
|
102
67
|
export interface Resource {
|
|
103
68
|
Catalog?: CatalogResource;
|
|
104
|
-
|
|
105
69
|
Database?: DatabaseResource;
|
|
106
|
-
|
|
107
70
|
Table?: TableResource;
|
|
108
|
-
|
|
109
71
|
TableWithColumns?: TableWithColumnsResource;
|
|
110
|
-
|
|
111
72
|
DataLocation?: DataLocationResource;
|
|
112
|
-
|
|
113
73
|
DataCellsFilter?: DataCellsFilterResource;
|
|
114
|
-
|
|
115
74
|
LFTag?: LFTagKeyResource;
|
|
116
|
-
|
|
117
75
|
LFTagPolicy?: LFTagPolicyResource;
|
|
118
76
|
}
|
|
119
77
|
export interface AddLFTagsToResourceRequest {
|
|
120
78
|
CatalogId?: string;
|
|
121
|
-
|
|
122
79
|
Resource: Resource | undefined;
|
|
123
|
-
|
|
124
80
|
LFTags: LFTagPair[] | undefined;
|
|
125
81
|
}
|
|
126
|
-
|
|
127
82
|
export interface ErrorDetail {
|
|
128
83
|
ErrorCode?: string;
|
|
129
|
-
|
|
130
84
|
ErrorMessage?: string;
|
|
131
85
|
}
|
|
132
|
-
|
|
133
86
|
export interface LFTagError {
|
|
134
87
|
LFTag?: LFTagPair;
|
|
135
|
-
|
|
136
88
|
Error?: ErrorDetail;
|
|
137
89
|
}
|
|
138
90
|
export interface AddLFTagsToResourceResponse {
|
|
139
91
|
Failures?: LFTagError[];
|
|
140
92
|
}
|
|
141
|
-
|
|
142
93
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
143
94
|
readonly name: "ConcurrentModificationException";
|
|
144
95
|
readonly $fault: "client";
|
|
145
|
-
|
|
146
96
|
Message?: string;
|
|
147
|
-
|
|
148
97
|
constructor(
|
|
149
98
|
opts: __ExceptionOptionType<
|
|
150
99
|
ConcurrentModificationException,
|
|
@@ -152,92 +101,65 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
152
101
|
>
|
|
153
102
|
);
|
|
154
103
|
}
|
|
155
|
-
|
|
156
104
|
export declare class EntityNotFoundException extends __BaseException {
|
|
157
105
|
readonly name: "EntityNotFoundException";
|
|
158
106
|
readonly $fault: "client";
|
|
159
|
-
|
|
160
107
|
Message?: string;
|
|
161
|
-
|
|
162
108
|
constructor(
|
|
163
109
|
opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>
|
|
164
110
|
);
|
|
165
111
|
}
|
|
166
|
-
|
|
167
112
|
export declare class InternalServiceException extends __BaseException {
|
|
168
113
|
readonly name: "InternalServiceException";
|
|
169
114
|
readonly $fault: "server";
|
|
170
|
-
|
|
171
115
|
Message?: string;
|
|
172
|
-
|
|
173
116
|
constructor(
|
|
174
117
|
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
175
118
|
);
|
|
176
119
|
}
|
|
177
|
-
|
|
178
120
|
export declare class InvalidInputException extends __BaseException {
|
|
179
121
|
readonly name: "InvalidInputException";
|
|
180
122
|
readonly $fault: "client";
|
|
181
|
-
|
|
182
123
|
Message?: string;
|
|
183
|
-
|
|
184
124
|
constructor(
|
|
185
125
|
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
186
126
|
);
|
|
187
127
|
}
|
|
188
|
-
|
|
189
128
|
export declare class OperationTimeoutException extends __BaseException {
|
|
190
129
|
readonly name: "OperationTimeoutException";
|
|
191
130
|
readonly $fault: "client";
|
|
192
|
-
|
|
193
131
|
Message?: string;
|
|
194
|
-
|
|
195
132
|
constructor(
|
|
196
133
|
opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>
|
|
197
134
|
);
|
|
198
135
|
}
|
|
199
|
-
|
|
200
136
|
export interface AddObjectInput {
|
|
201
137
|
Uri: string | undefined;
|
|
202
|
-
|
|
203
138
|
ETag: string | undefined;
|
|
204
|
-
|
|
205
139
|
Size: number | undefined;
|
|
206
|
-
|
|
207
140
|
PartitionValues?: string[];
|
|
208
141
|
}
|
|
209
|
-
|
|
210
142
|
export interface AllRowsWildcard {}
|
|
211
|
-
|
|
212
143
|
export declare class AlreadyExistsException extends __BaseException {
|
|
213
144
|
readonly name: "AlreadyExistsException";
|
|
214
145
|
readonly $fault: "client";
|
|
215
|
-
|
|
216
146
|
Message?: string;
|
|
217
|
-
|
|
218
147
|
constructor(
|
|
219
148
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
220
149
|
);
|
|
221
150
|
}
|
|
222
151
|
export interface AssumeDecoratedRoleWithSAMLRequest {
|
|
223
152
|
SAMLAssertion: string | undefined;
|
|
224
|
-
|
|
225
153
|
RoleArn: string | undefined;
|
|
226
|
-
|
|
227
154
|
PrincipalArn: string | undefined;
|
|
228
|
-
|
|
229
155
|
DurationSeconds?: number;
|
|
230
156
|
}
|
|
231
157
|
export interface AssumeDecoratedRoleWithSAMLResponse {
|
|
232
158
|
AccessKeyId?: string;
|
|
233
|
-
|
|
234
159
|
SecretAccessKey?: string;
|
|
235
|
-
|
|
236
160
|
SessionToken?: string;
|
|
237
|
-
|
|
238
161
|
Expiration?: Date;
|
|
239
162
|
}
|
|
240
|
-
|
|
241
163
|
export interface AuditContext {
|
|
242
164
|
AdditionalAuditContext?: string;
|
|
243
165
|
}
|
|
@@ -255,31 +177,22 @@ export declare enum Permission {
|
|
|
255
177
|
INSERT = "INSERT",
|
|
256
178
|
SELECT = "SELECT",
|
|
257
179
|
}
|
|
258
|
-
|
|
259
180
|
export interface DataLakePrincipal {
|
|
260
181
|
DataLakePrincipalIdentifier?: string;
|
|
261
182
|
}
|
|
262
|
-
|
|
263
183
|
export interface BatchPermissionsRequestEntry {
|
|
264
184
|
Id: string | undefined;
|
|
265
|
-
|
|
266
185
|
Principal?: DataLakePrincipal;
|
|
267
|
-
|
|
268
186
|
Resource?: Resource;
|
|
269
|
-
|
|
270
187
|
Permissions?: (Permission | string)[];
|
|
271
|
-
|
|
272
188
|
PermissionsWithGrantOption?: (Permission | string)[];
|
|
273
189
|
}
|
|
274
190
|
export interface BatchGrantPermissionsRequest {
|
|
275
191
|
CatalogId?: string;
|
|
276
|
-
|
|
277
192
|
Entries: BatchPermissionsRequestEntry[] | undefined;
|
|
278
193
|
}
|
|
279
|
-
|
|
280
194
|
export interface BatchPermissionsFailureEntry {
|
|
281
195
|
RequestEntry?: BatchPermissionsRequestEntry;
|
|
282
|
-
|
|
283
196
|
Error?: ErrorDetail;
|
|
284
197
|
}
|
|
285
198
|
export interface BatchGrantPermissionsResponse {
|
|
@@ -287,7 +200,6 @@ export interface BatchGrantPermissionsResponse {
|
|
|
287
200
|
}
|
|
288
201
|
export interface BatchRevokePermissionsRequest {
|
|
289
202
|
CatalogId?: string;
|
|
290
|
-
|
|
291
203
|
Entries: BatchPermissionsRequestEntry[] | undefined;
|
|
292
204
|
}
|
|
293
205
|
export interface BatchRevokePermissionsResponse {
|
|
@@ -297,13 +209,10 @@ export interface CancelTransactionRequest {
|
|
|
297
209
|
TransactionId: string | undefined;
|
|
298
210
|
}
|
|
299
211
|
export interface CancelTransactionResponse {}
|
|
300
|
-
|
|
301
212
|
export declare class TransactionCommitInProgressException extends __BaseException {
|
|
302
213
|
readonly name: "TransactionCommitInProgressException";
|
|
303
214
|
readonly $fault: "client";
|
|
304
|
-
|
|
305
215
|
Message?: string;
|
|
306
|
-
|
|
307
216
|
constructor(
|
|
308
217
|
opts: __ExceptionOptionType<
|
|
309
218
|
TransactionCommitInProgressException,
|
|
@@ -311,13 +220,10 @@ export declare class TransactionCommitInProgressException extends __BaseExceptio
|
|
|
311
220
|
>
|
|
312
221
|
);
|
|
313
222
|
}
|
|
314
|
-
|
|
315
223
|
export declare class TransactionCommittedException extends __BaseException {
|
|
316
224
|
readonly name: "TransactionCommittedException";
|
|
317
225
|
readonly $fault: "client";
|
|
318
|
-
|
|
319
226
|
Message?: string;
|
|
320
|
-
|
|
321
227
|
constructor(
|
|
322
228
|
opts: __ExceptionOptionType<TransactionCommittedException, __BaseException>
|
|
323
229
|
);
|
|
@@ -334,50 +240,35 @@ export declare enum TransactionStatus {
|
|
|
334
240
|
export interface CommitTransactionResponse {
|
|
335
241
|
TransactionStatus?: TransactionStatus | string;
|
|
336
242
|
}
|
|
337
|
-
|
|
338
243
|
export declare class TransactionCanceledException extends __BaseException {
|
|
339
244
|
readonly name: "TransactionCanceledException";
|
|
340
245
|
readonly $fault: "client";
|
|
341
|
-
|
|
342
246
|
Message?: string;
|
|
343
|
-
|
|
344
247
|
constructor(
|
|
345
248
|
opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>
|
|
346
249
|
);
|
|
347
250
|
}
|
|
348
|
-
|
|
349
251
|
export interface RowFilter {
|
|
350
252
|
FilterExpression?: string;
|
|
351
|
-
|
|
352
253
|
AllRowsWildcard?: AllRowsWildcard;
|
|
353
254
|
}
|
|
354
|
-
|
|
355
255
|
export interface DataCellsFilter {
|
|
356
256
|
TableCatalogId: string | undefined;
|
|
357
|
-
|
|
358
257
|
DatabaseName: string | undefined;
|
|
359
|
-
|
|
360
258
|
TableName: string | undefined;
|
|
361
|
-
|
|
362
259
|
Name: string | undefined;
|
|
363
|
-
|
|
364
260
|
RowFilter?: RowFilter;
|
|
365
|
-
|
|
366
261
|
ColumnNames?: string[];
|
|
367
|
-
|
|
368
262
|
ColumnWildcard?: ColumnWildcard;
|
|
369
263
|
}
|
|
370
264
|
export interface CreateDataCellsFilterRequest {
|
|
371
265
|
TableData: DataCellsFilter | undefined;
|
|
372
266
|
}
|
|
373
267
|
export interface CreateDataCellsFilterResponse {}
|
|
374
|
-
|
|
375
268
|
export declare class ResourceNumberLimitExceededException extends __BaseException {
|
|
376
269
|
readonly name: "ResourceNumberLimitExceededException";
|
|
377
270
|
readonly $fault: "client";
|
|
378
|
-
|
|
379
271
|
Message?: string;
|
|
380
|
-
|
|
381
272
|
constructor(
|
|
382
273
|
opts: __ExceptionOptionType<
|
|
383
274
|
ResourceNumberLimitExceededException,
|
|
@@ -387,53 +278,38 @@ export declare class ResourceNumberLimitExceededException extends __BaseExceptio
|
|
|
387
278
|
}
|
|
388
279
|
export interface CreateLFTagRequest {
|
|
389
280
|
CatalogId?: string;
|
|
390
|
-
|
|
391
281
|
TagKey: string | undefined;
|
|
392
|
-
|
|
393
282
|
TagValues: string[] | undefined;
|
|
394
283
|
}
|
|
395
284
|
export interface CreateLFTagResponse {}
|
|
396
285
|
export interface DeleteDataCellsFilterRequest {
|
|
397
286
|
TableCatalogId?: string;
|
|
398
|
-
|
|
399
287
|
DatabaseName?: string;
|
|
400
|
-
|
|
401
288
|
TableName?: string;
|
|
402
|
-
|
|
403
289
|
Name?: string;
|
|
404
290
|
}
|
|
405
291
|
export interface DeleteDataCellsFilterResponse {}
|
|
406
292
|
export interface DeleteLFTagRequest {
|
|
407
293
|
CatalogId?: string;
|
|
408
|
-
|
|
409
294
|
TagKey: string | undefined;
|
|
410
295
|
}
|
|
411
296
|
export interface DeleteLFTagResponse {}
|
|
412
|
-
|
|
413
297
|
export interface VirtualObject {
|
|
414
298
|
Uri: string | undefined;
|
|
415
|
-
|
|
416
299
|
ETag?: string;
|
|
417
300
|
}
|
|
418
301
|
export interface DeleteObjectsOnCancelRequest {
|
|
419
302
|
CatalogId?: string;
|
|
420
|
-
|
|
421
303
|
DatabaseName: string | undefined;
|
|
422
|
-
|
|
423
304
|
TableName: string | undefined;
|
|
424
|
-
|
|
425
305
|
TransactionId: string | undefined;
|
|
426
|
-
|
|
427
306
|
Objects: VirtualObject[] | undefined;
|
|
428
307
|
}
|
|
429
308
|
export interface DeleteObjectsOnCancelResponse {}
|
|
430
|
-
|
|
431
309
|
export declare class ResourceNotReadyException extends __BaseException {
|
|
432
310
|
readonly name: "ResourceNotReadyException";
|
|
433
311
|
readonly $fault: "client";
|
|
434
|
-
|
|
435
312
|
Message?: string;
|
|
436
|
-
|
|
437
313
|
constructor(
|
|
438
314
|
opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
|
|
439
315
|
);
|
|
@@ -445,12 +321,9 @@ export interface DeregisterResourceResponse {}
|
|
|
445
321
|
export interface DescribeResourceRequest {
|
|
446
322
|
ResourceArn: string | undefined;
|
|
447
323
|
}
|
|
448
|
-
|
|
449
324
|
export interface ResourceInfo {
|
|
450
325
|
ResourceArn?: string;
|
|
451
|
-
|
|
452
326
|
RoleArn?: string;
|
|
453
|
-
|
|
454
327
|
LastModified?: Date;
|
|
455
328
|
}
|
|
456
329
|
export interface DescribeResourceResponse {
|
|
@@ -459,14 +332,10 @@ export interface DescribeResourceResponse {
|
|
|
459
332
|
export interface DescribeTransactionRequest {
|
|
460
333
|
TransactionId: string | undefined;
|
|
461
334
|
}
|
|
462
|
-
|
|
463
335
|
export interface TransactionDescription {
|
|
464
336
|
TransactionId?: string;
|
|
465
|
-
|
|
466
337
|
TransactionStatus?: TransactionStatus | string;
|
|
467
|
-
|
|
468
338
|
TransactionStartTime?: Date;
|
|
469
|
-
|
|
470
339
|
TransactionEndTime?: Date;
|
|
471
340
|
}
|
|
472
341
|
export interface DescribeTransactionResponse {
|
|
@@ -479,26 +348,17 @@ export interface ExtendTransactionResponse {}
|
|
|
479
348
|
export interface GetDataLakeSettingsRequest {
|
|
480
349
|
CatalogId?: string;
|
|
481
350
|
}
|
|
482
|
-
|
|
483
351
|
export interface PrincipalPermissions {
|
|
484
352
|
Principal?: DataLakePrincipal;
|
|
485
|
-
|
|
486
353
|
Permissions?: (Permission | string)[];
|
|
487
354
|
}
|
|
488
|
-
|
|
489
355
|
export interface DataLakeSettings {
|
|
490
356
|
DataLakeAdmins?: DataLakePrincipal[];
|
|
491
|
-
|
|
492
357
|
CreateDatabaseDefaultPermissions?: PrincipalPermissions[];
|
|
493
|
-
|
|
494
358
|
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
495
|
-
|
|
496
359
|
TrustedResourceOwners?: string[];
|
|
497
|
-
|
|
498
360
|
AllowExternalDataFiltering?: boolean;
|
|
499
|
-
|
|
500
361
|
ExternalDataFilteringAllowList?: DataLakePrincipal[];
|
|
501
|
-
|
|
502
362
|
AuthorizedSessionTagValueList?: string[];
|
|
503
363
|
}
|
|
504
364
|
export interface GetDataLakeSettingsResponse {
|
|
@@ -506,44 +366,31 @@ export interface GetDataLakeSettingsResponse {
|
|
|
506
366
|
}
|
|
507
367
|
export interface GetEffectivePermissionsForPathRequest {
|
|
508
368
|
CatalogId?: string;
|
|
509
|
-
|
|
510
369
|
ResourceArn: string | undefined;
|
|
511
|
-
|
|
512
370
|
NextToken?: string;
|
|
513
|
-
|
|
514
371
|
MaxResults?: number;
|
|
515
372
|
}
|
|
516
|
-
|
|
517
373
|
export interface DetailsMap {
|
|
518
374
|
ResourceShare?: string[];
|
|
519
375
|
}
|
|
520
|
-
|
|
521
376
|
export interface PrincipalResourcePermissions {
|
|
522
377
|
Principal?: DataLakePrincipal;
|
|
523
|
-
|
|
524
378
|
Resource?: Resource;
|
|
525
|
-
|
|
526
379
|
Permissions?: (Permission | string)[];
|
|
527
|
-
|
|
528
380
|
PermissionsWithGrantOption?: (Permission | string)[];
|
|
529
|
-
|
|
530
381
|
AdditionalDetails?: DetailsMap;
|
|
531
382
|
}
|
|
532
383
|
export interface GetEffectivePermissionsForPathResponse {
|
|
533
384
|
Permissions?: PrincipalResourcePermissions[];
|
|
534
|
-
|
|
535
385
|
NextToken?: string;
|
|
536
386
|
}
|
|
537
387
|
export interface GetLFTagRequest {
|
|
538
388
|
CatalogId?: string;
|
|
539
|
-
|
|
540
389
|
TagKey: string | undefined;
|
|
541
390
|
}
|
|
542
391
|
export interface GetLFTagResponse {
|
|
543
392
|
CatalogId?: string;
|
|
544
|
-
|
|
545
393
|
TagKey?: string;
|
|
546
|
-
|
|
547
394
|
TagValues?: string[];
|
|
548
395
|
}
|
|
549
396
|
export interface GetQueryStateRequest {
|
|
@@ -556,140 +403,97 @@ export declare enum QueryStateString {
|
|
|
556
403
|
PENDING = "PENDING",
|
|
557
404
|
WORKUNITS_AVAILABLE = "WORKUNITS_AVAILABLE",
|
|
558
405
|
}
|
|
559
|
-
|
|
560
406
|
export interface GetQueryStateResponse {
|
|
561
407
|
Error?: string;
|
|
562
|
-
|
|
563
408
|
State: QueryStateString | string | undefined;
|
|
564
409
|
}
|
|
565
|
-
|
|
566
410
|
export declare class ExpiredException extends __BaseException {
|
|
567
411
|
readonly name: "ExpiredException";
|
|
568
412
|
readonly $fault: "client";
|
|
569
|
-
|
|
570
413
|
Message?: string;
|
|
571
|
-
|
|
572
414
|
constructor(opts: __ExceptionOptionType<ExpiredException, __BaseException>);
|
|
573
415
|
}
|
|
574
416
|
export interface GetQueryStatisticsRequest {
|
|
575
417
|
QueryId: string | undefined;
|
|
576
418
|
}
|
|
577
|
-
|
|
578
419
|
export interface ExecutionStatistics {
|
|
579
420
|
AverageExecutionTimeMillis?: number;
|
|
580
|
-
|
|
581
421
|
DataScannedBytes?: number;
|
|
582
|
-
|
|
583
422
|
WorkUnitsExecutedCount?: number;
|
|
584
423
|
}
|
|
585
|
-
|
|
586
424
|
export interface PlanningStatistics {
|
|
587
425
|
EstimatedDataToScanBytes?: number;
|
|
588
|
-
|
|
589
426
|
PlanningTimeMillis?: number;
|
|
590
|
-
|
|
591
427
|
QueueTimeMillis?: number;
|
|
592
|
-
|
|
593
428
|
WorkUnitsGeneratedCount?: number;
|
|
594
429
|
}
|
|
595
430
|
export interface GetQueryStatisticsResponse {
|
|
596
431
|
ExecutionStatistics?: ExecutionStatistics;
|
|
597
|
-
|
|
598
432
|
PlanningStatistics?: PlanningStatistics;
|
|
599
|
-
|
|
600
433
|
QuerySubmissionTime?: Date;
|
|
601
434
|
}
|
|
602
|
-
|
|
603
435
|
export declare class StatisticsNotReadyYetException extends __BaseException {
|
|
604
436
|
readonly name: "StatisticsNotReadyYetException";
|
|
605
437
|
readonly $fault: "client";
|
|
606
|
-
|
|
607
438
|
Message?: string;
|
|
608
|
-
|
|
609
439
|
constructor(
|
|
610
440
|
opts: __ExceptionOptionType<StatisticsNotReadyYetException, __BaseException>
|
|
611
441
|
);
|
|
612
442
|
}
|
|
613
|
-
|
|
614
443
|
export declare class ThrottledException extends __BaseException {
|
|
615
444
|
readonly name: "ThrottledException";
|
|
616
445
|
readonly $fault: "client";
|
|
617
446
|
$retryable: {
|
|
618
447
|
throttling: boolean;
|
|
619
448
|
};
|
|
620
|
-
|
|
621
449
|
Message?: string;
|
|
622
|
-
|
|
623
450
|
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
624
451
|
}
|
|
625
452
|
export interface GetResourceLFTagsRequest {
|
|
626
453
|
CatalogId?: string;
|
|
627
|
-
|
|
628
454
|
Resource: Resource | undefined;
|
|
629
|
-
|
|
630
455
|
ShowAssignedLFTags?: boolean;
|
|
631
456
|
}
|
|
632
|
-
|
|
633
457
|
export interface ColumnLFTag {
|
|
634
458
|
Name?: string;
|
|
635
|
-
|
|
636
459
|
LFTags?: LFTagPair[];
|
|
637
460
|
}
|
|
638
461
|
export interface GetResourceLFTagsResponse {
|
|
639
462
|
LFTagOnDatabase?: LFTagPair[];
|
|
640
|
-
|
|
641
463
|
LFTagsOnTable?: LFTagPair[];
|
|
642
|
-
|
|
643
464
|
LFTagsOnColumns?: ColumnLFTag[];
|
|
644
465
|
}
|
|
645
|
-
|
|
646
466
|
export declare class GlueEncryptionException extends __BaseException {
|
|
647
467
|
readonly name: "GlueEncryptionException";
|
|
648
468
|
readonly $fault: "client";
|
|
649
|
-
|
|
650
469
|
Message?: string;
|
|
651
|
-
|
|
652
470
|
constructor(
|
|
653
471
|
opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>
|
|
654
472
|
);
|
|
655
473
|
}
|
|
656
474
|
export interface GetTableObjectsRequest {
|
|
657
475
|
CatalogId?: string;
|
|
658
|
-
|
|
659
476
|
DatabaseName: string | undefined;
|
|
660
|
-
|
|
661
477
|
TableName: string | undefined;
|
|
662
|
-
|
|
663
478
|
TransactionId?: string;
|
|
664
|
-
|
|
665
479
|
QueryAsOfTime?: Date;
|
|
666
|
-
|
|
667
480
|
PartitionPredicate?: string;
|
|
668
|
-
|
|
669
481
|
MaxResults?: number;
|
|
670
|
-
|
|
671
482
|
NextToken?: string;
|
|
672
483
|
}
|
|
673
|
-
|
|
674
484
|
export interface TableObject {
|
|
675
485
|
Uri?: string;
|
|
676
|
-
|
|
677
486
|
ETag?: string;
|
|
678
|
-
|
|
679
487
|
Size?: number;
|
|
680
488
|
}
|
|
681
|
-
|
|
682
489
|
export interface PartitionObjects {
|
|
683
490
|
PartitionValues?: string[];
|
|
684
|
-
|
|
685
491
|
Objects?: TableObject[];
|
|
686
492
|
}
|
|
687
493
|
export interface GetTableObjectsResponse {
|
|
688
494
|
Objects?: PartitionObjects[];
|
|
689
|
-
|
|
690
495
|
NextToken?: string;
|
|
691
496
|
}
|
|
692
|
-
|
|
693
497
|
export interface PartitionValueList {
|
|
694
498
|
Values: string[] | undefined;
|
|
695
499
|
}
|
|
@@ -699,33 +503,22 @@ export declare enum PermissionType {
|
|
|
699
503
|
}
|
|
700
504
|
export interface GetTemporaryGluePartitionCredentialsRequest {
|
|
701
505
|
TableArn: string | undefined;
|
|
702
|
-
|
|
703
506
|
Partition: PartitionValueList | undefined;
|
|
704
|
-
|
|
705
507
|
Permissions?: (Permission | string)[];
|
|
706
|
-
|
|
707
508
|
DurationSeconds?: number;
|
|
708
|
-
|
|
709
509
|
AuditContext?: AuditContext;
|
|
710
|
-
|
|
711
510
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
712
511
|
}
|
|
713
512
|
export interface GetTemporaryGluePartitionCredentialsResponse {
|
|
714
513
|
AccessKeyId?: string;
|
|
715
|
-
|
|
716
514
|
SecretAccessKey?: string;
|
|
717
|
-
|
|
718
515
|
SessionToken?: string;
|
|
719
|
-
|
|
720
516
|
Expiration?: Date;
|
|
721
517
|
}
|
|
722
|
-
|
|
723
518
|
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
724
519
|
readonly name: "PermissionTypeMismatchException";
|
|
725
520
|
readonly $fault: "client";
|
|
726
|
-
|
|
727
521
|
Message?: string;
|
|
728
|
-
|
|
729
522
|
constructor(
|
|
730
523
|
opts: __ExceptionOptionType<
|
|
731
524
|
PermissionTypeMismatchException,
|
|
@@ -735,91 +528,63 @@ export declare class PermissionTypeMismatchException extends __BaseException {
|
|
|
735
528
|
}
|
|
736
529
|
export interface GetTemporaryGlueTableCredentialsRequest {
|
|
737
530
|
TableArn: string | undefined;
|
|
738
|
-
|
|
739
531
|
Permissions?: (Permission | string)[];
|
|
740
|
-
|
|
741
532
|
DurationSeconds?: number;
|
|
742
|
-
|
|
743
533
|
AuditContext?: AuditContext;
|
|
744
|
-
|
|
745
534
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
746
535
|
}
|
|
747
536
|
export interface GetTemporaryGlueTableCredentialsResponse {
|
|
748
537
|
AccessKeyId?: string;
|
|
749
|
-
|
|
750
538
|
SecretAccessKey?: string;
|
|
751
|
-
|
|
752
539
|
SessionToken?: string;
|
|
753
|
-
|
|
754
540
|
Expiration?: Date;
|
|
755
541
|
}
|
|
756
542
|
export interface GetWorkUnitResultsRequest {
|
|
757
543
|
QueryId: string | undefined;
|
|
758
|
-
|
|
759
544
|
WorkUnitId: number | undefined;
|
|
760
|
-
|
|
761
545
|
WorkUnitToken: string | undefined;
|
|
762
546
|
}
|
|
763
|
-
|
|
764
547
|
export interface GetWorkUnitResultsResponse {
|
|
765
548
|
ResultStream?: Readable | ReadableStream | Blob;
|
|
766
549
|
}
|
|
767
550
|
export interface GetWorkUnitsRequest {
|
|
768
551
|
NextToken?: string;
|
|
769
|
-
|
|
770
552
|
PageSize?: number;
|
|
771
|
-
|
|
772
553
|
QueryId: string | undefined;
|
|
773
554
|
}
|
|
774
|
-
|
|
775
555
|
export interface WorkUnitRange {
|
|
776
556
|
WorkUnitIdMax: number | undefined;
|
|
777
|
-
|
|
778
557
|
WorkUnitIdMin: number | undefined;
|
|
779
|
-
|
|
780
558
|
WorkUnitToken: string | undefined;
|
|
781
559
|
}
|
|
782
|
-
|
|
783
560
|
export interface GetWorkUnitsResponse {
|
|
784
561
|
NextToken?: string;
|
|
785
|
-
|
|
786
562
|
QueryId: string | undefined;
|
|
787
|
-
|
|
788
563
|
WorkUnitRanges: WorkUnitRange[] | undefined;
|
|
789
564
|
}
|
|
790
|
-
|
|
791
565
|
export declare class WorkUnitsNotReadyYetException extends __BaseException {
|
|
792
566
|
readonly name: "WorkUnitsNotReadyYetException";
|
|
793
567
|
readonly $fault: "client";
|
|
794
|
-
|
|
795
568
|
Message?: string;
|
|
796
|
-
|
|
797
569
|
constructor(
|
|
798
570
|
opts: __ExceptionOptionType<WorkUnitsNotReadyYetException, __BaseException>
|
|
799
571
|
);
|
|
800
572
|
}
|
|
801
573
|
export interface GrantPermissionsRequest {
|
|
802
574
|
CatalogId?: string;
|
|
803
|
-
|
|
804
575
|
Principal: DataLakePrincipal | undefined;
|
|
805
|
-
|
|
806
576
|
Resource: Resource | undefined;
|
|
807
|
-
|
|
808
577
|
Permissions: (Permission | string)[] | undefined;
|
|
809
|
-
|
|
810
578
|
PermissionsWithGrantOption?: (Permission | string)[];
|
|
811
579
|
}
|
|
812
580
|
export interface GrantPermissionsResponse {}
|
|
813
581
|
export interface ListDataCellsFilterRequest {
|
|
814
582
|
Table?: TableResource;
|
|
815
|
-
|
|
816
583
|
NextToken?: string;
|
|
817
|
-
|
|
818
584
|
MaxResults?: number;
|
|
819
585
|
}
|
|
820
586
|
export interface ListDataCellsFilterResponse {
|
|
821
587
|
DataCellsFilters?: DataCellsFilter[];
|
|
822
|
-
|
|
823
588
|
NextToken?: string;
|
|
824
589
|
}
|
|
825
590
|
export declare enum ResourceShareType {
|
|
@@ -828,16 +593,12 @@ export declare enum ResourceShareType {
|
|
|
828
593
|
}
|
|
829
594
|
export interface ListLFTagsRequest {
|
|
830
595
|
CatalogId?: string;
|
|
831
|
-
|
|
832
596
|
ResourceShareType?: ResourceShareType | string;
|
|
833
|
-
|
|
834
597
|
MaxResults?: number;
|
|
835
|
-
|
|
836
598
|
NextToken?: string;
|
|
837
599
|
}
|
|
838
600
|
export interface ListLFTagsResponse {
|
|
839
601
|
LFTags?: LFTagPair[];
|
|
840
|
-
|
|
841
602
|
NextToken?: string;
|
|
842
603
|
}
|
|
843
604
|
export declare enum DataLakeResourceType {
|
|
@@ -852,22 +613,15 @@ export declare enum DataLakeResourceType {
|
|
|
852
613
|
}
|
|
853
614
|
export interface ListPermissionsRequest {
|
|
854
615
|
CatalogId?: string;
|
|
855
|
-
|
|
856
616
|
Principal?: DataLakePrincipal;
|
|
857
|
-
|
|
858
617
|
ResourceType?: DataLakeResourceType | string;
|
|
859
|
-
|
|
860
618
|
Resource?: Resource;
|
|
861
|
-
|
|
862
619
|
NextToken?: string;
|
|
863
|
-
|
|
864
620
|
MaxResults?: number;
|
|
865
|
-
|
|
866
621
|
IncludeRelated?: string;
|
|
867
622
|
}
|
|
868
623
|
export interface ListPermissionsResponse {
|
|
869
624
|
PrincipalResourcePermissions?: PrincipalResourcePermissions[];
|
|
870
|
-
|
|
871
625
|
NextToken?: string;
|
|
872
626
|
}
|
|
873
627
|
export declare enum ComparisonOperator {
|
|
@@ -888,24 +642,18 @@ export declare enum FieldNameString {
|
|
|
888
642
|
RESOURCE_ARN = "RESOURCE_ARN",
|
|
889
643
|
ROLE_ARN = "ROLE_ARN",
|
|
890
644
|
}
|
|
891
|
-
|
|
892
645
|
export interface FilterCondition {
|
|
893
646
|
Field?: FieldNameString | string;
|
|
894
|
-
|
|
895
647
|
ComparisonOperator?: ComparisonOperator | string;
|
|
896
|
-
|
|
897
648
|
StringValueList?: string[];
|
|
898
649
|
}
|
|
899
650
|
export interface ListResourcesRequest {
|
|
900
651
|
FilterConditionList?: FilterCondition[];
|
|
901
|
-
|
|
902
652
|
MaxResults?: number;
|
|
903
|
-
|
|
904
653
|
NextToken?: string;
|
|
905
654
|
}
|
|
906
655
|
export interface ListResourcesResponse {
|
|
907
656
|
ResourceInfoList?: ResourceInfo[];
|
|
908
|
-
|
|
909
657
|
NextToken?: string;
|
|
910
658
|
}
|
|
911
659
|
export declare enum OptimizerType {
|
|
@@ -915,32 +663,21 @@ export declare enum OptimizerType {
|
|
|
915
663
|
}
|
|
916
664
|
export interface ListTableStorageOptimizersRequest {
|
|
917
665
|
CatalogId?: string;
|
|
918
|
-
|
|
919
666
|
DatabaseName: string | undefined;
|
|
920
|
-
|
|
921
667
|
TableName: string | undefined;
|
|
922
|
-
|
|
923
668
|
StorageOptimizerType?: OptimizerType | string;
|
|
924
|
-
|
|
925
669
|
MaxResults?: number;
|
|
926
|
-
|
|
927
670
|
NextToken?: string;
|
|
928
671
|
}
|
|
929
|
-
|
|
930
672
|
export interface StorageOptimizer {
|
|
931
673
|
StorageOptimizerType?: OptimizerType | string;
|
|
932
|
-
|
|
933
674
|
Config?: Record<string, string>;
|
|
934
|
-
|
|
935
675
|
ErrorMessage?: string;
|
|
936
|
-
|
|
937
676
|
Warnings?: string;
|
|
938
|
-
|
|
939
677
|
LastRunDetails?: string;
|
|
940
678
|
}
|
|
941
679
|
export interface ListTableStorageOptimizersResponse {
|
|
942
680
|
StorageOptimizerList?: StorageOptimizer[];
|
|
943
|
-
|
|
944
681
|
NextToken?: string;
|
|
945
682
|
}
|
|
946
683
|
export declare enum TransactionStatusFilter {
|
|
@@ -952,37 +689,28 @@ export declare enum TransactionStatusFilter {
|
|
|
952
689
|
}
|
|
953
690
|
export interface ListTransactionsRequest {
|
|
954
691
|
CatalogId?: string;
|
|
955
|
-
|
|
956
692
|
StatusFilter?: TransactionStatusFilter | string;
|
|
957
|
-
|
|
958
693
|
MaxResults?: number;
|
|
959
|
-
|
|
960
694
|
NextToken?: string;
|
|
961
695
|
}
|
|
962
696
|
export interface ListTransactionsResponse {
|
|
963
697
|
Transactions?: TransactionDescription[];
|
|
964
|
-
|
|
965
698
|
NextToken?: string;
|
|
966
699
|
}
|
|
967
700
|
export interface PutDataLakeSettingsRequest {
|
|
968
701
|
CatalogId?: string;
|
|
969
|
-
|
|
970
702
|
DataLakeSettings: DataLakeSettings | undefined;
|
|
971
703
|
}
|
|
972
704
|
export interface PutDataLakeSettingsResponse {}
|
|
973
705
|
export interface RegisterResourceRequest {
|
|
974
706
|
ResourceArn: string | undefined;
|
|
975
|
-
|
|
976
707
|
UseServiceLinkedRole?: boolean;
|
|
977
|
-
|
|
978
708
|
RoleArn?: string;
|
|
979
709
|
}
|
|
980
710
|
export interface RegisterResourceResponse {}
|
|
981
711
|
export interface RemoveLFTagsFromResourceRequest {
|
|
982
712
|
CatalogId?: string;
|
|
983
|
-
|
|
984
713
|
Resource: Resource | undefined;
|
|
985
|
-
|
|
986
714
|
LFTags: LFTagPair[] | undefined;
|
|
987
715
|
}
|
|
988
716
|
export interface RemoveLFTagsFromResourceResponse {
|
|
@@ -990,78 +718,53 @@ export interface RemoveLFTagsFromResourceResponse {
|
|
|
990
718
|
}
|
|
991
719
|
export interface RevokePermissionsRequest {
|
|
992
720
|
CatalogId?: string;
|
|
993
|
-
|
|
994
721
|
Principal: DataLakePrincipal | undefined;
|
|
995
|
-
|
|
996
722
|
Resource: Resource | undefined;
|
|
997
|
-
|
|
998
723
|
Permissions: (Permission | string)[] | undefined;
|
|
999
|
-
|
|
1000
724
|
PermissionsWithGrantOption?: (Permission | string)[];
|
|
1001
725
|
}
|
|
1002
726
|
export interface RevokePermissionsResponse {}
|
|
1003
727
|
export interface SearchDatabasesByLFTagsRequest {
|
|
1004
728
|
NextToken?: string;
|
|
1005
|
-
|
|
1006
729
|
MaxResults?: number;
|
|
1007
|
-
|
|
1008
730
|
CatalogId?: string;
|
|
1009
|
-
|
|
1010
731
|
Expression: LFTag[] | undefined;
|
|
1011
732
|
}
|
|
1012
|
-
|
|
1013
733
|
export interface TaggedDatabase {
|
|
1014
734
|
Database?: DatabaseResource;
|
|
1015
|
-
|
|
1016
735
|
LFTags?: LFTagPair[];
|
|
1017
736
|
}
|
|
1018
737
|
export interface SearchDatabasesByLFTagsResponse {
|
|
1019
738
|
NextToken?: string;
|
|
1020
|
-
|
|
1021
739
|
DatabaseList?: TaggedDatabase[];
|
|
1022
740
|
}
|
|
1023
741
|
export interface SearchTablesByLFTagsRequest {
|
|
1024
742
|
NextToken?: string;
|
|
1025
|
-
|
|
1026
743
|
MaxResults?: number;
|
|
1027
|
-
|
|
1028
744
|
CatalogId?: string;
|
|
1029
|
-
|
|
1030
745
|
Expression: LFTag[] | undefined;
|
|
1031
746
|
}
|
|
1032
|
-
|
|
1033
747
|
export interface TaggedTable {
|
|
1034
748
|
Table?: TableResource;
|
|
1035
|
-
|
|
1036
749
|
LFTagOnDatabase?: LFTagPair[];
|
|
1037
|
-
|
|
1038
750
|
LFTagsOnTable?: LFTagPair[];
|
|
1039
|
-
|
|
1040
751
|
LFTagsOnColumns?: ColumnLFTag[];
|
|
1041
752
|
}
|
|
1042
753
|
export interface SearchTablesByLFTagsResponse {
|
|
1043
754
|
NextToken?: string;
|
|
1044
|
-
|
|
1045
755
|
TableList?: TaggedTable[];
|
|
1046
756
|
}
|
|
1047
|
-
|
|
1048
757
|
export interface QueryPlanningContext {
|
|
1049
758
|
CatalogId?: string;
|
|
1050
|
-
|
|
1051
759
|
DatabaseName: string | undefined;
|
|
1052
|
-
|
|
1053
760
|
QueryAsOfTime?: Date;
|
|
1054
|
-
|
|
1055
761
|
QueryParameters?: Record<string, string>;
|
|
1056
|
-
|
|
1057
762
|
TransactionId?: string;
|
|
1058
763
|
}
|
|
1059
764
|
export interface StartQueryPlanningRequest {
|
|
1060
765
|
QueryPlanningContext: QueryPlanningContext | undefined;
|
|
1061
|
-
|
|
1062
766
|
QueryString: string | undefined;
|
|
1063
767
|
}
|
|
1064
|
-
|
|
1065
768
|
export interface StartQueryPlanningResponse {
|
|
1066
769
|
QueryId: string | undefined;
|
|
1067
770
|
}
|
|
@@ -1077,567 +780,417 @@ export interface StartTransactionResponse {
|
|
|
1077
780
|
}
|
|
1078
781
|
export interface UpdateLFTagRequest {
|
|
1079
782
|
CatalogId?: string;
|
|
1080
|
-
|
|
1081
783
|
TagKey: string | undefined;
|
|
1082
|
-
|
|
1083
784
|
TagValuesToDelete?: string[];
|
|
1084
|
-
|
|
1085
785
|
TagValuesToAdd?: string[];
|
|
1086
786
|
}
|
|
1087
787
|
export interface UpdateLFTagResponse {}
|
|
1088
788
|
export interface UpdateResourceRequest {
|
|
1089
789
|
RoleArn: string | undefined;
|
|
1090
|
-
|
|
1091
790
|
ResourceArn: string | undefined;
|
|
1092
791
|
}
|
|
1093
792
|
export interface UpdateResourceResponse {}
|
|
1094
|
-
|
|
1095
793
|
export interface DeleteObjectInput {
|
|
1096
794
|
Uri: string | undefined;
|
|
1097
|
-
|
|
1098
795
|
ETag?: string;
|
|
1099
|
-
|
|
1100
796
|
PartitionValues?: string[];
|
|
1101
797
|
}
|
|
1102
|
-
|
|
1103
798
|
export interface WriteOperation {
|
|
1104
799
|
AddObject?: AddObjectInput;
|
|
1105
|
-
|
|
1106
800
|
DeleteObject?: DeleteObjectInput;
|
|
1107
801
|
}
|
|
1108
802
|
export interface UpdateTableObjectsRequest {
|
|
1109
803
|
CatalogId?: string;
|
|
1110
|
-
|
|
1111
804
|
DatabaseName: string | undefined;
|
|
1112
|
-
|
|
1113
805
|
TableName: string | undefined;
|
|
1114
|
-
|
|
1115
806
|
TransactionId?: string;
|
|
1116
|
-
|
|
1117
807
|
WriteOperations: WriteOperation[] | undefined;
|
|
1118
808
|
}
|
|
1119
809
|
export interface UpdateTableObjectsResponse {}
|
|
1120
810
|
export interface UpdateTableStorageOptimizerRequest {
|
|
1121
811
|
CatalogId?: string;
|
|
1122
|
-
|
|
1123
812
|
DatabaseName: string | undefined;
|
|
1124
|
-
|
|
1125
813
|
TableName: string | undefined;
|
|
1126
|
-
|
|
1127
814
|
StorageOptimizerConfig: Record<string, Record<string, string>> | undefined;
|
|
1128
815
|
}
|
|
1129
816
|
export interface UpdateTableStorageOptimizerResponse {
|
|
1130
817
|
Result?: string;
|
|
1131
818
|
}
|
|
1132
|
-
|
|
1133
819
|
export declare const LFTagPairFilterSensitiveLog: (obj: LFTagPair) => any;
|
|
1134
|
-
|
|
1135
820
|
export declare const CatalogResourceFilterSensitiveLog: (
|
|
1136
821
|
obj: CatalogResource
|
|
1137
822
|
) => any;
|
|
1138
|
-
|
|
1139
823
|
export declare const DatabaseResourceFilterSensitiveLog: (
|
|
1140
824
|
obj: DatabaseResource
|
|
1141
825
|
) => any;
|
|
1142
|
-
|
|
1143
826
|
export declare const DataCellsFilterResourceFilterSensitiveLog: (
|
|
1144
827
|
obj: DataCellsFilterResource
|
|
1145
828
|
) => any;
|
|
1146
|
-
|
|
1147
829
|
export declare const DataLocationResourceFilterSensitiveLog: (
|
|
1148
830
|
obj: DataLocationResource
|
|
1149
831
|
) => any;
|
|
1150
|
-
|
|
1151
832
|
export declare const LFTagKeyResourceFilterSensitiveLog: (
|
|
1152
833
|
obj: LFTagKeyResource
|
|
1153
834
|
) => any;
|
|
1154
|
-
|
|
1155
835
|
export declare const LFTagFilterSensitiveLog: (obj: LFTag) => any;
|
|
1156
|
-
|
|
1157
836
|
export declare const LFTagPolicyResourceFilterSensitiveLog: (
|
|
1158
837
|
obj: LFTagPolicyResource
|
|
1159
838
|
) => any;
|
|
1160
|
-
|
|
1161
839
|
export declare const TableWildcardFilterSensitiveLog: (
|
|
1162
840
|
obj: TableWildcard
|
|
1163
841
|
) => any;
|
|
1164
|
-
|
|
1165
842
|
export declare const TableResourceFilterSensitiveLog: (
|
|
1166
843
|
obj: TableResource
|
|
1167
844
|
) => any;
|
|
1168
|
-
|
|
1169
845
|
export declare const ColumnWildcardFilterSensitiveLog: (
|
|
1170
846
|
obj: ColumnWildcard
|
|
1171
847
|
) => any;
|
|
1172
|
-
|
|
1173
848
|
export declare const TableWithColumnsResourceFilterSensitiveLog: (
|
|
1174
849
|
obj: TableWithColumnsResource
|
|
1175
850
|
) => any;
|
|
1176
|
-
|
|
1177
851
|
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1178
|
-
|
|
1179
852
|
export declare const AddLFTagsToResourceRequestFilterSensitiveLog: (
|
|
1180
853
|
obj: AddLFTagsToResourceRequest
|
|
1181
854
|
) => any;
|
|
1182
|
-
|
|
1183
855
|
export declare const ErrorDetailFilterSensitiveLog: (obj: ErrorDetail) => any;
|
|
1184
|
-
|
|
1185
856
|
export declare const LFTagErrorFilterSensitiveLog: (obj: LFTagError) => any;
|
|
1186
|
-
|
|
1187
857
|
export declare const AddLFTagsToResourceResponseFilterSensitiveLog: (
|
|
1188
858
|
obj: AddLFTagsToResourceResponse
|
|
1189
859
|
) => any;
|
|
1190
|
-
|
|
1191
860
|
export declare const AddObjectInputFilterSensitiveLog: (
|
|
1192
861
|
obj: AddObjectInput
|
|
1193
862
|
) => any;
|
|
1194
|
-
|
|
1195
863
|
export declare const AllRowsWildcardFilterSensitiveLog: (
|
|
1196
864
|
obj: AllRowsWildcard
|
|
1197
865
|
) => any;
|
|
1198
|
-
|
|
1199
866
|
export declare const AssumeDecoratedRoleWithSAMLRequestFilterSensitiveLog: (
|
|
1200
867
|
obj: AssumeDecoratedRoleWithSAMLRequest
|
|
1201
868
|
) => any;
|
|
1202
|
-
|
|
1203
869
|
export declare const AssumeDecoratedRoleWithSAMLResponseFilterSensitiveLog: (
|
|
1204
870
|
obj: AssumeDecoratedRoleWithSAMLResponse
|
|
1205
871
|
) => any;
|
|
1206
|
-
|
|
1207
872
|
export declare const AuditContextFilterSensitiveLog: (obj: AuditContext) => any;
|
|
1208
|
-
|
|
1209
873
|
export declare const DataLakePrincipalFilterSensitiveLog: (
|
|
1210
874
|
obj: DataLakePrincipal
|
|
1211
875
|
) => any;
|
|
1212
|
-
|
|
1213
876
|
export declare const BatchPermissionsRequestEntryFilterSensitiveLog: (
|
|
1214
877
|
obj: BatchPermissionsRequestEntry
|
|
1215
878
|
) => any;
|
|
1216
|
-
|
|
1217
879
|
export declare const BatchGrantPermissionsRequestFilterSensitiveLog: (
|
|
1218
880
|
obj: BatchGrantPermissionsRequest
|
|
1219
881
|
) => any;
|
|
1220
|
-
|
|
1221
882
|
export declare const BatchPermissionsFailureEntryFilterSensitiveLog: (
|
|
1222
883
|
obj: BatchPermissionsFailureEntry
|
|
1223
884
|
) => any;
|
|
1224
|
-
|
|
1225
885
|
export declare const BatchGrantPermissionsResponseFilterSensitiveLog: (
|
|
1226
886
|
obj: BatchGrantPermissionsResponse
|
|
1227
887
|
) => any;
|
|
1228
|
-
|
|
1229
888
|
export declare const BatchRevokePermissionsRequestFilterSensitiveLog: (
|
|
1230
889
|
obj: BatchRevokePermissionsRequest
|
|
1231
890
|
) => any;
|
|
1232
|
-
|
|
1233
891
|
export declare const BatchRevokePermissionsResponseFilterSensitiveLog: (
|
|
1234
892
|
obj: BatchRevokePermissionsResponse
|
|
1235
893
|
) => any;
|
|
1236
|
-
|
|
1237
894
|
export declare const CancelTransactionRequestFilterSensitiveLog: (
|
|
1238
895
|
obj: CancelTransactionRequest
|
|
1239
896
|
) => any;
|
|
1240
|
-
|
|
1241
897
|
export declare const CancelTransactionResponseFilterSensitiveLog: (
|
|
1242
898
|
obj: CancelTransactionResponse
|
|
1243
899
|
) => any;
|
|
1244
|
-
|
|
1245
900
|
export declare const CommitTransactionRequestFilterSensitiveLog: (
|
|
1246
901
|
obj: CommitTransactionRequest
|
|
1247
902
|
) => any;
|
|
1248
|
-
|
|
1249
903
|
export declare const CommitTransactionResponseFilterSensitiveLog: (
|
|
1250
904
|
obj: CommitTransactionResponse
|
|
1251
905
|
) => any;
|
|
1252
|
-
|
|
1253
906
|
export declare const RowFilterFilterSensitiveLog: (obj: RowFilter) => any;
|
|
1254
|
-
|
|
1255
907
|
export declare const DataCellsFilterFilterSensitiveLog: (
|
|
1256
908
|
obj: DataCellsFilter
|
|
1257
909
|
) => any;
|
|
1258
|
-
|
|
1259
910
|
export declare const CreateDataCellsFilterRequestFilterSensitiveLog: (
|
|
1260
911
|
obj: CreateDataCellsFilterRequest
|
|
1261
912
|
) => any;
|
|
1262
|
-
|
|
1263
913
|
export declare const CreateDataCellsFilterResponseFilterSensitiveLog: (
|
|
1264
914
|
obj: CreateDataCellsFilterResponse
|
|
1265
915
|
) => any;
|
|
1266
|
-
|
|
1267
916
|
export declare const CreateLFTagRequestFilterSensitiveLog: (
|
|
1268
917
|
obj: CreateLFTagRequest
|
|
1269
918
|
) => any;
|
|
1270
|
-
|
|
1271
919
|
export declare const CreateLFTagResponseFilterSensitiveLog: (
|
|
1272
920
|
obj: CreateLFTagResponse
|
|
1273
921
|
) => any;
|
|
1274
|
-
|
|
1275
922
|
export declare const DeleteDataCellsFilterRequestFilterSensitiveLog: (
|
|
1276
923
|
obj: DeleteDataCellsFilterRequest
|
|
1277
924
|
) => any;
|
|
1278
|
-
|
|
1279
925
|
export declare const DeleteDataCellsFilterResponseFilterSensitiveLog: (
|
|
1280
926
|
obj: DeleteDataCellsFilterResponse
|
|
1281
927
|
) => any;
|
|
1282
|
-
|
|
1283
928
|
export declare const DeleteLFTagRequestFilterSensitiveLog: (
|
|
1284
929
|
obj: DeleteLFTagRequest
|
|
1285
930
|
) => any;
|
|
1286
|
-
|
|
1287
931
|
export declare const DeleteLFTagResponseFilterSensitiveLog: (
|
|
1288
932
|
obj: DeleteLFTagResponse
|
|
1289
933
|
) => any;
|
|
1290
|
-
|
|
1291
934
|
export declare const VirtualObjectFilterSensitiveLog: (
|
|
1292
935
|
obj: VirtualObject
|
|
1293
936
|
) => any;
|
|
1294
|
-
|
|
1295
937
|
export declare const DeleteObjectsOnCancelRequestFilterSensitiveLog: (
|
|
1296
938
|
obj: DeleteObjectsOnCancelRequest
|
|
1297
939
|
) => any;
|
|
1298
|
-
|
|
1299
940
|
export declare const DeleteObjectsOnCancelResponseFilterSensitiveLog: (
|
|
1300
941
|
obj: DeleteObjectsOnCancelResponse
|
|
1301
942
|
) => any;
|
|
1302
|
-
|
|
1303
943
|
export declare const DeregisterResourceRequestFilterSensitiveLog: (
|
|
1304
944
|
obj: DeregisterResourceRequest
|
|
1305
945
|
) => any;
|
|
1306
|
-
|
|
1307
946
|
export declare const DeregisterResourceResponseFilterSensitiveLog: (
|
|
1308
947
|
obj: DeregisterResourceResponse
|
|
1309
948
|
) => any;
|
|
1310
|
-
|
|
1311
949
|
export declare const DescribeResourceRequestFilterSensitiveLog: (
|
|
1312
950
|
obj: DescribeResourceRequest
|
|
1313
951
|
) => any;
|
|
1314
|
-
|
|
1315
952
|
export declare const ResourceInfoFilterSensitiveLog: (obj: ResourceInfo) => any;
|
|
1316
|
-
|
|
1317
953
|
export declare const DescribeResourceResponseFilterSensitiveLog: (
|
|
1318
954
|
obj: DescribeResourceResponse
|
|
1319
955
|
) => any;
|
|
1320
|
-
|
|
1321
956
|
export declare const DescribeTransactionRequestFilterSensitiveLog: (
|
|
1322
957
|
obj: DescribeTransactionRequest
|
|
1323
958
|
) => any;
|
|
1324
|
-
|
|
1325
959
|
export declare const TransactionDescriptionFilterSensitiveLog: (
|
|
1326
960
|
obj: TransactionDescription
|
|
1327
961
|
) => any;
|
|
1328
|
-
|
|
1329
962
|
export declare const DescribeTransactionResponseFilterSensitiveLog: (
|
|
1330
963
|
obj: DescribeTransactionResponse
|
|
1331
964
|
) => any;
|
|
1332
|
-
|
|
1333
965
|
export declare const ExtendTransactionRequestFilterSensitiveLog: (
|
|
1334
966
|
obj: ExtendTransactionRequest
|
|
1335
967
|
) => any;
|
|
1336
|
-
|
|
1337
968
|
export declare const ExtendTransactionResponseFilterSensitiveLog: (
|
|
1338
969
|
obj: ExtendTransactionResponse
|
|
1339
970
|
) => any;
|
|
1340
|
-
|
|
1341
971
|
export declare const GetDataLakeSettingsRequestFilterSensitiveLog: (
|
|
1342
972
|
obj: GetDataLakeSettingsRequest
|
|
1343
973
|
) => any;
|
|
1344
|
-
|
|
1345
974
|
export declare const PrincipalPermissionsFilterSensitiveLog: (
|
|
1346
975
|
obj: PrincipalPermissions
|
|
1347
976
|
) => any;
|
|
1348
|
-
|
|
1349
977
|
export declare const DataLakeSettingsFilterSensitiveLog: (
|
|
1350
978
|
obj: DataLakeSettings
|
|
1351
979
|
) => any;
|
|
1352
|
-
|
|
1353
980
|
export declare const GetDataLakeSettingsResponseFilterSensitiveLog: (
|
|
1354
981
|
obj: GetDataLakeSettingsResponse
|
|
1355
982
|
) => any;
|
|
1356
|
-
|
|
1357
983
|
export declare const GetEffectivePermissionsForPathRequestFilterSensitiveLog: (
|
|
1358
984
|
obj: GetEffectivePermissionsForPathRequest
|
|
1359
985
|
) => any;
|
|
1360
|
-
|
|
1361
986
|
export declare const DetailsMapFilterSensitiveLog: (obj: DetailsMap) => any;
|
|
1362
|
-
|
|
1363
987
|
export declare const PrincipalResourcePermissionsFilterSensitiveLog: (
|
|
1364
988
|
obj: PrincipalResourcePermissions
|
|
1365
989
|
) => any;
|
|
1366
|
-
|
|
1367
990
|
export declare const GetEffectivePermissionsForPathResponseFilterSensitiveLog: (
|
|
1368
991
|
obj: GetEffectivePermissionsForPathResponse
|
|
1369
992
|
) => any;
|
|
1370
|
-
|
|
1371
993
|
export declare const GetLFTagRequestFilterSensitiveLog: (
|
|
1372
994
|
obj: GetLFTagRequest
|
|
1373
995
|
) => any;
|
|
1374
|
-
|
|
1375
996
|
export declare const GetLFTagResponseFilterSensitiveLog: (
|
|
1376
997
|
obj: GetLFTagResponse
|
|
1377
998
|
) => any;
|
|
1378
|
-
|
|
1379
999
|
export declare const GetQueryStateRequestFilterSensitiveLog: (
|
|
1380
1000
|
obj: GetQueryStateRequest
|
|
1381
1001
|
) => any;
|
|
1382
|
-
|
|
1383
1002
|
export declare const GetQueryStateResponseFilterSensitiveLog: (
|
|
1384
1003
|
obj: GetQueryStateResponse
|
|
1385
1004
|
) => any;
|
|
1386
|
-
|
|
1387
1005
|
export declare const GetQueryStatisticsRequestFilterSensitiveLog: (
|
|
1388
1006
|
obj: GetQueryStatisticsRequest
|
|
1389
1007
|
) => any;
|
|
1390
|
-
|
|
1391
1008
|
export declare const ExecutionStatisticsFilterSensitiveLog: (
|
|
1392
1009
|
obj: ExecutionStatistics
|
|
1393
1010
|
) => any;
|
|
1394
|
-
|
|
1395
1011
|
export declare const PlanningStatisticsFilterSensitiveLog: (
|
|
1396
1012
|
obj: PlanningStatistics
|
|
1397
1013
|
) => any;
|
|
1398
|
-
|
|
1399
1014
|
export declare const GetQueryStatisticsResponseFilterSensitiveLog: (
|
|
1400
1015
|
obj: GetQueryStatisticsResponse
|
|
1401
1016
|
) => any;
|
|
1402
|
-
|
|
1403
1017
|
export declare const GetResourceLFTagsRequestFilterSensitiveLog: (
|
|
1404
1018
|
obj: GetResourceLFTagsRequest
|
|
1405
1019
|
) => any;
|
|
1406
|
-
|
|
1407
1020
|
export declare const ColumnLFTagFilterSensitiveLog: (obj: ColumnLFTag) => any;
|
|
1408
|
-
|
|
1409
1021
|
export declare const GetResourceLFTagsResponseFilterSensitiveLog: (
|
|
1410
1022
|
obj: GetResourceLFTagsResponse
|
|
1411
1023
|
) => any;
|
|
1412
|
-
|
|
1413
1024
|
export declare const GetTableObjectsRequestFilterSensitiveLog: (
|
|
1414
1025
|
obj: GetTableObjectsRequest
|
|
1415
1026
|
) => any;
|
|
1416
|
-
|
|
1417
1027
|
export declare const TableObjectFilterSensitiveLog: (obj: TableObject) => any;
|
|
1418
|
-
|
|
1419
1028
|
export declare const PartitionObjectsFilterSensitiveLog: (
|
|
1420
1029
|
obj: PartitionObjects
|
|
1421
1030
|
) => any;
|
|
1422
|
-
|
|
1423
1031
|
export declare const GetTableObjectsResponseFilterSensitiveLog: (
|
|
1424
1032
|
obj: GetTableObjectsResponse
|
|
1425
1033
|
) => any;
|
|
1426
|
-
|
|
1427
1034
|
export declare const PartitionValueListFilterSensitiveLog: (
|
|
1428
1035
|
obj: PartitionValueList
|
|
1429
1036
|
) => any;
|
|
1430
|
-
|
|
1431
1037
|
export declare const GetTemporaryGluePartitionCredentialsRequestFilterSensitiveLog: (
|
|
1432
1038
|
obj: GetTemporaryGluePartitionCredentialsRequest
|
|
1433
1039
|
) => any;
|
|
1434
|
-
|
|
1435
1040
|
export declare const GetTemporaryGluePartitionCredentialsResponseFilterSensitiveLog: (
|
|
1436
1041
|
obj: GetTemporaryGluePartitionCredentialsResponse
|
|
1437
1042
|
) => any;
|
|
1438
|
-
|
|
1439
1043
|
export declare const GetTemporaryGlueTableCredentialsRequestFilterSensitiveLog: (
|
|
1440
1044
|
obj: GetTemporaryGlueTableCredentialsRequest
|
|
1441
1045
|
) => any;
|
|
1442
|
-
|
|
1443
1046
|
export declare const GetTemporaryGlueTableCredentialsResponseFilterSensitiveLog: (
|
|
1444
1047
|
obj: GetTemporaryGlueTableCredentialsResponse
|
|
1445
1048
|
) => any;
|
|
1446
|
-
|
|
1447
1049
|
export declare const GetWorkUnitResultsRequestFilterSensitiveLog: (
|
|
1448
1050
|
obj: GetWorkUnitResultsRequest
|
|
1449
1051
|
) => any;
|
|
1450
|
-
|
|
1451
1052
|
export declare const GetWorkUnitResultsResponseFilterSensitiveLog: (
|
|
1452
1053
|
obj: GetWorkUnitResultsResponse
|
|
1453
1054
|
) => any;
|
|
1454
|
-
|
|
1455
1055
|
export declare const GetWorkUnitsRequestFilterSensitiveLog: (
|
|
1456
1056
|
obj: GetWorkUnitsRequest
|
|
1457
1057
|
) => any;
|
|
1458
|
-
|
|
1459
1058
|
export declare const WorkUnitRangeFilterSensitiveLog: (
|
|
1460
1059
|
obj: WorkUnitRange
|
|
1461
1060
|
) => any;
|
|
1462
|
-
|
|
1463
1061
|
export declare const GetWorkUnitsResponseFilterSensitiveLog: (
|
|
1464
1062
|
obj: GetWorkUnitsResponse
|
|
1465
1063
|
) => any;
|
|
1466
|
-
|
|
1467
1064
|
export declare const GrantPermissionsRequestFilterSensitiveLog: (
|
|
1468
1065
|
obj: GrantPermissionsRequest
|
|
1469
1066
|
) => any;
|
|
1470
|
-
|
|
1471
1067
|
export declare const GrantPermissionsResponseFilterSensitiveLog: (
|
|
1472
1068
|
obj: GrantPermissionsResponse
|
|
1473
1069
|
) => any;
|
|
1474
|
-
|
|
1475
1070
|
export declare const ListDataCellsFilterRequestFilterSensitiveLog: (
|
|
1476
1071
|
obj: ListDataCellsFilterRequest
|
|
1477
1072
|
) => any;
|
|
1478
|
-
|
|
1479
1073
|
export declare const ListDataCellsFilterResponseFilterSensitiveLog: (
|
|
1480
1074
|
obj: ListDataCellsFilterResponse
|
|
1481
1075
|
) => any;
|
|
1482
|
-
|
|
1483
1076
|
export declare const ListLFTagsRequestFilterSensitiveLog: (
|
|
1484
1077
|
obj: ListLFTagsRequest
|
|
1485
1078
|
) => any;
|
|
1486
|
-
|
|
1487
1079
|
export declare const ListLFTagsResponseFilterSensitiveLog: (
|
|
1488
1080
|
obj: ListLFTagsResponse
|
|
1489
1081
|
) => any;
|
|
1490
|
-
|
|
1491
1082
|
export declare const ListPermissionsRequestFilterSensitiveLog: (
|
|
1492
1083
|
obj: ListPermissionsRequest
|
|
1493
1084
|
) => any;
|
|
1494
|
-
|
|
1495
1085
|
export declare const ListPermissionsResponseFilterSensitiveLog: (
|
|
1496
1086
|
obj: ListPermissionsResponse
|
|
1497
1087
|
) => any;
|
|
1498
|
-
|
|
1499
1088
|
export declare const FilterConditionFilterSensitiveLog: (
|
|
1500
1089
|
obj: FilterCondition
|
|
1501
1090
|
) => any;
|
|
1502
|
-
|
|
1503
1091
|
export declare const ListResourcesRequestFilterSensitiveLog: (
|
|
1504
1092
|
obj: ListResourcesRequest
|
|
1505
1093
|
) => any;
|
|
1506
|
-
|
|
1507
1094
|
export declare const ListResourcesResponseFilterSensitiveLog: (
|
|
1508
1095
|
obj: ListResourcesResponse
|
|
1509
1096
|
) => any;
|
|
1510
|
-
|
|
1511
1097
|
export declare const ListTableStorageOptimizersRequestFilterSensitiveLog: (
|
|
1512
1098
|
obj: ListTableStorageOptimizersRequest
|
|
1513
1099
|
) => any;
|
|
1514
|
-
|
|
1515
1100
|
export declare const StorageOptimizerFilterSensitiveLog: (
|
|
1516
1101
|
obj: StorageOptimizer
|
|
1517
1102
|
) => any;
|
|
1518
|
-
|
|
1519
1103
|
export declare const ListTableStorageOptimizersResponseFilterSensitiveLog: (
|
|
1520
1104
|
obj: ListTableStorageOptimizersResponse
|
|
1521
1105
|
) => any;
|
|
1522
|
-
|
|
1523
1106
|
export declare const ListTransactionsRequestFilterSensitiveLog: (
|
|
1524
1107
|
obj: ListTransactionsRequest
|
|
1525
1108
|
) => any;
|
|
1526
|
-
|
|
1527
1109
|
export declare const ListTransactionsResponseFilterSensitiveLog: (
|
|
1528
1110
|
obj: ListTransactionsResponse
|
|
1529
1111
|
) => any;
|
|
1530
|
-
|
|
1531
1112
|
export declare const PutDataLakeSettingsRequestFilterSensitiveLog: (
|
|
1532
1113
|
obj: PutDataLakeSettingsRequest
|
|
1533
1114
|
) => any;
|
|
1534
|
-
|
|
1535
1115
|
export declare const PutDataLakeSettingsResponseFilterSensitiveLog: (
|
|
1536
1116
|
obj: PutDataLakeSettingsResponse
|
|
1537
1117
|
) => any;
|
|
1538
|
-
|
|
1539
1118
|
export declare const RegisterResourceRequestFilterSensitiveLog: (
|
|
1540
1119
|
obj: RegisterResourceRequest
|
|
1541
1120
|
) => any;
|
|
1542
|
-
|
|
1543
1121
|
export declare const RegisterResourceResponseFilterSensitiveLog: (
|
|
1544
1122
|
obj: RegisterResourceResponse
|
|
1545
1123
|
) => any;
|
|
1546
|
-
|
|
1547
1124
|
export declare const RemoveLFTagsFromResourceRequestFilterSensitiveLog: (
|
|
1548
1125
|
obj: RemoveLFTagsFromResourceRequest
|
|
1549
1126
|
) => any;
|
|
1550
|
-
|
|
1551
1127
|
export declare const RemoveLFTagsFromResourceResponseFilterSensitiveLog: (
|
|
1552
1128
|
obj: RemoveLFTagsFromResourceResponse
|
|
1553
1129
|
) => any;
|
|
1554
|
-
|
|
1555
1130
|
export declare const RevokePermissionsRequestFilterSensitiveLog: (
|
|
1556
1131
|
obj: RevokePermissionsRequest
|
|
1557
1132
|
) => any;
|
|
1558
|
-
|
|
1559
1133
|
export declare const RevokePermissionsResponseFilterSensitiveLog: (
|
|
1560
1134
|
obj: RevokePermissionsResponse
|
|
1561
1135
|
) => any;
|
|
1562
|
-
|
|
1563
1136
|
export declare const SearchDatabasesByLFTagsRequestFilterSensitiveLog: (
|
|
1564
1137
|
obj: SearchDatabasesByLFTagsRequest
|
|
1565
1138
|
) => any;
|
|
1566
|
-
|
|
1567
1139
|
export declare const TaggedDatabaseFilterSensitiveLog: (
|
|
1568
1140
|
obj: TaggedDatabase
|
|
1569
1141
|
) => any;
|
|
1570
|
-
|
|
1571
1142
|
export declare const SearchDatabasesByLFTagsResponseFilterSensitiveLog: (
|
|
1572
1143
|
obj: SearchDatabasesByLFTagsResponse
|
|
1573
1144
|
) => any;
|
|
1574
|
-
|
|
1575
1145
|
export declare const SearchTablesByLFTagsRequestFilterSensitiveLog: (
|
|
1576
1146
|
obj: SearchTablesByLFTagsRequest
|
|
1577
1147
|
) => any;
|
|
1578
|
-
|
|
1579
1148
|
export declare const TaggedTableFilterSensitiveLog: (obj: TaggedTable) => any;
|
|
1580
|
-
|
|
1581
1149
|
export declare const SearchTablesByLFTagsResponseFilterSensitiveLog: (
|
|
1582
1150
|
obj: SearchTablesByLFTagsResponse
|
|
1583
1151
|
) => any;
|
|
1584
|
-
|
|
1585
1152
|
export declare const QueryPlanningContextFilterSensitiveLog: (
|
|
1586
1153
|
obj: QueryPlanningContext
|
|
1587
1154
|
) => any;
|
|
1588
|
-
|
|
1589
1155
|
export declare const StartQueryPlanningRequestFilterSensitiveLog: (
|
|
1590
1156
|
obj: StartQueryPlanningRequest
|
|
1591
1157
|
) => any;
|
|
1592
|
-
|
|
1593
1158
|
export declare const StartQueryPlanningResponseFilterSensitiveLog: (
|
|
1594
1159
|
obj: StartQueryPlanningResponse
|
|
1595
1160
|
) => any;
|
|
1596
|
-
|
|
1597
1161
|
export declare const StartTransactionRequestFilterSensitiveLog: (
|
|
1598
1162
|
obj: StartTransactionRequest
|
|
1599
1163
|
) => any;
|
|
1600
|
-
|
|
1601
1164
|
export declare const StartTransactionResponseFilterSensitiveLog: (
|
|
1602
1165
|
obj: StartTransactionResponse
|
|
1603
1166
|
) => any;
|
|
1604
|
-
|
|
1605
1167
|
export declare const UpdateLFTagRequestFilterSensitiveLog: (
|
|
1606
1168
|
obj: UpdateLFTagRequest
|
|
1607
1169
|
) => any;
|
|
1608
|
-
|
|
1609
1170
|
export declare const UpdateLFTagResponseFilterSensitiveLog: (
|
|
1610
1171
|
obj: UpdateLFTagResponse
|
|
1611
1172
|
) => any;
|
|
1612
|
-
|
|
1613
1173
|
export declare const UpdateResourceRequestFilterSensitiveLog: (
|
|
1614
1174
|
obj: UpdateResourceRequest
|
|
1615
1175
|
) => any;
|
|
1616
|
-
|
|
1617
1176
|
export declare const UpdateResourceResponseFilterSensitiveLog: (
|
|
1618
1177
|
obj: UpdateResourceResponse
|
|
1619
1178
|
) => any;
|
|
1620
|
-
|
|
1621
1179
|
export declare const DeleteObjectInputFilterSensitiveLog: (
|
|
1622
1180
|
obj: DeleteObjectInput
|
|
1623
1181
|
) => any;
|
|
1624
|
-
|
|
1625
1182
|
export declare const WriteOperationFilterSensitiveLog: (
|
|
1626
1183
|
obj: WriteOperation
|
|
1627
1184
|
) => any;
|
|
1628
|
-
|
|
1629
1185
|
export declare const UpdateTableObjectsRequestFilterSensitiveLog: (
|
|
1630
1186
|
obj: UpdateTableObjectsRequest
|
|
1631
1187
|
) => any;
|
|
1632
|
-
|
|
1633
1188
|
export declare const UpdateTableObjectsResponseFilterSensitiveLog: (
|
|
1634
1189
|
obj: UpdateTableObjectsResponse
|
|
1635
1190
|
) => any;
|
|
1636
|
-
|
|
1637
1191
|
export declare const UpdateTableStorageOptimizerRequestFilterSensitiveLog: (
|
|
1638
1192
|
obj: UpdateTableStorageOptimizerRequest
|
|
1639
1193
|
) => any;
|
|
1640
|
-
|
|
1641
1194
|
export declare const UpdateTableStorageOptimizerResponseFilterSensitiveLog: (
|
|
1642
1195
|
obj: UpdateTableStorageOptimizerResponse
|
|
1643
1196
|
) => any;
|