@aws-sdk/client-lakeformation 3.686.0 → 3.691.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/models/models_0.d.ts +326 -326
- package/dist-types/ts3.4/models/models_0.d.ts +326 -326
- package/package.json +7 -7
|
@@ -12,7 +12,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
* <p>A message describing the problem.</p>
|
|
13
13
|
* @public
|
|
14
14
|
*/
|
|
15
|
-
Message?: string;
|
|
15
|
+
Message?: string | undefined;
|
|
16
16
|
/**
|
|
17
17
|
* @internal
|
|
18
18
|
*/
|
|
@@ -27,7 +27,7 @@ export interface LFTagPair {
|
|
|
27
27
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
CatalogId?: string;
|
|
30
|
+
CatalogId?: string | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>The key-name for the LF-tag.</p>
|
|
33
33
|
* @public
|
|
@@ -54,7 +54,7 @@ export interface DatabaseResource {
|
|
|
54
54
|
* <p>The identifier for the Data Catalog. By default, it is the account ID of the caller.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
CatalogId?: string;
|
|
57
|
+
CatalogId?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>The name of the database resource. Unique to the Data Catalog.</p>
|
|
60
60
|
* @public
|
|
@@ -70,22 +70,22 @@ export interface DataCellsFilterResource {
|
|
|
70
70
|
* <p>The ID of the catalog to which the table belongs.</p>
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
TableCatalogId?: string;
|
|
73
|
+
TableCatalogId?: string | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* <p>A database in the Glue Data Catalog.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
DatabaseName?: string;
|
|
78
|
+
DatabaseName?: string | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* <p>The name of the table.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
TableName?: string;
|
|
83
|
+
TableName?: string | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>The name of the data cells filter. </p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
Name?: string;
|
|
88
|
+
Name?: string | undefined;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* <p>A structure for a data location object where permissions are granted or revoked. </p>
|
|
@@ -96,7 +96,7 @@ export interface DataLocationResource {
|
|
|
96
96
|
* <p>The identifier for the Data Catalog where the location is registered with Lake Formation. By default, it is the account ID of the caller.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
CatalogId?: string;
|
|
99
|
+
CatalogId?: string | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>The Amazon Resource Name (ARN) that uniquely identifies the data location resource.</p>
|
|
102
102
|
* @public
|
|
@@ -112,7 +112,7 @@ export interface LFTagKeyResource {
|
|
|
112
112
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
CatalogId?: string;
|
|
115
|
+
CatalogId?: string | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* <p>The key-name for the LF-tag.</p>
|
|
118
118
|
* @public
|
|
@@ -133,7 +133,7 @@ export interface LFTagExpressionResource {
|
|
|
133
133
|
* <p>The identifier for the Data Catalog. By default, the account ID. </p>
|
|
134
134
|
* @public
|
|
135
135
|
*/
|
|
136
|
-
CatalogId?: string;
|
|
136
|
+
CatalogId?: string | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* <p>The name of the LF-Tag expression to grant permissions on.</p>
|
|
139
139
|
* @public
|
|
@@ -179,7 +179,7 @@ export interface LFTagPolicyResource {
|
|
|
179
179
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
CatalogId?: string;
|
|
182
|
+
CatalogId?: string | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>The resource type for which the LF-tag policy applies.</p>
|
|
185
185
|
* @public
|
|
@@ -189,14 +189,14 @@ export interface LFTagPolicyResource {
|
|
|
189
189
|
* <p>A list of LF-tag conditions or a saved expression that apply to the resource's LF-tag policy.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
Expression?: LFTag[];
|
|
192
|
+
Expression?: LFTag[] | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags
|
|
195
195
|
* match the expression body of the saved expression under the provided
|
|
196
196
|
* <code>ExpressionName</code>.</p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
ExpressionName?: string;
|
|
199
|
+
ExpressionName?: string | undefined;
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
202
|
* <p>A wildcard object representing every table under a database.</p>
|
|
@@ -213,7 +213,7 @@ export interface TableResource {
|
|
|
213
213
|
* <p>The identifier for the Data Catalog. By default, it is the account ID of the caller.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
CatalogId?: string;
|
|
216
|
+
CatalogId?: string | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* <p>The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal. </p>
|
|
219
219
|
* @public
|
|
@@ -223,13 +223,13 @@ export interface TableResource {
|
|
|
223
223
|
* <p>The name of the table.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
Name?: string;
|
|
226
|
+
Name?: string | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>A wildcard object representing every table under a database.</p>
|
|
229
229
|
* <p>At least one of <code>TableResource$Name</code> or <code>TableResource$TableWildcard</code> is required.</p>
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
TableWildcard?: TableWildcard;
|
|
232
|
+
TableWildcard?: TableWildcard | undefined;
|
|
233
233
|
}
|
|
234
234
|
/**
|
|
235
235
|
* <p>A wildcard object, consisting of an optional list of excluded column names or indexes.</p>
|
|
@@ -240,7 +240,7 @@ export interface ColumnWildcard {
|
|
|
240
240
|
* <p>Excludes column names. Any column with this name will be excluded.</p>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
ExcludedColumnNames?: string[];
|
|
243
|
+
ExcludedColumnNames?: string[] | undefined;
|
|
244
244
|
}
|
|
245
245
|
/**
|
|
246
246
|
* <p>A structure for a table with columns object. This object is only used when granting a SELECT permission.</p>
|
|
@@ -252,7 +252,7 @@ export interface TableWithColumnsResource {
|
|
|
252
252
|
* <p>The identifier for the Data Catalog. By default, it is the account ID of the caller.</p>
|
|
253
253
|
* @public
|
|
254
254
|
*/
|
|
255
|
-
CatalogId?: string;
|
|
255
|
+
CatalogId?: string | undefined;
|
|
256
256
|
/**
|
|
257
257
|
* <p>The name of the database for the table with columns resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal. </p>
|
|
258
258
|
* @public
|
|
@@ -267,12 +267,12 @@ export interface TableWithColumnsResource {
|
|
|
267
267
|
* <p>The list of column names for the table. At least one of <code>ColumnNames</code> or <code>ColumnWildcard</code> is required.</p>
|
|
268
268
|
* @public
|
|
269
269
|
*/
|
|
270
|
-
ColumnNames?: string[];
|
|
270
|
+
ColumnNames?: string[] | undefined;
|
|
271
271
|
/**
|
|
272
272
|
* <p>A wildcard specified by a <code>ColumnWildcard</code> object. At least one of <code>ColumnNames</code> or <code>ColumnWildcard</code> is required.</p>
|
|
273
273
|
* @public
|
|
274
274
|
*/
|
|
275
|
-
ColumnWildcard?: ColumnWildcard;
|
|
275
|
+
ColumnWildcard?: ColumnWildcard | undefined;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
* <p>A structure for the resource.</p>
|
|
@@ -283,47 +283,47 @@ export interface Resource {
|
|
|
283
283
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
Catalog?: CatalogResource;
|
|
286
|
+
Catalog?: CatalogResource | undefined;
|
|
287
287
|
/**
|
|
288
288
|
* <p>The database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. </p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
Database?: DatabaseResource;
|
|
291
|
+
Database?: DatabaseResource | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>The table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. </p>
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
Table?: TableResource;
|
|
296
|
+
Table?: TableResource | undefined;
|
|
297
297
|
/**
|
|
298
298
|
* <p>The table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3.</p>
|
|
299
299
|
* @public
|
|
300
300
|
*/
|
|
301
|
-
TableWithColumns?: TableWithColumnsResource;
|
|
301
|
+
TableWithColumns?: TableWithColumnsResource | undefined;
|
|
302
302
|
/**
|
|
303
303
|
* <p>The location of an Amazon S3 path where permissions are granted or revoked. </p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
DataLocation?: DataLocationResource;
|
|
306
|
+
DataLocation?: DataLocationResource | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>A data cell filter.</p>
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
DataCellsFilter?: DataCellsFilterResource;
|
|
311
|
+
DataCellsFilter?: DataCellsFilterResource | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* <p>The LF-tag key and values attached to a resource.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
LFTag?: LFTagKeyResource;
|
|
316
|
+
LFTag?: LFTagKeyResource | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>A list of LF-tag conditions or saved LF-Tag expressions that define a resource's LF-tag policy.</p>
|
|
319
319
|
* @public
|
|
320
320
|
*/
|
|
321
|
-
LFTagPolicy?: LFTagPolicyResource;
|
|
321
|
+
LFTagPolicy?: LFTagPolicyResource | undefined;
|
|
322
322
|
/**
|
|
323
323
|
* <p>LF-Tag expression resource. A logical expression composed of one or more LF-Tag key:value pairs.</p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
LFTagExpression?: LFTagExpressionResource;
|
|
326
|
+
LFTagExpression?: LFTagExpressionResource | undefined;
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
329
|
* @public
|
|
@@ -333,7 +333,7 @@ export interface AddLFTagsToResourceRequest {
|
|
|
333
333
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
CatalogId?: string;
|
|
336
|
+
CatalogId?: string | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* <p>The database, table, or column resource to which to attach an LF-tag.</p>
|
|
339
339
|
* @public
|
|
@@ -354,12 +354,12 @@ export interface ErrorDetail {
|
|
|
354
354
|
* <p>The code associated with this error.</p>
|
|
355
355
|
* @public
|
|
356
356
|
*/
|
|
357
|
-
ErrorCode?: string;
|
|
357
|
+
ErrorCode?: string | undefined;
|
|
358
358
|
/**
|
|
359
359
|
* <p>A message describing the error.</p>
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
ErrorMessage?: string;
|
|
362
|
+
ErrorMessage?: string | undefined;
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
365
|
* <p>A structure containing an error related to a <code>TagResource</code> or <code>UnTagResource</code> operation.</p>
|
|
@@ -370,12 +370,12 @@ export interface LFTagError {
|
|
|
370
370
|
* <p>The key-name of the LF-tag.</p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
LFTag?: LFTagPair;
|
|
373
|
+
LFTag?: LFTagPair | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p>An error that occurred with the attachment or detachment of the LF-tag.</p>
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
Error?: ErrorDetail;
|
|
378
|
+
Error?: ErrorDetail | undefined;
|
|
379
379
|
}
|
|
380
380
|
/**
|
|
381
381
|
* @public
|
|
@@ -385,7 +385,7 @@ export interface AddLFTagsToResourceResponse {
|
|
|
385
385
|
* <p>A list of failures to tag the resource.</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
Failures?: LFTagError[];
|
|
388
|
+
Failures?: LFTagError[] | undefined;
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
391
391
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
@@ -398,7 +398,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
398
398
|
* <p>A message describing the problem.</p>
|
|
399
399
|
* @public
|
|
400
400
|
*/
|
|
401
|
-
Message?: string;
|
|
401
|
+
Message?: string | undefined;
|
|
402
402
|
/**
|
|
403
403
|
* @internal
|
|
404
404
|
*/
|
|
@@ -415,7 +415,7 @@ export declare class EntityNotFoundException extends __BaseException {
|
|
|
415
415
|
* <p>A message describing the problem.</p>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
Message?: string;
|
|
418
|
+
Message?: string | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* @internal
|
|
421
421
|
*/
|
|
@@ -432,7 +432,7 @@ export declare class InternalServiceException extends __BaseException {
|
|
|
432
432
|
* <p>A message describing the problem.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
Message?: string;
|
|
435
|
+
Message?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* @internal
|
|
438
438
|
*/
|
|
@@ -449,7 +449,7 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
449
449
|
* <p>A message describing the problem.</p>
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
Message?: string;
|
|
452
|
+
Message?: string | undefined;
|
|
453
453
|
/**
|
|
454
454
|
* @internal
|
|
455
455
|
*/
|
|
@@ -466,7 +466,7 @@ export declare class OperationTimeoutException extends __BaseException {
|
|
|
466
466
|
* <p>A message describing the problem.</p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
Message?: string;
|
|
469
|
+
Message?: string | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* @internal
|
|
472
472
|
*/
|
|
@@ -497,7 +497,7 @@ export interface AddObjectInput {
|
|
|
497
497
|
* <p>The supported data types are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss"), string and decimal.</p>
|
|
498
498
|
* @public
|
|
499
499
|
*/
|
|
500
|
-
PartitionValues?: string[];
|
|
500
|
+
PartitionValues?: string[] | undefined;
|
|
501
501
|
}
|
|
502
502
|
/**
|
|
503
503
|
* <p>A structure that you pass to indicate you want all rows in a filter. </p>
|
|
@@ -516,7 +516,7 @@ export declare class AlreadyExistsException extends __BaseException {
|
|
|
516
516
|
* <p>A message describing the problem.</p>
|
|
517
517
|
* @public
|
|
518
518
|
*/
|
|
519
|
-
Message?: string;
|
|
519
|
+
Message?: string | undefined;
|
|
520
520
|
/**
|
|
521
521
|
* @internal
|
|
522
522
|
*/
|
|
@@ -557,7 +557,7 @@ export interface AssumeDecoratedRoleWithSAMLRequest {
|
|
|
557
557
|
* <p>The time period, between 900 and 43,200 seconds, for the timeout of the temporary credentials.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
DurationSeconds?: number;
|
|
560
|
+
DurationSeconds?: number | undefined;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
563
563
|
* @public
|
|
@@ -567,22 +567,22 @@ export interface AssumeDecoratedRoleWithSAMLResponse {
|
|
|
567
567
|
* <p>The access key ID for the temporary credentials. (The access key consists of an access key ID and a secret key).</p>
|
|
568
568
|
* @public
|
|
569
569
|
*/
|
|
570
|
-
AccessKeyId?: string;
|
|
570
|
+
AccessKeyId?: string | undefined;
|
|
571
571
|
/**
|
|
572
572
|
* <p>The secret key for the temporary credentials. (The access key consists of an access key ID and a secret key).</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
SecretAccessKey?: string;
|
|
575
|
+
SecretAccessKey?: string | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* <p>The session token for the temporary credentials.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
SessionToken?: string;
|
|
580
|
+
SessionToken?: string | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>The date and time when the temporary credentials expire.</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
Expiration?: Date;
|
|
585
|
+
Expiration?: Date | undefined;
|
|
586
586
|
}
|
|
587
587
|
/**
|
|
588
588
|
* <p>A structure used to include auditing information on the privileged API. </p>
|
|
@@ -593,7 +593,7 @@ export interface AuditContext {
|
|
|
593
593
|
* <p>The filter engine can populate the 'AdditionalAuditContext' information with the request ID for you to track. This information will be displayed in CloudTrail log in your account.</p>
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
AdditionalAuditContext?: string;
|
|
596
|
+
AdditionalAuditContext?: string | undefined;
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
599
|
* @public
|
|
@@ -629,7 +629,7 @@ export interface DataLakePrincipal {
|
|
|
629
629
|
* <p>An identifier for the Lake Formation principal.</p>
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
|
-
DataLakePrincipalIdentifier?: string;
|
|
632
|
+
DataLakePrincipalIdentifier?: string | undefined;
|
|
633
633
|
}
|
|
634
634
|
/**
|
|
635
635
|
* <p>A permission to a resource granted by batch operation to the principal.</p>
|
|
@@ -645,22 +645,22 @@ export interface BatchPermissionsRequestEntry {
|
|
|
645
645
|
* <p>The principal to be granted a permission.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
Principal?: DataLakePrincipal;
|
|
648
|
+
Principal?: DataLakePrincipal | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>The resource to which the principal is to be granted a permission.</p>
|
|
651
651
|
* @public
|
|
652
652
|
*/
|
|
653
|
-
Resource?: Resource;
|
|
653
|
+
Resource?: Resource | undefined;
|
|
654
654
|
/**
|
|
655
655
|
* <p>The permissions to be granted.</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
Permissions?: Permission[];
|
|
658
|
+
Permissions?: Permission[] | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* <p>Indicates if the option to pass permissions is granted.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
PermissionsWithGrantOption?: Permission[];
|
|
663
|
+
PermissionsWithGrantOption?: Permission[] | undefined;
|
|
664
664
|
}
|
|
665
665
|
/**
|
|
666
666
|
* @public
|
|
@@ -670,7 +670,7 @@ export interface BatchGrantPermissionsRequest {
|
|
|
670
670
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
CatalogId?: string;
|
|
673
|
+
CatalogId?: string | undefined;
|
|
674
674
|
/**
|
|
675
675
|
* <p>A list of up to 20 entries for resource permissions to be granted by batch operation to the principal.</p>
|
|
676
676
|
* @public
|
|
@@ -686,12 +686,12 @@ export interface BatchPermissionsFailureEntry {
|
|
|
686
686
|
* <p>An identifier for an entry of the batch request.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
RequestEntry?: BatchPermissionsRequestEntry;
|
|
689
|
+
RequestEntry?: BatchPermissionsRequestEntry | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>An error message that applies to the failure of the entry.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
Error?: ErrorDetail;
|
|
694
|
+
Error?: ErrorDetail | undefined;
|
|
695
695
|
}
|
|
696
696
|
/**
|
|
697
697
|
* @public
|
|
@@ -701,7 +701,7 @@ export interface BatchGrantPermissionsResponse {
|
|
|
701
701
|
* <p>A list of failures to grant permissions to the resources.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
Failures?: BatchPermissionsFailureEntry[];
|
|
704
|
+
Failures?: BatchPermissionsFailureEntry[] | undefined;
|
|
705
705
|
}
|
|
706
706
|
/**
|
|
707
707
|
* @public
|
|
@@ -711,7 +711,7 @@ export interface BatchRevokePermissionsRequest {
|
|
|
711
711
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
712
712
|
* @public
|
|
713
713
|
*/
|
|
714
|
-
CatalogId?: string;
|
|
714
|
+
CatalogId?: string | undefined;
|
|
715
715
|
/**
|
|
716
716
|
* <p>A list of up to 20 entries for resource permissions to be revoked by batch operation to the principal.</p>
|
|
717
717
|
* @public
|
|
@@ -726,7 +726,7 @@ export interface BatchRevokePermissionsResponse {
|
|
|
726
726
|
* <p>A list of failures to revoke permissions to the resources.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
Failures?: BatchPermissionsFailureEntry[];
|
|
729
|
+
Failures?: BatchPermissionsFailureEntry[] | undefined;
|
|
730
730
|
}
|
|
731
731
|
/**
|
|
732
732
|
* @public
|
|
@@ -754,7 +754,7 @@ export declare class TransactionCommitInProgressException extends __BaseExceptio
|
|
|
754
754
|
* <p>A message describing the error.</p>
|
|
755
755
|
* @public
|
|
756
756
|
*/
|
|
757
|
-
Message?: string;
|
|
757
|
+
Message?: string | undefined;
|
|
758
758
|
/**
|
|
759
759
|
* @internal
|
|
760
760
|
*/
|
|
@@ -771,7 +771,7 @@ export declare class TransactionCommittedException extends __BaseException {
|
|
|
771
771
|
* <p>A message describing the error.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
Message?: string;
|
|
774
|
+
Message?: string | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* @internal
|
|
777
777
|
*/
|
|
@@ -809,7 +809,7 @@ export interface CommitTransactionResponse {
|
|
|
809
809
|
* <p>The status of the transaction.</p>
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
TransactionStatus?: TransactionStatus;
|
|
812
|
+
TransactionStatus?: TransactionStatus | undefined;
|
|
813
813
|
}
|
|
814
814
|
/**
|
|
815
815
|
* <p>Contains details about an error related to a transaction that was cancelled.</p>
|
|
@@ -822,7 +822,7 @@ export declare class TransactionCanceledException extends __BaseException {
|
|
|
822
822
|
* <p>A message describing the error.</p>
|
|
823
823
|
* @public
|
|
824
824
|
*/
|
|
825
|
-
Message?: string;
|
|
825
|
+
Message?: string | undefined;
|
|
826
826
|
/**
|
|
827
827
|
* @internal
|
|
828
828
|
*/
|
|
@@ -837,12 +837,12 @@ export interface RowFilter {
|
|
|
837
837
|
* <p>A filter expression.</p>
|
|
838
838
|
* @public
|
|
839
839
|
*/
|
|
840
|
-
FilterExpression?: string;
|
|
840
|
+
FilterExpression?: string | undefined;
|
|
841
841
|
/**
|
|
842
842
|
* <p>A wildcard for all rows.</p>
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
AllRowsWildcard?: AllRowsWildcard;
|
|
845
|
+
AllRowsWildcard?: AllRowsWildcard | undefined;
|
|
846
846
|
}
|
|
847
847
|
/**
|
|
848
848
|
* <p>A structure that describes certain columns on certain rows.</p>
|
|
@@ -873,24 +873,24 @@ export interface DataCellsFilter {
|
|
|
873
873
|
* <p>A PartiQL predicate.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
RowFilter?: RowFilter;
|
|
876
|
+
RowFilter?: RowFilter | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* <p>A list of column names and/or nested column attributes. When specifying nested attributes, use a qualified dot (.) delimited format such as "address"."zip". Nested attributes within this list may not exceed a depth of 5.</p>
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
ColumnNames?: string[];
|
|
881
|
+
ColumnNames?: string[] | undefined;
|
|
882
882
|
/**
|
|
883
883
|
* <p>A wildcard with exclusions.</p>
|
|
884
884
|
* <p>You must specify either a <code>ColumnNames</code> list or the
|
|
885
885
|
* <code>ColumnWildCard</code>. </p>
|
|
886
886
|
* @public
|
|
887
887
|
*/
|
|
888
|
-
ColumnWildcard?: ColumnWildcard;
|
|
888
|
+
ColumnWildcard?: ColumnWildcard | undefined;
|
|
889
889
|
/**
|
|
890
890
|
* <p>The ID of the data cells filter version.</p>
|
|
891
891
|
* @public
|
|
892
892
|
*/
|
|
893
|
-
VersionId?: string;
|
|
893
|
+
VersionId?: string | undefined;
|
|
894
894
|
}
|
|
895
895
|
/**
|
|
896
896
|
* @public
|
|
@@ -918,7 +918,7 @@ export declare class ResourceNumberLimitExceededException extends __BaseExceptio
|
|
|
918
918
|
* <p>A message describing the problem.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
Message?: string;
|
|
921
|
+
Message?: string | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* @internal
|
|
924
924
|
*/
|
|
@@ -965,20 +965,20 @@ export interface CreateLakeFormationIdentityCenterConfigurationRequest {
|
|
|
965
965
|
* environment.</p>
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
CatalogId?: string;
|
|
968
|
+
CatalogId?: string | undefined;
|
|
969
969
|
/**
|
|
970
970
|
* <p>The ARN of the IAM Identity Center instance for which the operation will be executed.
|
|
971
971
|
* For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
972
972
|
* Namespaces in the Amazon Web Services General Reference.</p>
|
|
973
973
|
* @public
|
|
974
974
|
*/
|
|
975
|
-
InstanceArn?: string;
|
|
975
|
+
InstanceArn?: string | undefined;
|
|
976
976
|
/**
|
|
977
977
|
* <p>A list of the account IDs of Amazon Web Services accounts of third-party applications
|
|
978
978
|
* that are allowed to access data managed by Lake Formation.</p>
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
ExternalFiltering?: ExternalFilteringConfiguration;
|
|
981
|
+
ExternalFiltering?: ExternalFilteringConfiguration | undefined;
|
|
982
982
|
/**
|
|
983
983
|
* <p>A list of Amazon Web Services account IDs and/or Amazon Web Services organization/organizational unit ARNs
|
|
984
984
|
* that are allowed to access data managed by Lake Formation. </p>
|
|
@@ -986,7 +986,7 @@ export interface CreateLakeFormationIdentityCenterConfigurationRequest {
|
|
|
986
986
|
* <p>If the <code>ShareRecipients</code> value is null or the list is empty, no resource share is created.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
ShareRecipients?: DataLakePrincipal[];
|
|
989
|
+
ShareRecipients?: DataLakePrincipal[] | undefined;
|
|
990
990
|
}
|
|
991
991
|
/**
|
|
992
992
|
* @public
|
|
@@ -996,7 +996,7 @@ export interface CreateLakeFormationIdentityCenterConfigurationResponse {
|
|
|
996
996
|
* <p>The Amazon Resource Name (ARN) of the Lake Formation application integrated with IAM Identity Center.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
ApplicationArn?: string;
|
|
999
|
+
ApplicationArn?: string | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* @public
|
|
@@ -1027,7 +1027,7 @@ export interface CreateLFTagRequest {
|
|
|
1027
1027
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
CatalogId?: string;
|
|
1030
|
+
CatalogId?: string | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p>The key-name for the LF-tag.</p>
|
|
1033
1033
|
* @public
|
|
@@ -1057,12 +1057,12 @@ export interface CreateLFTagExpressionRequest {
|
|
|
1057
1057
|
* <p>A description with information about the LF-Tag expression.</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
Description?: string;
|
|
1060
|
+
Description?: string | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1063
1063
|
* @public
|
|
1064
1064
|
*/
|
|
1065
|
-
CatalogId?: string;
|
|
1065
|
+
CatalogId?: string | undefined;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* <p>A list of LF-Tag conditions (key-value pairs).</p>
|
|
1068
1068
|
* @public
|
|
@@ -1082,22 +1082,22 @@ export interface DeleteDataCellsFilterRequest {
|
|
|
1082
1082
|
* <p>The ID of the catalog to which the table belongs.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
TableCatalogId?: string;
|
|
1085
|
+
TableCatalogId?: string | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>A database in the Glue Data Catalog.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
DatabaseName?: string;
|
|
1090
|
+
DatabaseName?: string | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>A table in the database.</p>
|
|
1093
1093
|
* @public
|
|
1094
1094
|
*/
|
|
1095
|
-
TableName?: string;
|
|
1095
|
+
TableName?: string | undefined;
|
|
1096
1096
|
/**
|
|
1097
1097
|
* <p>The name given by the user to the data filter cell.</p>
|
|
1098
1098
|
* @public
|
|
1099
1099
|
*/
|
|
1100
|
-
Name?: string;
|
|
1100
|
+
Name?: string | undefined;
|
|
1101
1101
|
}
|
|
1102
1102
|
/**
|
|
1103
1103
|
* @public
|
|
@@ -1114,7 +1114,7 @@ export interface DeleteLakeFormationIdentityCenterConfigurationRequest {
|
|
|
1114
1114
|
* definition, and other control information to manage your Lake Formation environment.</p>
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
|
-
CatalogId?: string;
|
|
1117
|
+
CatalogId?: string | undefined;
|
|
1118
1118
|
}
|
|
1119
1119
|
/**
|
|
1120
1120
|
* @public
|
|
@@ -1150,7 +1150,7 @@ export interface DeleteLFTagRequest {
|
|
|
1150
1150
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1151
1151
|
* @public
|
|
1152
1152
|
*/
|
|
1153
|
-
CatalogId?: string;
|
|
1153
|
+
CatalogId?: string | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* <p>The key-name for the LF-tag to delete.</p>
|
|
1156
1156
|
* @public
|
|
@@ -1175,7 +1175,7 @@ export interface DeleteLFTagExpressionRequest {
|
|
|
1175
1175
|
* <p>The identifier for the Data Catalog. By default, the account ID in which the LF-Tag expression is saved. </p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
CatalogId?: string;
|
|
1178
|
+
CatalogId?: string | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
1181
|
* @public
|
|
@@ -1197,7 +1197,7 @@ export interface VirtualObject {
|
|
|
1197
1197
|
* <p>The ETag of the Amazon S3 object.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
ETag?: string;
|
|
1200
|
+
ETag?: string | undefined;
|
|
1201
1201
|
}
|
|
1202
1202
|
/**
|
|
1203
1203
|
* @public
|
|
@@ -1207,7 +1207,7 @@ export interface DeleteObjectsOnCancelRequest {
|
|
|
1207
1207
|
* <p>The Glue data catalog that contains the governed table. Defaults to the current account ID.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
CatalogId?: string;
|
|
1210
|
+
CatalogId?: string | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>The database that contains the governed table.</p>
|
|
1213
1213
|
* @public
|
|
@@ -1245,7 +1245,7 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
1245
1245
|
* <p>A message describing the error.</p>
|
|
1246
1246
|
* @public
|
|
1247
1247
|
*/
|
|
1248
|
-
Message?: string;
|
|
1248
|
+
Message?: string | undefined;
|
|
1249
1249
|
/**
|
|
1250
1250
|
* @internal
|
|
1251
1251
|
*/
|
|
@@ -1274,7 +1274,7 @@ export interface DescribeLakeFormationIdentityCenterConfigurationRequest {
|
|
|
1274
1274
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.</p>
|
|
1275
1275
|
* @public
|
|
1276
1276
|
*/
|
|
1277
|
-
CatalogId?: string;
|
|
1277
|
+
CatalogId?: string | undefined;
|
|
1278
1278
|
}
|
|
1279
1279
|
/**
|
|
1280
1280
|
* @public
|
|
@@ -1284,22 +1284,22 @@ export interface DescribeLakeFormationIdentityCenterConfigurationResponse {
|
|
|
1284
1284
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
CatalogId?: string;
|
|
1287
|
+
CatalogId?: string | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>The Amazon Resource Name (ARN) of the connection.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
InstanceArn?: string;
|
|
1292
|
+
InstanceArn?: string | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>The Amazon Resource Name (ARN) of the Lake Formation application integrated with IAM Identity Center.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
ApplicationArn?: string;
|
|
1297
|
+
ApplicationArn?: string | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* <p>Indicates if external filtering is enabled.</p>
|
|
1300
1300
|
* @public
|
|
1301
1301
|
*/
|
|
1302
|
-
ExternalFiltering?: ExternalFilteringConfiguration;
|
|
1302
|
+
ExternalFiltering?: ExternalFilteringConfiguration | undefined;
|
|
1303
1303
|
/**
|
|
1304
1304
|
* <p>A list of Amazon Web Services account IDs or Amazon Web Services organization/organizational unit ARNs that
|
|
1305
1305
|
* are allowed to access data managed by Lake Formation. </p>
|
|
@@ -1307,12 +1307,12 @@ export interface DescribeLakeFormationIdentityCenterConfigurationResponse {
|
|
|
1307
1307
|
* <p>If the <code>ShareRecipients</code> value is null or the list is empty, no resource share is created.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
ShareRecipients?: DataLakePrincipal[];
|
|
1310
|
+
ShareRecipients?: DataLakePrincipal[] | undefined;
|
|
1311
1311
|
/**
|
|
1312
1312
|
* <p>The Amazon Resource Name (ARN) of the RAM share.</p>
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
ResourceShare?: string;
|
|
1315
|
+
ResourceShare?: string | undefined;
|
|
1316
1316
|
}
|
|
1317
1317
|
/**
|
|
1318
1318
|
* @public
|
|
@@ -1333,29 +1333,29 @@ export interface ResourceInfo {
|
|
|
1333
1333
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
ResourceArn?: string;
|
|
1336
|
+
ResourceArn?: string | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>The IAM role that registered a resource.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
RoleArn?: string;
|
|
1341
|
+
RoleArn?: string | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>The date and time the resource was last modified.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
LastModified?: Date;
|
|
1346
|
+
LastModified?: Date | undefined;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* <p>Whether or not the resource is a federated resource.</p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
WithFederation?: boolean;
|
|
1351
|
+
WithFederation?: boolean | undefined;
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>
|
|
1354
1354
|
* Indicates whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
|
|
1355
1355
|
* </p>
|
|
1356
1356
|
* @public
|
|
1357
1357
|
*/
|
|
1358
|
-
HybridAccessEnabled?: boolean;
|
|
1358
|
+
HybridAccessEnabled?: boolean | undefined;
|
|
1359
1359
|
}
|
|
1360
1360
|
/**
|
|
1361
1361
|
* @public
|
|
@@ -1365,7 +1365,7 @@ export interface DescribeResourceResponse {
|
|
|
1365
1365
|
* <p>A structure containing information about an Lake Formation resource.</p>
|
|
1366
1366
|
* @public
|
|
1367
1367
|
*/
|
|
1368
|
-
ResourceInfo?: ResourceInfo;
|
|
1368
|
+
ResourceInfo?: ResourceInfo | undefined;
|
|
1369
1369
|
}
|
|
1370
1370
|
/**
|
|
1371
1371
|
* @public
|
|
@@ -1386,22 +1386,22 @@ export interface TransactionDescription {
|
|
|
1386
1386
|
* <p>The ID of the transaction.</p>
|
|
1387
1387
|
* @public
|
|
1388
1388
|
*/
|
|
1389
|
-
TransactionId?: string;
|
|
1389
|
+
TransactionId?: string | undefined;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* <p>A status of ACTIVE, COMMITTED, or ABORTED.</p>
|
|
1392
1392
|
* @public
|
|
1393
1393
|
*/
|
|
1394
|
-
TransactionStatus?: TransactionStatus;
|
|
1394
|
+
TransactionStatus?: TransactionStatus | undefined;
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>The time when the transaction started.</p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
TransactionStartTime?: Date;
|
|
1399
|
+
TransactionStartTime?: Date | undefined;
|
|
1400
1400
|
/**
|
|
1401
1401
|
* <p>The time when the transaction committed or aborted, if it is not currently active.</p>
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
TransactionEndTime?: Date;
|
|
1404
|
+
TransactionEndTime?: Date | undefined;
|
|
1405
1405
|
}
|
|
1406
1406
|
/**
|
|
1407
1407
|
* @public
|
|
@@ -1411,7 +1411,7 @@ export interface DescribeTransactionResponse {
|
|
|
1411
1411
|
* <p>Returns a <code>TransactionDescription</code> object containing information about the transaction.</p>
|
|
1412
1412
|
* @public
|
|
1413
1413
|
*/
|
|
1414
|
-
TransactionDescription?: TransactionDescription;
|
|
1414
|
+
TransactionDescription?: TransactionDescription | undefined;
|
|
1415
1415
|
}
|
|
1416
1416
|
/**
|
|
1417
1417
|
* @public
|
|
@@ -1421,7 +1421,7 @@ export interface ExtendTransactionRequest {
|
|
|
1421
1421
|
* <p>The transaction to extend.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
TransactionId?: string;
|
|
1424
|
+
TransactionId?: string | undefined;
|
|
1425
1425
|
}
|
|
1426
1426
|
/**
|
|
1427
1427
|
* @public
|
|
@@ -1461,7 +1461,7 @@ export interface GetDataCellsFilterResponse {
|
|
|
1461
1461
|
* <p>A structure that describes certain columns on certain rows.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
DataCellsFilter?: DataCellsFilter;
|
|
1464
|
+
DataCellsFilter?: DataCellsFilter | undefined;
|
|
1465
1465
|
}
|
|
1466
1466
|
/**
|
|
1467
1467
|
* @public
|
|
@@ -1476,7 +1476,7 @@ export interface GetDataLakePrincipalResponse {
|
|
|
1476
1476
|
* <p>A unique identifier of the invoking principal.</p>
|
|
1477
1477
|
* @public
|
|
1478
1478
|
*/
|
|
1479
|
-
Identity?: string;
|
|
1479
|
+
Identity?: string | undefined;
|
|
1480
1480
|
}
|
|
1481
1481
|
/**
|
|
1482
1482
|
* @public
|
|
@@ -1486,7 +1486,7 @@ export interface GetDataLakeSettingsRequest {
|
|
|
1486
1486
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
CatalogId?: string;
|
|
1489
|
+
CatalogId?: string | undefined;
|
|
1490
1490
|
}
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>Permissions granted to a principal.</p>
|
|
@@ -1497,12 +1497,12 @@ export interface PrincipalPermissions {
|
|
|
1497
1497
|
* <p>The principal who is granted permissions.</p>
|
|
1498
1498
|
* @public
|
|
1499
1499
|
*/
|
|
1500
|
-
Principal?: DataLakePrincipal;
|
|
1500
|
+
Principal?: DataLakePrincipal | undefined;
|
|
1501
1501
|
/**
|
|
1502
1502
|
* <p>The permissions that are granted to the principal.</p>
|
|
1503
1503
|
* @public
|
|
1504
1504
|
*/
|
|
1505
|
-
Permissions?: Permission[];
|
|
1505
|
+
Permissions?: Permission[] | undefined;
|
|
1506
1506
|
}
|
|
1507
1507
|
/**
|
|
1508
1508
|
* <p>A structure representing a list of Lake Formation principals designated as data lake administrators and lists of principal permission entries for default create database and default create table permissions.</p>
|
|
@@ -1513,12 +1513,12 @@ export interface DataLakeSettings {
|
|
|
1513
1513
|
* <p>A list of Lake Formation principals. Supported principals are IAM users or IAM roles.</p>
|
|
1514
1514
|
* @public
|
|
1515
1515
|
*/
|
|
1516
|
-
DataLakeAdmins?: DataLakePrincipal[];
|
|
1516
|
+
DataLakeAdmins?: DataLakePrincipal[] | undefined;
|
|
1517
1517
|
/**
|
|
1518
1518
|
* <p>A list of Lake Formation principals with only view access to the resources, without the ability to make changes. Supported principals are IAM users or IAM roles.</p>
|
|
1519
1519
|
* @public
|
|
1520
1520
|
*/
|
|
1521
|
-
ReadOnlyAdmins?: DataLakePrincipal[];
|
|
1521
|
+
ReadOnlyAdmins?: DataLakePrincipal[] | undefined;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* <p>Specifies whether access control on newly created database is managed by Lake Formation permissions or exclusively by IAM permissions.</p>
|
|
1524
1524
|
* <p>A null value indicates access control by Lake Formation permissions. A value that assigns ALL to IAM_ALLOWED_PRINCIPALS indicates access control by IAM permissions. This is referred to as the setting "Use only IAM access control," and is for backward compatibility with the Glue permission model implemented by IAM permissions.</p>
|
|
@@ -1526,7 +1526,7 @@ export interface DataLakeSettings {
|
|
|
1526
1526
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/lake-formation/latest/dg/change-settings.html">Changing the Default Security Settings for Your Data Lake</a>.</p>
|
|
1527
1527
|
* @public
|
|
1528
1528
|
*/
|
|
1529
|
-
CreateDatabaseDefaultPermissions?: PrincipalPermissions[];
|
|
1529
|
+
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
1530
1530
|
/**
|
|
1531
1531
|
* <p>Specifies whether access control on newly created table is managed by Lake Formation permissions or exclusively by IAM permissions.</p>
|
|
1532
1532
|
* <p>A null value indicates access control by Lake Formation permissions. A value that assigns ALL to IAM_ALLOWED_PRINCIPALS indicates access control by IAM permissions. This is referred to as the setting "Use only IAM access control," and is for backward compatibility with the Glue permission model implemented by IAM permissions.</p>
|
|
@@ -1534,18 +1534,18 @@ export interface DataLakeSettings {
|
|
|
1534
1534
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/lake-formation/latest/dg/change-settings.html">Changing the Default Security Settings for Your Data Lake</a>.</p>
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
1537
|
+
CreateTableDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
1538
1538
|
/**
|
|
1539
1539
|
* <p>A key-value map that provides an additional configuration on your data lake. CROSS_ACCOUNT_VERSION is the key you can configure in the Parameters field. Accepted values for the CrossAccountVersion key are 1, 2, 3, and 4.</p>
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
Parameters?: Record<string, string
|
|
1542
|
+
Parameters?: Record<string, string> | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>A list of the resource-owning account IDs that the caller's account can use to share their user access details (user ARNs). The user ARNs can be logged in the resource owner's CloudTrail log.</p>
|
|
1545
1545
|
* <p>You may want to specify this property when you are in a high-trust boundary, such as the same team or company. </p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
TrustedResourceOwners?: string[];
|
|
1548
|
+
TrustedResourceOwners?: string[] | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>Whether to allow Amazon EMR clusters to access data managed by Lake Formation. </p>
|
|
1551
1551
|
* <p>If true, you allow Amazon EMR clusters to access data in Amazon S3 locations that are registered with Lake Formation.</p>
|
|
@@ -1553,22 +1553,22 @@ export interface DataLakeSettings {
|
|
|
1553
1553
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/lake-formation/latest/dg/initial-LF-setup.html#external-data-filter">(Optional) Allow external data filtering</a>.</p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
AllowExternalDataFiltering?: boolean;
|
|
1556
|
+
AllowExternalDataFiltering?: boolean | undefined;
|
|
1557
1557
|
/**
|
|
1558
1558
|
* <p>Whether to allow a third-party query engine to get data access credentials without session tags when a caller has full data access permissions.</p>
|
|
1559
1559
|
* @public
|
|
1560
1560
|
*/
|
|
1561
|
-
AllowFullTableExternalDataAccess?: boolean;
|
|
1561
|
+
AllowFullTableExternalDataAccess?: boolean | undefined;
|
|
1562
1562
|
/**
|
|
1563
1563
|
* <p>A list of the account IDs of Amazon Web Services accounts with Amazon EMR clusters that are to perform data filtering.></p>
|
|
1564
1564
|
* @public
|
|
1565
1565
|
*/
|
|
1566
|
-
ExternalDataFilteringAllowList?: DataLakePrincipal[];
|
|
1566
|
+
ExternalDataFilteringAllowList?: DataLakePrincipal[] | undefined;
|
|
1567
1567
|
/**
|
|
1568
1568
|
* <p>Lake Formation relies on a privileged process secured by Amazon EMR or the third party integrator to tag the user's role while assuming it. Lake Formation will publish the acceptable key-value pair, for example key = "LakeFormationTrustedCaller" and value = "TRUE" and the third party integrator must properly tag the temporary security credentials that will be used to call Lake Formation's administrative APIs.</p>
|
|
1569
1569
|
* @public
|
|
1570
1570
|
*/
|
|
1571
|
-
AuthorizedSessionTagValueList?: string[];
|
|
1571
|
+
AuthorizedSessionTagValueList?: string[] | undefined;
|
|
1572
1572
|
}
|
|
1573
1573
|
/**
|
|
1574
1574
|
* @public
|
|
@@ -1578,7 +1578,7 @@ export interface GetDataLakeSettingsResponse {
|
|
|
1578
1578
|
* <p>A structure representing a list of Lake Formation principals designated as data lake administrators.</p>
|
|
1579
1579
|
* @public
|
|
1580
1580
|
*/
|
|
1581
|
-
DataLakeSettings?: DataLakeSettings;
|
|
1581
|
+
DataLakeSettings?: DataLakeSettings | undefined;
|
|
1582
1582
|
}
|
|
1583
1583
|
/**
|
|
1584
1584
|
* @public
|
|
@@ -1588,7 +1588,7 @@ export interface GetEffectivePermissionsForPathRequest {
|
|
|
1588
1588
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1589
1589
|
* @public
|
|
1590
1590
|
*/
|
|
1591
|
-
CatalogId?: string;
|
|
1591
|
+
CatalogId?: string | undefined;
|
|
1592
1592
|
/**
|
|
1593
1593
|
* <p>The Amazon Resource Name (ARN) of the resource for which you want to get permissions.</p>
|
|
1594
1594
|
* @public
|
|
@@ -1598,12 +1598,12 @@ export interface GetEffectivePermissionsForPathRequest {
|
|
|
1598
1598
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
1599
1599
|
* @public
|
|
1600
1600
|
*/
|
|
1601
|
-
NextToken?: string;
|
|
1601
|
+
NextToken?: string | undefined;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* <p>The maximum number of results to return.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
MaxResults?: number;
|
|
1606
|
+
MaxResults?: number | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* <p>A structure containing the additional details to be returned in the <code>AdditionalDetails</code> attribute of <code>PrincipalResourcePermissions</code>.</p>
|
|
@@ -1615,7 +1615,7 @@ export interface DetailsMap {
|
|
|
1615
1615
|
* <p>A resource share ARN for a catalog resource shared through RAM.</p>
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
ResourceShare?: string[];
|
|
1618
|
+
ResourceShare?: string[] | undefined;
|
|
1619
1619
|
}
|
|
1620
1620
|
/**
|
|
1621
1621
|
* <p>The permissions granted or revoked on a resource.</p>
|
|
@@ -1626,37 +1626,37 @@ export interface PrincipalResourcePermissions {
|
|
|
1626
1626
|
* <p>The Data Lake principal to be granted or revoked permissions.</p>
|
|
1627
1627
|
* @public
|
|
1628
1628
|
*/
|
|
1629
|
-
Principal?: DataLakePrincipal;
|
|
1629
|
+
Principal?: DataLakePrincipal | undefined;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* <p>The resource where permissions are to be granted or revoked.</p>
|
|
1632
1632
|
* @public
|
|
1633
1633
|
*/
|
|
1634
|
-
Resource?: Resource;
|
|
1634
|
+
Resource?: Resource | undefined;
|
|
1635
1635
|
/**
|
|
1636
1636
|
* <p>The permissions to be granted or revoked on the resource.</p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
Permissions?: Permission[];
|
|
1639
|
+
Permissions?: Permission[] | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
PermissionsWithGrantOption?: Permission[];
|
|
1644
|
+
PermissionsWithGrantOption?: Permission[] | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>This attribute can be used to return any additional details of <code>PrincipalResourcePermissions</code>. Currently returns only as a RAM resource share ARN.</p>
|
|
1647
1647
|
* @public
|
|
1648
1648
|
*/
|
|
1649
|
-
AdditionalDetails?: DetailsMap;
|
|
1649
|
+
AdditionalDetails?: DetailsMap | undefined;
|
|
1650
1650
|
/**
|
|
1651
1651
|
* <p>The date and time when the resource was last updated.</p>
|
|
1652
1652
|
* @public
|
|
1653
1653
|
*/
|
|
1654
|
-
LastUpdated?: Date;
|
|
1654
|
+
LastUpdated?: Date | undefined;
|
|
1655
1655
|
/**
|
|
1656
1656
|
* <p>The user who updated the record.</p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
|
-
LastUpdatedBy?: string;
|
|
1659
|
+
LastUpdatedBy?: string | undefined;
|
|
1660
1660
|
}
|
|
1661
1661
|
/**
|
|
1662
1662
|
* @public
|
|
@@ -1666,12 +1666,12 @@ export interface GetEffectivePermissionsForPathResponse {
|
|
|
1666
1666
|
* <p>A list of the permissions for the specified table or database resource located at the path in Amazon S3.</p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
Permissions?: PrincipalResourcePermissions[];
|
|
1669
|
+
Permissions?: PrincipalResourcePermissions[] | undefined;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
1672
1672
|
* @public
|
|
1673
1673
|
*/
|
|
1674
|
-
NextToken?: string;
|
|
1674
|
+
NextToken?: string | undefined;
|
|
1675
1675
|
}
|
|
1676
1676
|
/**
|
|
1677
1677
|
* @public
|
|
@@ -1681,7 +1681,7 @@ export interface GetLFTagRequest {
|
|
|
1681
1681
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1682
1682
|
* @public
|
|
1683
1683
|
*/
|
|
1684
|
-
CatalogId?: string;
|
|
1684
|
+
CatalogId?: string | undefined;
|
|
1685
1685
|
/**
|
|
1686
1686
|
* <p>The key-name for the LF-tag.</p>
|
|
1687
1687
|
* @public
|
|
@@ -1696,17 +1696,17 @@ export interface GetLFTagResponse {
|
|
|
1696
1696
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
CatalogId?: string;
|
|
1699
|
+
CatalogId?: string | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* <p>The key-name for the LF-tag.</p>
|
|
1702
1702
|
* @public
|
|
1703
1703
|
*/
|
|
1704
|
-
TagKey?: string;
|
|
1704
|
+
TagKey?: string | undefined;
|
|
1705
1705
|
/**
|
|
1706
1706
|
* <p>A list of possible values an attribute can take.</p>
|
|
1707
1707
|
* @public
|
|
1708
1708
|
*/
|
|
1709
|
-
TagValues?: string[];
|
|
1709
|
+
TagValues?: string[] | undefined;
|
|
1710
1710
|
}
|
|
1711
1711
|
/**
|
|
1712
1712
|
* @public
|
|
@@ -1721,7 +1721,7 @@ export interface GetLFTagExpressionRequest {
|
|
|
1721
1721
|
* <p>The identifier for the Data Catalog. By default, the account ID.</p>
|
|
1722
1722
|
* @public
|
|
1723
1723
|
*/
|
|
1724
|
-
CatalogId?: string;
|
|
1724
|
+
CatalogId?: string | undefined;
|
|
1725
1725
|
}
|
|
1726
1726
|
/**
|
|
1727
1727
|
* @public
|
|
@@ -1731,22 +1731,22 @@ export interface GetLFTagExpressionResponse {
|
|
|
1731
1731
|
* <p>The name for the LF-Tag expression. </p>
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
Name?: string;
|
|
1734
|
+
Name?: string | undefined;
|
|
1735
1735
|
/**
|
|
1736
1736
|
* <p>The description with information about the LF-Tag expression.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
Description?: string;
|
|
1739
|
+
Description?: string | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>The identifier for the Data Catalog. By default, the account ID in which the LF-Tag expression is saved.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
CatalogId?: string;
|
|
1744
|
+
CatalogId?: string | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>The body of the LF-Tag expression. It is composed of one or more LF-Tag key-value pairs.</p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
Expression?: LFTag[];
|
|
1749
|
+
Expression?: LFTag[] | undefined;
|
|
1750
1750
|
}
|
|
1751
1751
|
/**
|
|
1752
1752
|
* @public
|
|
@@ -1782,7 +1782,7 @@ export interface GetQueryStateResponse {
|
|
|
1782
1782
|
* <p>An error message when the operation fails.</p>
|
|
1783
1783
|
* @public
|
|
1784
1784
|
*/
|
|
1785
|
-
Error?: string;
|
|
1785
|
+
Error?: string | undefined;
|
|
1786
1786
|
/**
|
|
1787
1787
|
* <p>The state of a query previously submitted. The possible states are:</p>
|
|
1788
1788
|
* <ul>
|
|
@@ -1814,7 +1814,7 @@ export declare class ExpiredException extends __BaseException {
|
|
|
1814
1814
|
* <p>A message describing the error.</p>
|
|
1815
1815
|
* @public
|
|
1816
1816
|
*/
|
|
1817
|
-
Message?: string;
|
|
1817
|
+
Message?: string | undefined;
|
|
1818
1818
|
/**
|
|
1819
1819
|
* @internal
|
|
1820
1820
|
*/
|
|
@@ -1839,17 +1839,17 @@ export interface ExecutionStatistics {
|
|
|
1839
1839
|
* <p>The average time the request took to be executed.</p>
|
|
1840
1840
|
* @public
|
|
1841
1841
|
*/
|
|
1842
|
-
AverageExecutionTimeMillis?: number;
|
|
1842
|
+
AverageExecutionTimeMillis?: number | undefined;
|
|
1843
1843
|
/**
|
|
1844
1844
|
* <p>The amount of data that was scanned in bytes.</p>
|
|
1845
1845
|
* @public
|
|
1846
1846
|
*/
|
|
1847
|
-
DataScannedBytes?: number;
|
|
1847
|
+
DataScannedBytes?: number | undefined;
|
|
1848
1848
|
/**
|
|
1849
1849
|
* <p>The number of work units executed.</p>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
WorkUnitsExecutedCount?: number;
|
|
1852
|
+
WorkUnitsExecutedCount?: number | undefined;
|
|
1853
1853
|
}
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>Statistics related to the processing of a query statement.</p>
|
|
@@ -1860,22 +1860,22 @@ export interface PlanningStatistics {
|
|
|
1860
1860
|
* <p>An estimate of the data that was scanned in bytes.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
EstimatedDataToScanBytes?: number;
|
|
1863
|
+
EstimatedDataToScanBytes?: number | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The time that it took to process the request.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
PlanningTimeMillis?: number;
|
|
1868
|
+
PlanningTimeMillis?: number | undefined;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* <p>The time the request was in queue to be processed.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
QueueTimeMillis?: number;
|
|
1873
|
+
QueueTimeMillis?: number | undefined;
|
|
1874
1874
|
/**
|
|
1875
1875
|
* <p>The number of work units generated.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
WorkUnitsGeneratedCount?: number;
|
|
1878
|
+
WorkUnitsGeneratedCount?: number | undefined;
|
|
1879
1879
|
}
|
|
1880
1880
|
/**
|
|
1881
1881
|
* @public
|
|
@@ -1885,17 +1885,17 @@ export interface GetQueryStatisticsResponse {
|
|
|
1885
1885
|
* <p>An <code>ExecutionStatistics</code> structure containing execution statistics.</p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
ExecutionStatistics?: ExecutionStatistics;
|
|
1888
|
+
ExecutionStatistics?: ExecutionStatistics | undefined;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* <p>A <code>PlanningStatistics</code> structure containing query planning statistics.</p>
|
|
1891
1891
|
* @public
|
|
1892
1892
|
*/
|
|
1893
|
-
PlanningStatistics?: PlanningStatistics;
|
|
1893
|
+
PlanningStatistics?: PlanningStatistics | undefined;
|
|
1894
1894
|
/**
|
|
1895
1895
|
* <p>The time that the query was submitted.</p>
|
|
1896
1896
|
* @public
|
|
1897
1897
|
*/
|
|
1898
|
-
QuerySubmissionTime?: Date;
|
|
1898
|
+
QuerySubmissionTime?: Date | undefined;
|
|
1899
1899
|
}
|
|
1900
1900
|
/**
|
|
1901
1901
|
* <p>Contains details about an error related to statistics not being ready.</p>
|
|
@@ -1908,7 +1908,7 @@ export declare class StatisticsNotReadyYetException extends __BaseException {
|
|
|
1908
1908
|
* <p>A message describing the error.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
Message?: string;
|
|
1911
|
+
Message?: string | undefined;
|
|
1912
1912
|
/**
|
|
1913
1913
|
* @internal
|
|
1914
1914
|
*/
|
|
@@ -1928,7 +1928,7 @@ export declare class ThrottledException extends __BaseException {
|
|
|
1928
1928
|
* <p>A message describing the error.</p>
|
|
1929
1929
|
* @public
|
|
1930
1930
|
*/
|
|
1931
|
-
Message?: string;
|
|
1931
|
+
Message?: string | undefined;
|
|
1932
1932
|
/**
|
|
1933
1933
|
* @internal
|
|
1934
1934
|
*/
|
|
@@ -1942,7 +1942,7 @@ export interface GetResourceLFTagsRequest {
|
|
|
1942
1942
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
1943
1943
|
* @public
|
|
1944
1944
|
*/
|
|
1945
|
-
CatalogId?: string;
|
|
1945
|
+
CatalogId?: string | undefined;
|
|
1946
1946
|
/**
|
|
1947
1947
|
* <p>The database, table, or column resource for which you want to return LF-tags.</p>
|
|
1948
1948
|
* @public
|
|
@@ -1952,7 +1952,7 @@ export interface GetResourceLFTagsRequest {
|
|
|
1952
1952
|
* <p>Indicates whether to show the assigned LF-tags.</p>
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
ShowAssignedLFTags?: boolean;
|
|
1955
|
+
ShowAssignedLFTags?: boolean | undefined;
|
|
1956
1956
|
}
|
|
1957
1957
|
/**
|
|
1958
1958
|
* <p>A structure containing the name of a column resource and the LF-tags attached to it.</p>
|
|
@@ -1963,12 +1963,12 @@ export interface ColumnLFTag {
|
|
|
1963
1963
|
* <p>The name of a column resource.</p>
|
|
1964
1964
|
* @public
|
|
1965
1965
|
*/
|
|
1966
|
-
Name?: string;
|
|
1966
|
+
Name?: string | undefined;
|
|
1967
1967
|
/**
|
|
1968
1968
|
* <p>The LF-tags attached to a column resource.</p>
|
|
1969
1969
|
* @public
|
|
1970
1970
|
*/
|
|
1971
|
-
LFTags?: LFTagPair[];
|
|
1971
|
+
LFTags?: LFTagPair[] | undefined;
|
|
1972
1972
|
}
|
|
1973
1973
|
/**
|
|
1974
1974
|
* @public
|
|
@@ -1978,17 +1978,17 @@ export interface GetResourceLFTagsResponse {
|
|
|
1978
1978
|
* <p>A list of LF-tags applied to a database resource.</p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
LFTagOnDatabase?: LFTagPair[];
|
|
1981
|
+
LFTagOnDatabase?: LFTagPair[] | undefined;
|
|
1982
1982
|
/**
|
|
1983
1983
|
* <p>A list of LF-tags applied to a table resource.</p>
|
|
1984
1984
|
* @public
|
|
1985
1985
|
*/
|
|
1986
|
-
LFTagsOnTable?: LFTagPair[];
|
|
1986
|
+
LFTagsOnTable?: LFTagPair[] | undefined;
|
|
1987
1987
|
/**
|
|
1988
1988
|
* <p>A list of LF-tags applied to a column resource.</p>
|
|
1989
1989
|
* @public
|
|
1990
1990
|
*/
|
|
1991
|
-
LFTagsOnColumns?: ColumnLFTag[];
|
|
1991
|
+
LFTagsOnColumns?: ColumnLFTag[] | undefined;
|
|
1992
1992
|
}
|
|
1993
1993
|
/**
|
|
1994
1994
|
* <p>An encryption operation failed.</p>
|
|
@@ -2001,7 +2001,7 @@ export declare class GlueEncryptionException extends __BaseException {
|
|
|
2001
2001
|
* <p>A message describing the problem.</p>
|
|
2002
2002
|
* @public
|
|
2003
2003
|
*/
|
|
2004
|
-
Message?: string;
|
|
2004
|
+
Message?: string | undefined;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* @internal
|
|
2007
2007
|
*/
|
|
@@ -2015,7 +2015,7 @@ export interface GetTableObjectsRequest {
|
|
|
2015
2015
|
* <p>The catalog containing the governed table. Defaults to the caller’s account.</p>
|
|
2016
2016
|
* @public
|
|
2017
2017
|
*/
|
|
2018
|
-
CatalogId?: string;
|
|
2018
|
+
CatalogId?: string | undefined;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>The database containing the governed table.</p>
|
|
2021
2021
|
* @public
|
|
@@ -2030,12 +2030,12 @@ export interface GetTableObjectsRequest {
|
|
|
2030
2030
|
* <p>The transaction ID at which to read the governed table contents. If this transaction has aborted, an error is returned. If not set, defaults to the most recent committed transaction. Cannot be specified along with <code>QueryAsOfTime</code>.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
TransactionId?: string;
|
|
2033
|
+
TransactionId?: string | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>The time as of when to read the governed table contents. If not set, the most recent transaction commit time is used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
2036
2036
|
* @public
|
|
2037
2037
|
*/
|
|
2038
|
-
QueryAsOfTime?: Date;
|
|
2038
|
+
QueryAsOfTime?: Date | undefined;
|
|
2039
2039
|
/**
|
|
2040
2040
|
* <p>A predicate to filter the objects returned based on the partition keys defined in the governed table.</p>
|
|
2041
2041
|
* <ul>
|
|
@@ -2051,17 +2051,17 @@ export interface GetTableObjectsRequest {
|
|
|
2051
2051
|
* </ul>
|
|
2052
2052
|
* @public
|
|
2053
2053
|
*/
|
|
2054
|
-
PartitionPredicate?: string;
|
|
2054
|
+
PartitionPredicate?: string | undefined;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* <p>Specifies how many values to return in a page.</p>
|
|
2057
2057
|
* @public
|
|
2058
2058
|
*/
|
|
2059
|
-
MaxResults?: number;
|
|
2059
|
+
MaxResults?: number | undefined;
|
|
2060
2060
|
/**
|
|
2061
2061
|
* <p>A continuation token if this is not the first call to retrieve these objects.</p>
|
|
2062
2062
|
* @public
|
|
2063
2063
|
*/
|
|
2064
|
-
NextToken?: string;
|
|
2064
|
+
NextToken?: string | undefined;
|
|
2065
2065
|
}
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>Specifies the details of a governed table.</p>
|
|
@@ -2072,17 +2072,17 @@ export interface TableObject {
|
|
|
2072
2072
|
* <p>The Amazon S3 location of the object.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
Uri?: string;
|
|
2075
|
+
Uri?: string | undefined;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>The Amazon S3 ETag of the object. Returned by <code>GetTableObjects</code> for validation and used to identify changes to the underlying data.</p>
|
|
2078
2078
|
* @public
|
|
2079
2079
|
*/
|
|
2080
|
-
ETag?: string;
|
|
2080
|
+
ETag?: string | undefined;
|
|
2081
2081
|
/**
|
|
2082
2082
|
* <p>The size of the Amazon S3 object in bytes.</p>
|
|
2083
2083
|
* @public
|
|
2084
2084
|
*/
|
|
2085
|
-
Size?: number;
|
|
2085
|
+
Size?: number | undefined;
|
|
2086
2086
|
}
|
|
2087
2087
|
/**
|
|
2088
2088
|
* <p>A structure containing a list of partition values and table objects.</p>
|
|
@@ -2093,12 +2093,12 @@ export interface PartitionObjects {
|
|
|
2093
2093
|
* <p>A list of partition values.</p>
|
|
2094
2094
|
* @public
|
|
2095
2095
|
*/
|
|
2096
|
-
PartitionValues?: string[];
|
|
2096
|
+
PartitionValues?: string[] | undefined;
|
|
2097
2097
|
/**
|
|
2098
2098
|
* <p>A list of table objects</p>
|
|
2099
2099
|
* @public
|
|
2100
2100
|
*/
|
|
2101
|
-
Objects?: TableObject[];
|
|
2101
|
+
Objects?: TableObject[] | undefined;
|
|
2102
2102
|
}
|
|
2103
2103
|
/**
|
|
2104
2104
|
* @public
|
|
@@ -2108,12 +2108,12 @@ export interface GetTableObjectsResponse {
|
|
|
2108
2108
|
* <p>A list of objects organized by partition keys.</p>
|
|
2109
2109
|
* @public
|
|
2110
2110
|
*/
|
|
2111
|
-
Objects?: PartitionObjects[];
|
|
2111
|
+
Objects?: PartitionObjects[] | undefined;
|
|
2112
2112
|
/**
|
|
2113
2113
|
* <p>A continuation token indicating whether additional data is available.</p>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
NextToken?: string;
|
|
2116
|
+
NextToken?: string | undefined;
|
|
2117
2117
|
}
|
|
2118
2118
|
/**
|
|
2119
2119
|
* <p>Contains a list of values defining partitions.</p>
|
|
@@ -2158,22 +2158,22 @@ export interface GetTemporaryGluePartitionCredentialsRequest {
|
|
|
2158
2158
|
* <p>Filters the request based on the user having been granted a list of specified permissions on the requested resource(s).</p>
|
|
2159
2159
|
* @public
|
|
2160
2160
|
*/
|
|
2161
|
-
Permissions?: Permission[];
|
|
2161
|
+
Permissions?: Permission[] | undefined;
|
|
2162
2162
|
/**
|
|
2163
2163
|
* <p>The time period, between 900 and 21,600 seconds, for the timeout of the temporary credentials.</p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
DurationSeconds?: number;
|
|
2166
|
+
DurationSeconds?: number | undefined;
|
|
2167
2167
|
/**
|
|
2168
2168
|
* <p>A structure representing context to access a resource (column names, query ID, etc).</p>
|
|
2169
2169
|
* @public
|
|
2170
2170
|
*/
|
|
2171
|
-
AuditContext?: AuditContext;
|
|
2171
|
+
AuditContext?: AuditContext | undefined;
|
|
2172
2172
|
/**
|
|
2173
2173
|
* <p>A list of supported permission types for the partition. Valid values are <code>COLUMN_PERMISSION</code> and <code>CELL_FILTER_PERMISSION</code>.</p>
|
|
2174
2174
|
* @public
|
|
2175
2175
|
*/
|
|
2176
|
-
SupportedPermissionTypes?: PermissionType[];
|
|
2176
|
+
SupportedPermissionTypes?: PermissionType[] | undefined;
|
|
2177
2177
|
}
|
|
2178
2178
|
/**
|
|
2179
2179
|
* @public
|
|
@@ -2183,22 +2183,22 @@ export interface GetTemporaryGluePartitionCredentialsResponse {
|
|
|
2183
2183
|
* <p>The access key ID for the temporary credentials.</p>
|
|
2184
2184
|
* @public
|
|
2185
2185
|
*/
|
|
2186
|
-
AccessKeyId?: string;
|
|
2186
|
+
AccessKeyId?: string | undefined;
|
|
2187
2187
|
/**
|
|
2188
2188
|
* <p>The secret key for the temporary credentials.</p>
|
|
2189
2189
|
* @public
|
|
2190
2190
|
*/
|
|
2191
|
-
SecretAccessKey?: string;
|
|
2191
|
+
SecretAccessKey?: string | undefined;
|
|
2192
2192
|
/**
|
|
2193
2193
|
* <p>The session token for the temporary credentials.</p>
|
|
2194
2194
|
* @public
|
|
2195
2195
|
*/
|
|
2196
|
-
SessionToken?: string;
|
|
2196
|
+
SessionToken?: string | undefined;
|
|
2197
2197
|
/**
|
|
2198
2198
|
* <p>The date and time when the temporary credentials expire.</p>
|
|
2199
2199
|
* @public
|
|
2200
2200
|
*/
|
|
2201
|
-
Expiration?: Date;
|
|
2201
|
+
Expiration?: Date | undefined;
|
|
2202
2202
|
}
|
|
2203
2203
|
/**
|
|
2204
2204
|
* <p>The engine does not support filtering data based on the enforced permissions. For example, if you call the <code>GetTemporaryGlueTableCredentials</code> operation with <code>SupportedPermissionType</code> equal to <code>ColumnPermission</code>, but cell-level permissions exist on the table, this exception is thrown.</p>
|
|
@@ -2211,7 +2211,7 @@ export declare class PermissionTypeMismatchException extends __BaseException {
|
|
|
2211
2211
|
* <p>A message describing the problem.</p>
|
|
2212
2212
|
* @public
|
|
2213
2213
|
*/
|
|
2214
|
-
Message?: string;
|
|
2214
|
+
Message?: string | undefined;
|
|
2215
2215
|
/**
|
|
2216
2216
|
* @internal
|
|
2217
2217
|
*/
|
|
@@ -2226,27 +2226,27 @@ export interface QuerySessionContext {
|
|
|
2226
2226
|
* <p>A unique identifier generated by the query engine for the query.</p>
|
|
2227
2227
|
* @public
|
|
2228
2228
|
*/
|
|
2229
|
-
QueryId?: string;
|
|
2229
|
+
QueryId?: string | undefined;
|
|
2230
2230
|
/**
|
|
2231
2231
|
* <p>A timestamp provided by the query engine for when the query started.</p>
|
|
2232
2232
|
* @public
|
|
2233
2233
|
*/
|
|
2234
|
-
QueryStartTime?: Date;
|
|
2234
|
+
QueryStartTime?: Date | undefined;
|
|
2235
2235
|
/**
|
|
2236
2236
|
* <p>An identifier string for the consumer cluster.</p>
|
|
2237
2237
|
* @public
|
|
2238
2238
|
*/
|
|
2239
|
-
ClusterId?: string;
|
|
2239
|
+
ClusterId?: string | undefined;
|
|
2240
2240
|
/**
|
|
2241
2241
|
* <p>A cryptographically generated query identifier generated by Glue or Lake Formation.</p>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
QueryAuthorizationId?: string;
|
|
2244
|
+
QueryAuthorizationId?: string | undefined;
|
|
2245
2245
|
/**
|
|
2246
2246
|
* <p>An opaque string-string map passed by the query engine.</p>
|
|
2247
2247
|
* @public
|
|
2248
2248
|
*/
|
|
2249
|
-
AdditionalContext?: Record<string, string
|
|
2249
|
+
AdditionalContext?: Record<string, string> | undefined;
|
|
2250
2250
|
}
|
|
2251
2251
|
/**
|
|
2252
2252
|
* @public
|
|
@@ -2261,32 +2261,32 @@ export interface GetTemporaryGlueTableCredentialsRequest {
|
|
|
2261
2261
|
* <p>Filters the request based on the user having been granted a list of specified permissions on the requested resource(s).</p>
|
|
2262
2262
|
* @public
|
|
2263
2263
|
*/
|
|
2264
|
-
Permissions?: Permission[];
|
|
2264
|
+
Permissions?: Permission[] | undefined;
|
|
2265
2265
|
/**
|
|
2266
2266
|
* <p>The time period, between 900 and 21,600 seconds, for the timeout of the temporary credentials.</p>
|
|
2267
2267
|
* @public
|
|
2268
2268
|
*/
|
|
2269
|
-
DurationSeconds?: number;
|
|
2269
|
+
DurationSeconds?: number | undefined;
|
|
2270
2270
|
/**
|
|
2271
2271
|
* <p>A structure representing context to access a resource (column names, query ID, etc).</p>
|
|
2272
2272
|
* @public
|
|
2273
2273
|
*/
|
|
2274
|
-
AuditContext?: AuditContext;
|
|
2274
|
+
AuditContext?: AuditContext | undefined;
|
|
2275
2275
|
/**
|
|
2276
2276
|
* <p>A list of supported permission types for the table. Valid values are <code>COLUMN_PERMISSION</code> and <code>CELL_FILTER_PERMISSION</code>.</p>
|
|
2277
2277
|
* @public
|
|
2278
2278
|
*/
|
|
2279
|
-
SupportedPermissionTypes?: PermissionType[];
|
|
2279
|
+
SupportedPermissionTypes?: PermissionType[] | undefined;
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>The Amazon S3 path for the table.</p>
|
|
2282
2282
|
* @public
|
|
2283
2283
|
*/
|
|
2284
|
-
S3Path?: string;
|
|
2284
|
+
S3Path?: string | undefined;
|
|
2285
2285
|
/**
|
|
2286
2286
|
* <p>A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.</p>
|
|
2287
2287
|
* @public
|
|
2288
2288
|
*/
|
|
2289
|
-
QuerySessionContext?: QuerySessionContext;
|
|
2289
|
+
QuerySessionContext?: QuerySessionContext | undefined;
|
|
2290
2290
|
}
|
|
2291
2291
|
/**
|
|
2292
2292
|
* @public
|
|
@@ -2296,27 +2296,27 @@ export interface GetTemporaryGlueTableCredentialsResponse {
|
|
|
2296
2296
|
* <p>The access key ID for the temporary credentials.</p>
|
|
2297
2297
|
* @public
|
|
2298
2298
|
*/
|
|
2299
|
-
AccessKeyId?: string;
|
|
2299
|
+
AccessKeyId?: string | undefined;
|
|
2300
2300
|
/**
|
|
2301
2301
|
* <p>The secret key for the temporary credentials.</p>
|
|
2302
2302
|
* @public
|
|
2303
2303
|
*/
|
|
2304
|
-
SecretAccessKey?: string;
|
|
2304
|
+
SecretAccessKey?: string | undefined;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* <p>The session token for the temporary credentials.</p>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
SessionToken?: string;
|
|
2309
|
+
SessionToken?: string | undefined;
|
|
2310
2310
|
/**
|
|
2311
2311
|
* <p>The date and time when the temporary credentials expire.</p>
|
|
2312
2312
|
* @public
|
|
2313
2313
|
*/
|
|
2314
|
-
Expiration?: Date;
|
|
2314
|
+
Expiration?: Date | undefined;
|
|
2315
2315
|
/**
|
|
2316
2316
|
* <p>The Amazon S3 path for the temporary credentials.</p>
|
|
2317
2317
|
* @public
|
|
2318
2318
|
*/
|
|
2319
|
-
VendedS3Path?: string[];
|
|
2319
|
+
VendedS3Path?: string[] | undefined;
|
|
2320
2320
|
}
|
|
2321
2321
|
/**
|
|
2322
2322
|
* @public
|
|
@@ -2347,7 +2347,7 @@ export interface GetWorkUnitResultsResponse {
|
|
|
2347
2347
|
* <p>Rows returned from the <code>GetWorkUnitResults</code> operation as a stream of Apache Arrow v1.0 messages.</p>
|
|
2348
2348
|
* @public
|
|
2349
2349
|
*/
|
|
2350
|
-
ResultStream?: StreamingBlobTypes;
|
|
2350
|
+
ResultStream?: StreamingBlobTypes | undefined;
|
|
2351
2351
|
}
|
|
2352
2352
|
/**
|
|
2353
2353
|
* @public
|
|
@@ -2357,12 +2357,12 @@ export interface GetWorkUnitsRequest {
|
|
|
2357
2357
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
2358
2358
|
* @public
|
|
2359
2359
|
*/
|
|
2360
|
-
NextToken?: string;
|
|
2360
|
+
NextToken?: string | undefined;
|
|
2361
2361
|
/**
|
|
2362
2362
|
* <p>The size of each page to get in the Amazon Web Services service call. This does not affect the number of items returned in the command's output. Setting a smaller page size results in more calls to the Amazon Web Services service, retrieving fewer items in each call. This can help prevent the Amazon Web Services service calls from timing out.</p>
|
|
2363
2363
|
* @public
|
|
2364
2364
|
*/
|
|
2365
|
-
PageSize?: number;
|
|
2365
|
+
PageSize?: number | undefined;
|
|
2366
2366
|
/**
|
|
2367
2367
|
* <p>The ID of the plan query operation.</p>
|
|
2368
2368
|
* @public
|
|
@@ -2399,7 +2399,7 @@ export interface GetWorkUnitsResponse {
|
|
|
2399
2399
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
NextToken?: string;
|
|
2402
|
+
NextToken?: string | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>The ID of the plan query operation.</p>
|
|
2405
2405
|
* @public
|
|
@@ -2422,7 +2422,7 @@ export declare class WorkUnitsNotReadyYetException extends __BaseException {
|
|
|
2422
2422
|
* <p>A message describing the error.</p>
|
|
2423
2423
|
* @public
|
|
2424
2424
|
*/
|
|
2425
|
-
Message?: string;
|
|
2425
|
+
Message?: string | undefined;
|
|
2426
2426
|
/**
|
|
2427
2427
|
* @internal
|
|
2428
2428
|
*/
|
|
@@ -2436,7 +2436,7 @@ export interface GrantPermissionsRequest {
|
|
|
2436
2436
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
2437
2437
|
* @public
|
|
2438
2438
|
*/
|
|
2439
|
-
CatalogId?: string;
|
|
2439
|
+
CatalogId?: string | undefined;
|
|
2440
2440
|
/**
|
|
2441
2441
|
* <p>The principal to be granted the permissions on the resource. Supported principals are IAM users or IAM roles, and they are defined by their principal type and their ARN.</p>
|
|
2442
2442
|
* <p>Note that if you define a resource with a particular ARN, then later delete, and recreate a resource with that same ARN, the resource maintains the permissions already granted. </p>
|
|
@@ -2457,7 +2457,7 @@ export interface GrantPermissionsRequest {
|
|
|
2457
2457
|
* <p>Indicates a list of the granted permissions that the principal may pass to other users. These permissions may only be a subset of the permissions granted in the <code>Privileges</code>.</p>
|
|
2458
2458
|
* @public
|
|
2459
2459
|
*/
|
|
2460
|
-
PermissionsWithGrantOption?: Permission[];
|
|
2460
|
+
PermissionsWithGrantOption?: Permission[] | undefined;
|
|
2461
2461
|
}
|
|
2462
2462
|
/**
|
|
2463
2463
|
* @public
|
|
@@ -2472,17 +2472,17 @@ export interface ListDataCellsFilterRequest {
|
|
|
2472
2472
|
* <p>A table in the Glue Data Catalog.</p>
|
|
2473
2473
|
* @public
|
|
2474
2474
|
*/
|
|
2475
|
-
Table?: TableResource;
|
|
2475
|
+
Table?: TableResource | undefined;
|
|
2476
2476
|
/**
|
|
2477
2477
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
2478
2478
|
* @public
|
|
2479
2479
|
*/
|
|
2480
|
-
NextToken?: string;
|
|
2480
|
+
NextToken?: string | undefined;
|
|
2481
2481
|
/**
|
|
2482
2482
|
* <p>The maximum size of the response.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
MaxResults?: number;
|
|
2485
|
+
MaxResults?: number | undefined;
|
|
2486
2486
|
}
|
|
2487
2487
|
/**
|
|
2488
2488
|
* @public
|
|
@@ -2492,12 +2492,12 @@ export interface ListDataCellsFilterResponse {
|
|
|
2492
2492
|
* <p>A list of <code>DataCellFilter</code> structures.</p>
|
|
2493
2493
|
* @public
|
|
2494
2494
|
*/
|
|
2495
|
-
DataCellsFilters?: DataCellsFilter[];
|
|
2495
|
+
DataCellsFilters?: DataCellsFilter[] | undefined;
|
|
2496
2496
|
/**
|
|
2497
2497
|
* <p>A continuation token, if not all requested data cell filters have been returned.</p>
|
|
2498
2498
|
* @public
|
|
2499
2499
|
*/
|
|
2500
|
-
NextToken?: string;
|
|
2500
|
+
NextToken?: string | undefined;
|
|
2501
2501
|
}
|
|
2502
2502
|
/**
|
|
2503
2503
|
* @public
|
|
@@ -2508,22 +2508,22 @@ export interface ListLakeFormationOptInsRequest {
|
|
|
2508
2508
|
* or IAM roles.</p>
|
|
2509
2509
|
* @public
|
|
2510
2510
|
*/
|
|
2511
|
-
Principal?: DataLakePrincipal;
|
|
2511
|
+
Principal?: DataLakePrincipal | undefined;
|
|
2512
2512
|
/**
|
|
2513
2513
|
* <p>A structure for the resource.</p>
|
|
2514
2514
|
* @public
|
|
2515
2515
|
*/
|
|
2516
|
-
Resource?: Resource;
|
|
2516
|
+
Resource?: Resource | undefined;
|
|
2517
2517
|
/**
|
|
2518
2518
|
* <p>The maximum number of results to return.</p>
|
|
2519
2519
|
* @public
|
|
2520
2520
|
*/
|
|
2521
|
-
MaxResults?: number;
|
|
2521
|
+
MaxResults?: number | undefined;
|
|
2522
2522
|
/**
|
|
2523
2523
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
NextToken?: string;
|
|
2526
|
+
NextToken?: string | undefined;
|
|
2527
2527
|
}
|
|
2528
2528
|
/**
|
|
2529
2529
|
* <p>A single principal-resource pair that has Lake Formation permissins enforced.</p>
|
|
@@ -2534,23 +2534,23 @@ export interface LakeFormationOptInsInfo {
|
|
|
2534
2534
|
* <p>A structure for the resource.</p>
|
|
2535
2535
|
* @public
|
|
2536
2536
|
*/
|
|
2537
|
-
Resource?: Resource;
|
|
2537
|
+
Resource?: Resource | undefined;
|
|
2538
2538
|
/**
|
|
2539
2539
|
* <p>The Lake Formation principal. Supported principals are IAM users
|
|
2540
2540
|
* or IAM roles.</p>
|
|
2541
2541
|
* @public
|
|
2542
2542
|
*/
|
|
2543
|
-
Principal?: DataLakePrincipal;
|
|
2543
|
+
Principal?: DataLakePrincipal | undefined;
|
|
2544
2544
|
/**
|
|
2545
2545
|
* <p>The last modified date and time of the record.</p>
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
LastModified?: Date;
|
|
2548
|
+
LastModified?: Date | undefined;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* <p>The user who updated the record.</p>
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
LastUpdatedBy?: string;
|
|
2553
|
+
LastUpdatedBy?: string | undefined;
|
|
2554
2554
|
}
|
|
2555
2555
|
/**
|
|
2556
2556
|
* @public
|
|
@@ -2560,12 +2560,12 @@ export interface ListLakeFormationOptInsResponse {
|
|
|
2560
2560
|
* <p>A list of principal-resource pairs that have Lake Formation permissins enforced.</p>
|
|
2561
2561
|
* @public
|
|
2562
2562
|
*/
|
|
2563
|
-
LakeFormationOptInsInfoList?: LakeFormationOptInsInfo[];
|
|
2563
|
+
LakeFormationOptInsInfoList?: LakeFormationOptInsInfo[] | undefined;
|
|
2564
2564
|
/**
|
|
2565
2565
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2566
2566
|
* @public
|
|
2567
2567
|
*/
|
|
2568
|
-
NextToken?: string;
|
|
2568
|
+
NextToken?: string | undefined;
|
|
2569
2569
|
}
|
|
2570
2570
|
/**
|
|
2571
2571
|
* @public
|
|
@@ -2575,17 +2575,17 @@ export interface ListLFTagExpressionsRequest {
|
|
|
2575
2575
|
* <p>The identifier for the Data Catalog. By default, the account ID. </p>
|
|
2576
2576
|
* @public
|
|
2577
2577
|
*/
|
|
2578
|
-
CatalogId?: string;
|
|
2578
|
+
CatalogId?: string | undefined;
|
|
2579
2579
|
/**
|
|
2580
2580
|
* <p>The maximum number of results to return.</p>
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
MaxResults?: number;
|
|
2583
|
+
MaxResults?: number | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
NextToken?: string;
|
|
2588
|
+
NextToken?: string | undefined;
|
|
2589
2589
|
}
|
|
2590
2590
|
/**
|
|
2591
2591
|
* <p>A structure consists LF-Tag expression name and catalog ID.</p>
|
|
@@ -2596,22 +2596,22 @@ export interface LFTagExpression {
|
|
|
2596
2596
|
* <p>The name for saved the LF-Tag expression.</p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
Name?: string;
|
|
2599
|
+
Name?: string | undefined;
|
|
2600
2600
|
/**
|
|
2601
2601
|
* <p>A structure that contains information about the LF-Tag expression.</p>
|
|
2602
2602
|
* @public
|
|
2603
2603
|
*/
|
|
2604
|
-
Description?: string;
|
|
2604
|
+
Description?: string | undefined;
|
|
2605
2605
|
/**
|
|
2606
2606
|
* <p>The identifier for the Data Catalog. By default, the account ID. </p>
|
|
2607
2607
|
* @public
|
|
2608
2608
|
*/
|
|
2609
|
-
CatalogId?: string;
|
|
2609
|
+
CatalogId?: string | undefined;
|
|
2610
2610
|
/**
|
|
2611
2611
|
* <p>A logical expression composed of one or more LF-Tags.</p>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
Expression?: LFTag[];
|
|
2614
|
+
Expression?: LFTag[] | undefined;
|
|
2615
2615
|
}
|
|
2616
2616
|
/**
|
|
2617
2617
|
* @public
|
|
@@ -2621,12 +2621,12 @@ export interface ListLFTagExpressionsResponse {
|
|
|
2621
2621
|
* <p>Logical expressions composed of one more LF-Tag key-value pairs.</p>
|
|
2622
2622
|
* @public
|
|
2623
2623
|
*/
|
|
2624
|
-
LFTagExpressions?: LFTagExpression[];
|
|
2624
|
+
LFTagExpressions?: LFTagExpression[] | undefined;
|
|
2625
2625
|
/**
|
|
2626
2626
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2627
2627
|
* @public
|
|
2628
2628
|
*/
|
|
2629
|
-
NextToken?: string;
|
|
2629
|
+
NextToken?: string | undefined;
|
|
2630
2630
|
}
|
|
2631
2631
|
/**
|
|
2632
2632
|
* @public
|
|
@@ -2648,22 +2648,22 @@ export interface ListLFTagsRequest {
|
|
|
2648
2648
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
2649
2649
|
* @public
|
|
2650
2650
|
*/
|
|
2651
|
-
CatalogId?: string;
|
|
2651
|
+
CatalogId?: string | undefined;
|
|
2652
2652
|
/**
|
|
2653
2653
|
* <p>If resource share type is <code>ALL</code>, returns both in-account LF-tags and shared LF-tags that the requester has permission to view. If resource share type is <code>FOREIGN</code>, returns all share LF-tags that the requester can view. If no resource share type is passed, lists LF-tags in the given catalog ID that the requester has permission to view.</p>
|
|
2654
2654
|
* @public
|
|
2655
2655
|
*/
|
|
2656
|
-
ResourceShareType?: ResourceShareType;
|
|
2656
|
+
ResourceShareType?: ResourceShareType | undefined;
|
|
2657
2657
|
/**
|
|
2658
2658
|
* <p>The maximum number of results to return.</p>
|
|
2659
2659
|
* @public
|
|
2660
2660
|
*/
|
|
2661
|
-
MaxResults?: number;
|
|
2661
|
+
MaxResults?: number | undefined;
|
|
2662
2662
|
/**
|
|
2663
2663
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2664
2664
|
* @public
|
|
2665
2665
|
*/
|
|
2666
|
-
NextToken?: string;
|
|
2666
|
+
NextToken?: string | undefined;
|
|
2667
2667
|
}
|
|
2668
2668
|
/**
|
|
2669
2669
|
* @public
|
|
@@ -2673,12 +2673,12 @@ export interface ListLFTagsResponse {
|
|
|
2673
2673
|
* <p>A list of LF-tags that the requested has permission to view.</p>
|
|
2674
2674
|
* @public
|
|
2675
2675
|
*/
|
|
2676
|
-
LFTags?: LFTagPair[];
|
|
2676
|
+
LFTags?: LFTagPair[] | undefined;
|
|
2677
2677
|
/**
|
|
2678
2678
|
* <p>A continuation token, present if the current list segment is not the last.</p>
|
|
2679
2679
|
* @public
|
|
2680
2680
|
*/
|
|
2681
|
-
NextToken?: string;
|
|
2681
|
+
NextToken?: string | undefined;
|
|
2682
2682
|
}
|
|
2683
2683
|
/**
|
|
2684
2684
|
* @public
|
|
@@ -2707,38 +2707,38 @@ export interface ListPermissionsRequest {
|
|
|
2707
2707
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
2708
2708
|
* @public
|
|
2709
2709
|
*/
|
|
2710
|
-
CatalogId?: string;
|
|
2710
|
+
CatalogId?: string | undefined;
|
|
2711
2711
|
/**
|
|
2712
2712
|
* <p>Specifies a principal to filter the permissions returned.</p>
|
|
2713
2713
|
* @public
|
|
2714
2714
|
*/
|
|
2715
|
-
Principal?: DataLakePrincipal;
|
|
2715
|
+
Principal?: DataLakePrincipal | undefined;
|
|
2716
2716
|
/**
|
|
2717
2717
|
* <p>Specifies a resource type to filter the permissions returned.</p>
|
|
2718
2718
|
* @public
|
|
2719
2719
|
*/
|
|
2720
|
-
ResourceType?: DataLakeResourceType;
|
|
2720
|
+
ResourceType?: DataLakeResourceType | undefined;
|
|
2721
2721
|
/**
|
|
2722
2722
|
* <p>A resource where you will get a list of the principal permissions.</p>
|
|
2723
2723
|
* <p>This operation does not support getting privileges on a table with columns. Instead, call this operation on the table, and the operation returns the table and the table w columns.</p>
|
|
2724
2724
|
* @public
|
|
2725
2725
|
*/
|
|
2726
|
-
Resource?: Resource;
|
|
2726
|
+
Resource?: Resource | undefined;
|
|
2727
2727
|
/**
|
|
2728
2728
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2729
2729
|
* @public
|
|
2730
2730
|
*/
|
|
2731
|
-
NextToken?: string;
|
|
2731
|
+
NextToken?: string | undefined;
|
|
2732
2732
|
/**
|
|
2733
2733
|
* <p>The maximum number of results to return.</p>
|
|
2734
2734
|
* @public
|
|
2735
2735
|
*/
|
|
2736
|
-
MaxResults?: number;
|
|
2736
|
+
MaxResults?: number | undefined;
|
|
2737
2737
|
/**
|
|
2738
2738
|
* <p>Indicates that related permissions should be included in the results.</p>
|
|
2739
2739
|
* @public
|
|
2740
2740
|
*/
|
|
2741
|
-
IncludeRelated?: string;
|
|
2741
|
+
IncludeRelated?: string | undefined;
|
|
2742
2742
|
}
|
|
2743
2743
|
/**
|
|
2744
2744
|
* @public
|
|
@@ -2748,12 +2748,12 @@ export interface ListPermissionsResponse {
|
|
|
2748
2748
|
* <p>A list of principals and their permissions on the resource for the specified principal and resource types.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
PrincipalResourcePermissions?: PrincipalResourcePermissions[];
|
|
2751
|
+
PrincipalResourcePermissions?: PrincipalResourcePermissions[] | undefined;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
2754
2754
|
* @public
|
|
2755
2755
|
*/
|
|
2756
|
-
NextToken?: string;
|
|
2756
|
+
NextToken?: string | undefined;
|
|
2757
2757
|
}
|
|
2758
2758
|
/**
|
|
2759
2759
|
* @public
|
|
@@ -2798,17 +2798,17 @@ export interface FilterCondition {
|
|
|
2798
2798
|
* <p>The field to filter in the filter condition.</p>
|
|
2799
2799
|
* @public
|
|
2800
2800
|
*/
|
|
2801
|
-
Field?: FieldNameString;
|
|
2801
|
+
Field?: FieldNameString | undefined;
|
|
2802
2802
|
/**
|
|
2803
2803
|
* <p>The comparison operator used in the filter condition.</p>
|
|
2804
2804
|
* @public
|
|
2805
2805
|
*/
|
|
2806
|
-
ComparisonOperator?: ComparisonOperator;
|
|
2806
|
+
ComparisonOperator?: ComparisonOperator | undefined;
|
|
2807
2807
|
/**
|
|
2808
2808
|
* <p>A string with values used in evaluating the filter condition.</p>
|
|
2809
2809
|
* @public
|
|
2810
2810
|
*/
|
|
2811
|
-
StringValueList?: string[];
|
|
2811
|
+
StringValueList?: string[] | undefined;
|
|
2812
2812
|
}
|
|
2813
2813
|
/**
|
|
2814
2814
|
* @public
|
|
@@ -2818,17 +2818,17 @@ export interface ListResourcesRequest {
|
|
|
2818
2818
|
* <p>Any applicable row-level and/or column-level filtering conditions for the resources.</p>
|
|
2819
2819
|
* @public
|
|
2820
2820
|
*/
|
|
2821
|
-
FilterConditionList?: FilterCondition[];
|
|
2821
|
+
FilterConditionList?: FilterCondition[] | undefined;
|
|
2822
2822
|
/**
|
|
2823
2823
|
* <p>The maximum number of resource results.</p>
|
|
2824
2824
|
* @public
|
|
2825
2825
|
*/
|
|
2826
|
-
MaxResults?: number;
|
|
2826
|
+
MaxResults?: number | undefined;
|
|
2827
2827
|
/**
|
|
2828
2828
|
* <p>A continuation token, if this is not the first call to retrieve these resources.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
NextToken?: string;
|
|
2831
|
+
NextToken?: string | undefined;
|
|
2832
2832
|
}
|
|
2833
2833
|
/**
|
|
2834
2834
|
* @public
|
|
@@ -2838,12 +2838,12 @@ export interface ListResourcesResponse {
|
|
|
2838
2838
|
* <p>A summary of the data lake resources.</p>
|
|
2839
2839
|
* @public
|
|
2840
2840
|
*/
|
|
2841
|
-
ResourceInfoList?: ResourceInfo[];
|
|
2841
|
+
ResourceInfoList?: ResourceInfo[] | undefined;
|
|
2842
2842
|
/**
|
|
2843
2843
|
* <p>A continuation token, if this is not the first call to retrieve these resources.</p>
|
|
2844
2844
|
* @public
|
|
2845
2845
|
*/
|
|
2846
|
-
NextToken?: string;
|
|
2846
|
+
NextToken?: string | undefined;
|
|
2847
2847
|
}
|
|
2848
2848
|
/**
|
|
2849
2849
|
* @public
|
|
@@ -2866,7 +2866,7 @@ export interface ListTableStorageOptimizersRequest {
|
|
|
2866
2866
|
* <p>The Catalog ID of the table.</p>
|
|
2867
2867
|
* @public
|
|
2868
2868
|
*/
|
|
2869
|
-
CatalogId?: string;
|
|
2869
|
+
CatalogId?: string | undefined;
|
|
2870
2870
|
/**
|
|
2871
2871
|
* <p>Name of the database where the table is present.</p>
|
|
2872
2872
|
* @public
|
|
@@ -2881,17 +2881,17 @@ export interface ListTableStorageOptimizersRequest {
|
|
|
2881
2881
|
* <p>The specific type of storage optimizers to list. The supported value is <code>compaction</code>.</p>
|
|
2882
2882
|
* @public
|
|
2883
2883
|
*/
|
|
2884
|
-
StorageOptimizerType?: OptimizerType;
|
|
2884
|
+
StorageOptimizerType?: OptimizerType | undefined;
|
|
2885
2885
|
/**
|
|
2886
2886
|
* <p>The number of storage optimizers to return on each call.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
MaxResults?: number;
|
|
2889
|
+
MaxResults?: number | undefined;
|
|
2890
2890
|
/**
|
|
2891
2891
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
2892
2892
|
* @public
|
|
2893
2893
|
*/
|
|
2894
|
-
NextToken?: string;
|
|
2894
|
+
NextToken?: string | undefined;
|
|
2895
2895
|
}
|
|
2896
2896
|
/**
|
|
2897
2897
|
* <p>A structure describing the configuration and details of a storage optimizer.</p>
|
|
@@ -2902,29 +2902,29 @@ export interface StorageOptimizer {
|
|
|
2902
2902
|
* <p>The specific type of storage optimizer. The supported value is <code>compaction</code>.</p>
|
|
2903
2903
|
* @public
|
|
2904
2904
|
*/
|
|
2905
|
-
StorageOptimizerType?: OptimizerType;
|
|
2905
|
+
StorageOptimizerType?: OptimizerType | undefined;
|
|
2906
2906
|
/**
|
|
2907
2907
|
* <p>A map of the storage optimizer configuration. Currently contains only one key-value pair: <code>is_enabled</code> indicates true or false for acceleration.</p>
|
|
2908
2908
|
* @public
|
|
2909
2909
|
*/
|
|
2910
|
-
Config?: Record<string, string
|
|
2910
|
+
Config?: Record<string, string> | undefined;
|
|
2911
2911
|
/**
|
|
2912
2912
|
* <p>A message that contains information about any error (if present).</p>
|
|
2913
2913
|
* <p>When an acceleration result has an enabled status, the error message is empty.</p>
|
|
2914
2914
|
* <p>When an acceleration result has a disabled status, the message describes an error or simply indicates "disabled by the user".</p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
ErrorMessage?: string;
|
|
2917
|
+
ErrorMessage?: string | undefined;
|
|
2918
2918
|
/**
|
|
2919
2919
|
* <p>A message that contains information about any warnings (if present).</p>
|
|
2920
2920
|
* @public
|
|
2921
2921
|
*/
|
|
2922
|
-
Warnings?: string;
|
|
2922
|
+
Warnings?: string | undefined;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* <p>When an acceleration result has an enabled status, contains the details of the last job run.</p>
|
|
2925
2925
|
* @public
|
|
2926
2926
|
*/
|
|
2927
|
-
LastRunDetails?: string;
|
|
2927
|
+
LastRunDetails?: string | undefined;
|
|
2928
2928
|
}
|
|
2929
2929
|
/**
|
|
2930
2930
|
* @public
|
|
@@ -2934,12 +2934,12 @@ export interface ListTableStorageOptimizersResponse {
|
|
|
2934
2934
|
* <p>A list of the storage optimizers associated with a table.</p>
|
|
2935
2935
|
* @public
|
|
2936
2936
|
*/
|
|
2937
|
-
StorageOptimizerList?: StorageOptimizer[];
|
|
2937
|
+
StorageOptimizerList?: StorageOptimizer[] | undefined;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
2940
2940
|
* @public
|
|
2941
2941
|
*/
|
|
2942
|
-
NextToken?: string;
|
|
2942
|
+
NextToken?: string | undefined;
|
|
2943
2943
|
}
|
|
2944
2944
|
/**
|
|
2945
2945
|
* @public
|
|
@@ -2964,22 +2964,22 @@ export interface ListTransactionsRequest {
|
|
|
2964
2964
|
* <p>The catalog for which to list transactions. Defaults to the account ID of the caller.</p>
|
|
2965
2965
|
* @public
|
|
2966
2966
|
*/
|
|
2967
|
-
CatalogId?: string;
|
|
2967
|
+
CatalogId?: string | undefined;
|
|
2968
2968
|
/**
|
|
2969
2969
|
* <p> A filter indicating the status of transactions to return. Options are ALL | COMPLETED | COMMITTED | ABORTED | ACTIVE. The default is <code>ALL</code>.</p>
|
|
2970
2970
|
* @public
|
|
2971
2971
|
*/
|
|
2972
|
-
StatusFilter?: TransactionStatusFilter;
|
|
2972
|
+
StatusFilter?: TransactionStatusFilter | undefined;
|
|
2973
2973
|
/**
|
|
2974
2974
|
* <p>The maximum number of transactions to return in a single call.</p>
|
|
2975
2975
|
* @public
|
|
2976
2976
|
*/
|
|
2977
|
-
MaxResults?: number;
|
|
2977
|
+
MaxResults?: number | undefined;
|
|
2978
2978
|
/**
|
|
2979
2979
|
* <p>A continuation token if this is not the first call to retrieve transactions.</p>
|
|
2980
2980
|
* @public
|
|
2981
2981
|
*/
|
|
2982
|
-
NextToken?: string;
|
|
2982
|
+
NextToken?: string | undefined;
|
|
2983
2983
|
}
|
|
2984
2984
|
/**
|
|
2985
2985
|
* @public
|
|
@@ -2989,12 +2989,12 @@ export interface ListTransactionsResponse {
|
|
|
2989
2989
|
* <p>A list of transactions. The record for each transaction is a <code>TransactionDescription</code> object.</p>
|
|
2990
2990
|
* @public
|
|
2991
2991
|
*/
|
|
2992
|
-
Transactions?: TransactionDescription[];
|
|
2992
|
+
Transactions?: TransactionDescription[] | undefined;
|
|
2993
2993
|
/**
|
|
2994
2994
|
* <p>A continuation token indicating whether additional data is available.</p>
|
|
2995
2995
|
* @public
|
|
2996
2996
|
*/
|
|
2997
|
-
NextToken?: string;
|
|
2997
|
+
NextToken?: string | undefined;
|
|
2998
2998
|
}
|
|
2999
2999
|
/**
|
|
3000
3000
|
* @public
|
|
@@ -3004,7 +3004,7 @@ export interface PutDataLakeSettingsRequest {
|
|
|
3004
3004
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
3005
3005
|
* @public
|
|
3006
3006
|
*/
|
|
3007
|
-
CatalogId?: string;
|
|
3007
|
+
CatalogId?: string | undefined;
|
|
3008
3008
|
/**
|
|
3009
3009
|
* <p>A structure representing a list of Lake Formation principals designated as data lake administrators.</p>
|
|
3010
3010
|
* @public
|
|
@@ -3030,24 +3030,24 @@ export interface RegisterResourceRequest {
|
|
|
3030
3030
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/lake-formation/latest/dg/service-linked-roles.html">Using Service-Linked Roles for Lake Formation</a>.</p>
|
|
3031
3031
|
* @public
|
|
3032
3032
|
*/
|
|
3033
|
-
UseServiceLinkedRole?: boolean;
|
|
3033
|
+
UseServiceLinkedRole?: boolean | undefined;
|
|
3034
3034
|
/**
|
|
3035
3035
|
* <p>The identifier for the role that registers the resource.</p>
|
|
3036
3036
|
* @public
|
|
3037
3037
|
*/
|
|
3038
|
-
RoleArn?: string;
|
|
3038
|
+
RoleArn?: string | undefined;
|
|
3039
3039
|
/**
|
|
3040
3040
|
* <p>Whether or not the resource is a federated resource.</p>
|
|
3041
3041
|
* @public
|
|
3042
3042
|
*/
|
|
3043
|
-
WithFederation?: boolean;
|
|
3043
|
+
WithFederation?: boolean | undefined;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* <p>
|
|
3046
3046
|
* Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
|
|
3047
3047
|
* </p>
|
|
3048
3048
|
* @public
|
|
3049
3049
|
*/
|
|
3050
|
-
HybridAccessEnabled?: boolean;
|
|
3050
|
+
HybridAccessEnabled?: boolean | undefined;
|
|
3051
3051
|
}
|
|
3052
3052
|
/**
|
|
3053
3053
|
* @public
|
|
@@ -3062,7 +3062,7 @@ export interface RemoveLFTagsFromResourceRequest {
|
|
|
3062
3062
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
3063
3063
|
* @public
|
|
3064
3064
|
*/
|
|
3065
|
-
CatalogId?: string;
|
|
3065
|
+
CatalogId?: string | undefined;
|
|
3066
3066
|
/**
|
|
3067
3067
|
* <p>The database, table, or column resource where you want to remove an LF-tag.</p>
|
|
3068
3068
|
* @public
|
|
@@ -3082,7 +3082,7 @@ export interface RemoveLFTagsFromResourceResponse {
|
|
|
3082
3082
|
* <p>A list of failures to untag a resource.</p>
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
Failures?: LFTagError[];
|
|
3085
|
+
Failures?: LFTagError[] | undefined;
|
|
3086
3086
|
}
|
|
3087
3087
|
/**
|
|
3088
3088
|
* @public
|
|
@@ -3092,7 +3092,7 @@ export interface RevokePermissionsRequest {
|
|
|
3092
3092
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
3093
3093
|
* @public
|
|
3094
3094
|
*/
|
|
3095
|
-
CatalogId?: string;
|
|
3095
|
+
CatalogId?: string | undefined;
|
|
3096
3096
|
/**
|
|
3097
3097
|
* <p>The principal to be revoked permissions on the resource.</p>
|
|
3098
3098
|
* @public
|
|
@@ -3113,7 +3113,7 @@ export interface RevokePermissionsRequest {
|
|
|
3113
3113
|
* <p>Indicates a list of permissions for which to revoke the grant option allowing the principal to pass permissions to other principals.</p>
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
PermissionsWithGrantOption?: Permission[];
|
|
3116
|
+
PermissionsWithGrantOption?: Permission[] | undefined;
|
|
3117
3117
|
}
|
|
3118
3118
|
/**
|
|
3119
3119
|
* @public
|
|
@@ -3128,17 +3128,17 @@ export interface SearchDatabasesByLFTagsRequest {
|
|
|
3128
3128
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
3129
3129
|
* @public
|
|
3130
3130
|
*/
|
|
3131
|
-
NextToken?: string;
|
|
3131
|
+
NextToken?: string | undefined;
|
|
3132
3132
|
/**
|
|
3133
3133
|
* <p>The maximum number of results to return.</p>
|
|
3134
3134
|
* @public
|
|
3135
3135
|
*/
|
|
3136
|
-
MaxResults?: number;
|
|
3136
|
+
MaxResults?: number | undefined;
|
|
3137
3137
|
/**
|
|
3138
3138
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
3139
3139
|
* @public
|
|
3140
3140
|
*/
|
|
3141
|
-
CatalogId?: string;
|
|
3141
|
+
CatalogId?: string | undefined;
|
|
3142
3142
|
/**
|
|
3143
3143
|
* <p>A list of conditions (<code>LFTag</code> structures) to search for in database resources.</p>
|
|
3144
3144
|
* @public
|
|
@@ -3154,12 +3154,12 @@ export interface TaggedDatabase {
|
|
|
3154
3154
|
* <p>A database that has LF-tags attached to it.</p>
|
|
3155
3155
|
* @public
|
|
3156
3156
|
*/
|
|
3157
|
-
Database?: DatabaseResource;
|
|
3157
|
+
Database?: DatabaseResource | undefined;
|
|
3158
3158
|
/**
|
|
3159
3159
|
* <p>A list of LF-tags attached to the database.</p>
|
|
3160
3160
|
* @public
|
|
3161
3161
|
*/
|
|
3162
|
-
LFTags?: LFTagPair[];
|
|
3162
|
+
LFTags?: LFTagPair[] | undefined;
|
|
3163
3163
|
}
|
|
3164
3164
|
/**
|
|
3165
3165
|
* @public
|
|
@@ -3169,12 +3169,12 @@ export interface SearchDatabasesByLFTagsResponse {
|
|
|
3169
3169
|
* <p>A continuation token, present if the current list segment is not the last.</p>
|
|
3170
3170
|
* @public
|
|
3171
3171
|
*/
|
|
3172
|
-
NextToken?: string;
|
|
3172
|
+
NextToken?: string | undefined;
|
|
3173
3173
|
/**
|
|
3174
3174
|
* <p>A list of databases that meet the LF-tag conditions.</p>
|
|
3175
3175
|
* @public
|
|
3176
3176
|
*/
|
|
3177
|
-
DatabaseList?: TaggedDatabase[];
|
|
3177
|
+
DatabaseList?: TaggedDatabase[] | undefined;
|
|
3178
3178
|
}
|
|
3179
3179
|
/**
|
|
3180
3180
|
* @public
|
|
@@ -3184,17 +3184,17 @@ export interface SearchTablesByLFTagsRequest {
|
|
|
3184
3184
|
* <p>A continuation token, if this is not the first call to retrieve this list.</p>
|
|
3185
3185
|
* @public
|
|
3186
3186
|
*/
|
|
3187
|
-
NextToken?: string;
|
|
3187
|
+
NextToken?: string | undefined;
|
|
3188
3188
|
/**
|
|
3189
3189
|
* <p>The maximum number of results to return.</p>
|
|
3190
3190
|
* @public
|
|
3191
3191
|
*/
|
|
3192
|
-
MaxResults?: number;
|
|
3192
|
+
MaxResults?: number | undefined;
|
|
3193
3193
|
/**
|
|
3194
3194
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
3195
3195
|
* @public
|
|
3196
3196
|
*/
|
|
3197
|
-
CatalogId?: string;
|
|
3197
|
+
CatalogId?: string | undefined;
|
|
3198
3198
|
/**
|
|
3199
3199
|
* <p>A list of conditions (<code>LFTag</code> structures) to search for in table resources.</p>
|
|
3200
3200
|
* @public
|
|
@@ -3210,22 +3210,22 @@ export interface TaggedTable {
|
|
|
3210
3210
|
* <p>A table that has LF-tags attached to it.</p>
|
|
3211
3211
|
* @public
|
|
3212
3212
|
*/
|
|
3213
|
-
Table?: TableResource;
|
|
3213
|
+
Table?: TableResource | undefined;
|
|
3214
3214
|
/**
|
|
3215
3215
|
* <p>A list of LF-tags attached to the database where the table resides.</p>
|
|
3216
3216
|
* @public
|
|
3217
3217
|
*/
|
|
3218
|
-
LFTagOnDatabase?: LFTagPair[];
|
|
3218
|
+
LFTagOnDatabase?: LFTagPair[] | undefined;
|
|
3219
3219
|
/**
|
|
3220
3220
|
* <p>A list of LF-tags attached to the table.</p>
|
|
3221
3221
|
* @public
|
|
3222
3222
|
*/
|
|
3223
|
-
LFTagsOnTable?: LFTagPair[];
|
|
3223
|
+
LFTagsOnTable?: LFTagPair[] | undefined;
|
|
3224
3224
|
/**
|
|
3225
3225
|
* <p>A list of LF-tags attached to columns in the table.</p>
|
|
3226
3226
|
* @public
|
|
3227
3227
|
*/
|
|
3228
|
-
LFTagsOnColumns?: ColumnLFTag[];
|
|
3228
|
+
LFTagsOnColumns?: ColumnLFTag[] | undefined;
|
|
3229
3229
|
}
|
|
3230
3230
|
/**
|
|
3231
3231
|
* @public
|
|
@@ -3235,12 +3235,12 @@ export interface SearchTablesByLFTagsResponse {
|
|
|
3235
3235
|
* <p>A continuation token, present if the current list segment is not the last. On the first run, if you include a not null (a value) token you can get empty pages.</p>
|
|
3236
3236
|
* @public
|
|
3237
3237
|
*/
|
|
3238
|
-
NextToken?: string;
|
|
3238
|
+
NextToken?: string | undefined;
|
|
3239
3239
|
/**
|
|
3240
3240
|
* <p>A list of tables that meet the LF-tag conditions.</p>
|
|
3241
3241
|
* @public
|
|
3242
3242
|
*/
|
|
3243
|
-
TableList?: TaggedTable[];
|
|
3243
|
+
TableList?: TaggedTable[] | undefined;
|
|
3244
3244
|
}
|
|
3245
3245
|
/**
|
|
3246
3246
|
* <p>A structure containing information about the query plan.</p>
|
|
@@ -3251,7 +3251,7 @@ export interface QueryPlanningContext {
|
|
|
3251
3251
|
* <p>The ID of the Data Catalog where the partition in question resides. If none is provided, the Amazon Web Services account ID is used by default.</p>
|
|
3252
3252
|
* @public
|
|
3253
3253
|
*/
|
|
3254
|
-
CatalogId?: string;
|
|
3254
|
+
CatalogId?: string | undefined;
|
|
3255
3255
|
/**
|
|
3256
3256
|
* <p>The database containing the table.</p>
|
|
3257
3257
|
* @public
|
|
@@ -3261,17 +3261,17 @@ export interface QueryPlanningContext {
|
|
|
3261
3261
|
* <p>The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
3262
3262
|
* @public
|
|
3263
3263
|
*/
|
|
3264
|
-
QueryAsOfTime?: Date;
|
|
3264
|
+
QueryAsOfTime?: Date | undefined;
|
|
3265
3265
|
/**
|
|
3266
3266
|
* <p>A map consisting of key-value pairs.</p>
|
|
3267
3267
|
* @public
|
|
3268
3268
|
*/
|
|
3269
|
-
QueryParameters?: Record<string, string
|
|
3269
|
+
QueryParameters?: Record<string, string> | undefined;
|
|
3270
3270
|
/**
|
|
3271
3271
|
* <p>The transaction ID at which to read the table contents. If this transaction is not committed, the read will be treated as part of that transaction and will see its writes. If this transaction has aborted, an error will be returned. If not set, defaults to the most recent committed transaction. Cannot be specified along with <code>QueryAsOfTime</code>.</p>
|
|
3272
3272
|
* @public
|
|
3273
3273
|
*/
|
|
3274
|
-
TransactionId?: string;
|
|
3274
|
+
TransactionId?: string | undefined;
|
|
3275
3275
|
}
|
|
3276
3276
|
/**
|
|
3277
3277
|
* @public
|
|
@@ -3319,7 +3319,7 @@ export interface StartTransactionRequest {
|
|
|
3319
3319
|
* <p>Indicates whether this transaction should be read only or read and write. Writes made using a read-only transaction ID will be rejected. Read-only transactions do not need to be committed. </p>
|
|
3320
3320
|
* @public
|
|
3321
3321
|
*/
|
|
3322
|
-
TransactionType?: TransactionType;
|
|
3322
|
+
TransactionType?: TransactionType | undefined;
|
|
3323
3323
|
}
|
|
3324
3324
|
/**
|
|
3325
3325
|
* @public
|
|
@@ -3329,7 +3329,7 @@ export interface StartTransactionResponse {
|
|
|
3329
3329
|
* <p>An opaque identifier for the transaction.</p>
|
|
3330
3330
|
* @public
|
|
3331
3331
|
*/
|
|
3332
|
-
TransactionId?: string;
|
|
3332
|
+
TransactionId?: string | undefined;
|
|
3333
3333
|
}
|
|
3334
3334
|
/**
|
|
3335
3335
|
* @public
|
|
@@ -3357,7 +3357,7 @@ export interface UpdateLakeFormationIdentityCenterConfigurationRequest {
|
|
|
3357
3357
|
* environment.</p>
|
|
3358
3358
|
* @public
|
|
3359
3359
|
*/
|
|
3360
|
-
CatalogId?: string;
|
|
3360
|
+
CatalogId?: string | undefined;
|
|
3361
3361
|
/**
|
|
3362
3362
|
* <p>A list of Amazon Web Services account IDs or Amazon Web Services organization/organizational unit ARNs that
|
|
3363
3363
|
* are allowed to access to access data managed by Lake Formation. </p>
|
|
@@ -3368,18 +3368,18 @@ export interface UpdateLakeFormationIdentityCenterConfigurationRequest {
|
|
|
3368
3368
|
* recipients list will be cleared, and the resource share will be deleted.</p>
|
|
3369
3369
|
* @public
|
|
3370
3370
|
*/
|
|
3371
|
-
ShareRecipients?: DataLakePrincipal[];
|
|
3371
|
+
ShareRecipients?: DataLakePrincipal[] | undefined;
|
|
3372
3372
|
/**
|
|
3373
3373
|
* <p>Allows to enable or disable the IAM Identity Center connection.</p>
|
|
3374
3374
|
* @public
|
|
3375
3375
|
*/
|
|
3376
|
-
ApplicationStatus?: ApplicationStatus;
|
|
3376
|
+
ApplicationStatus?: ApplicationStatus | undefined;
|
|
3377
3377
|
/**
|
|
3378
3378
|
* <p>A list of the account IDs of Amazon Web Services accounts of third-party applications
|
|
3379
3379
|
* that are allowed to access data managed by Lake Formation.</p>
|
|
3380
3380
|
* @public
|
|
3381
3381
|
*/
|
|
3382
|
-
ExternalFiltering?: ExternalFilteringConfiguration;
|
|
3382
|
+
ExternalFiltering?: ExternalFilteringConfiguration | undefined;
|
|
3383
3383
|
}
|
|
3384
3384
|
/**
|
|
3385
3385
|
* @public
|
|
@@ -3394,7 +3394,7 @@ export interface UpdateLFTagRequest {
|
|
|
3394
3394
|
* <p>The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. </p>
|
|
3395
3395
|
* @public
|
|
3396
3396
|
*/
|
|
3397
|
-
CatalogId?: string;
|
|
3397
|
+
CatalogId?: string | undefined;
|
|
3398
3398
|
/**
|
|
3399
3399
|
* <p>The key-name for the LF-tag for which to add or delete values.</p>
|
|
3400
3400
|
* @public
|
|
@@ -3404,12 +3404,12 @@ export interface UpdateLFTagRequest {
|
|
|
3404
3404
|
* <p>A list of LF-tag values to delete from the LF-tag.</p>
|
|
3405
3405
|
* @public
|
|
3406
3406
|
*/
|
|
3407
|
-
TagValuesToDelete?: string[];
|
|
3407
|
+
TagValuesToDelete?: string[] | undefined;
|
|
3408
3408
|
/**
|
|
3409
3409
|
* <p>A list of LF-tag values to add from the LF-tag.</p>
|
|
3410
3410
|
* @public
|
|
3411
3411
|
*/
|
|
3412
|
-
TagValuesToAdd?: string[];
|
|
3412
|
+
TagValuesToAdd?: string[] | undefined;
|
|
3413
3413
|
}
|
|
3414
3414
|
/**
|
|
3415
3415
|
* @public
|
|
@@ -3429,12 +3429,12 @@ export interface UpdateLFTagExpressionRequest {
|
|
|
3429
3429
|
* <p>The description with information about the saved LF-Tag expression.</p>
|
|
3430
3430
|
* @public
|
|
3431
3431
|
*/
|
|
3432
|
-
Description?: string;
|
|
3432
|
+
Description?: string | undefined;
|
|
3433
3433
|
/**
|
|
3434
3434
|
* <p>The identifier for the Data Catalog. By default, the account ID. </p>
|
|
3435
3435
|
* @public
|
|
3436
3436
|
*/
|
|
3437
|
-
CatalogId?: string;
|
|
3437
|
+
CatalogId?: string | undefined;
|
|
3438
3438
|
/**
|
|
3439
3439
|
* <p>The LF-Tag expression body composed of one more LF-Tag key-value pairs.</p>
|
|
3440
3440
|
* @public
|
|
@@ -3464,14 +3464,14 @@ export interface UpdateResourceRequest {
|
|
|
3464
3464
|
* <p>Whether or not the resource is a federated resource.</p>
|
|
3465
3465
|
* @public
|
|
3466
3466
|
*/
|
|
3467
|
-
WithFederation?: boolean;
|
|
3467
|
+
WithFederation?: boolean | undefined;
|
|
3468
3468
|
/**
|
|
3469
3469
|
* <p>
|
|
3470
3470
|
* Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
|
|
3471
3471
|
* </p>
|
|
3472
3472
|
* @public
|
|
3473
3473
|
*/
|
|
3474
|
-
HybridAccessEnabled?: boolean;
|
|
3474
|
+
HybridAccessEnabled?: boolean | undefined;
|
|
3475
3475
|
}
|
|
3476
3476
|
/**
|
|
3477
3477
|
* @public
|
|
@@ -3492,12 +3492,12 @@ export interface DeleteObjectInput {
|
|
|
3492
3492
|
* <p>The Amazon S3 ETag of the object. Returned by <code>GetTableObjects</code> for validation and used to identify changes to the underlying data.</p>
|
|
3493
3493
|
* @public
|
|
3494
3494
|
*/
|
|
3495
|
-
ETag?: string;
|
|
3495
|
+
ETag?: string | undefined;
|
|
3496
3496
|
/**
|
|
3497
3497
|
* <p>A list of partition values for the object. A value must be specified for each partition key associated with the governed table.</p>
|
|
3498
3498
|
* @public
|
|
3499
3499
|
*/
|
|
3500
|
-
PartitionValues?: string[];
|
|
3500
|
+
PartitionValues?: string[] | undefined;
|
|
3501
3501
|
}
|
|
3502
3502
|
/**
|
|
3503
3503
|
* <p>Defines an object to add to or delete from a governed table.</p>
|
|
@@ -3508,12 +3508,12 @@ export interface WriteOperation {
|
|
|
3508
3508
|
* <p>A new object to add to the governed table.</p>
|
|
3509
3509
|
* @public
|
|
3510
3510
|
*/
|
|
3511
|
-
AddObject?: AddObjectInput;
|
|
3511
|
+
AddObject?: AddObjectInput | undefined;
|
|
3512
3512
|
/**
|
|
3513
3513
|
* <p>An object to delete from the governed table.</p>
|
|
3514
3514
|
* @public
|
|
3515
3515
|
*/
|
|
3516
|
-
DeleteObject?: DeleteObjectInput;
|
|
3516
|
+
DeleteObject?: DeleteObjectInput | undefined;
|
|
3517
3517
|
}
|
|
3518
3518
|
/**
|
|
3519
3519
|
* @public
|
|
@@ -3523,7 +3523,7 @@ export interface UpdateTableObjectsRequest {
|
|
|
3523
3523
|
* <p>The catalog containing the governed table to update. Defaults to the caller’s account ID.</p>
|
|
3524
3524
|
* @public
|
|
3525
3525
|
*/
|
|
3526
|
-
CatalogId?: string;
|
|
3526
|
+
CatalogId?: string | undefined;
|
|
3527
3527
|
/**
|
|
3528
3528
|
* <p>The database containing the governed table to update.</p>
|
|
3529
3529
|
* @public
|
|
@@ -3538,7 +3538,7 @@ export interface UpdateTableObjectsRequest {
|
|
|
3538
3538
|
* <p>The transaction at which to do the write.</p>
|
|
3539
3539
|
* @public
|
|
3540
3540
|
*/
|
|
3541
|
-
TransactionId?: string;
|
|
3541
|
+
TransactionId?: string | undefined;
|
|
3542
3542
|
/**
|
|
3543
3543
|
* <p>A list of <code>WriteOperation</code> objects that define an object to add to or delete from the manifest for a governed table.</p>
|
|
3544
3544
|
* @public
|
|
@@ -3558,7 +3558,7 @@ export interface UpdateTableStorageOptimizerRequest {
|
|
|
3558
3558
|
* <p>The Catalog ID of the table.</p>
|
|
3559
3559
|
* @public
|
|
3560
3560
|
*/
|
|
3561
|
-
CatalogId?: string;
|
|
3561
|
+
CatalogId?: string | undefined;
|
|
3562
3562
|
/**
|
|
3563
3563
|
* <p>Name of the database where the table is present.</p>
|
|
3564
3564
|
* @public
|
|
@@ -3583,7 +3583,7 @@ export interface UpdateTableStorageOptimizerResponse {
|
|
|
3583
3583
|
* <p>A response indicating the success of failure of the operation.</p>
|
|
3584
3584
|
* @public
|
|
3585
3585
|
*/
|
|
3586
|
-
Result?: string;
|
|
3586
|
+
Result?: string | undefined;
|
|
3587
3587
|
}
|
|
3588
3588
|
/**
|
|
3589
3589
|
* @internal
|