@aws-sdk/client-lakeformation 3.933.0 → 3.935.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-cjs/index.js +99 -98
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +98 -0
- package/dist-es/models/errors.js +256 -0
- package/dist-es/models/models_0.js +1 -354
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +210 -0
- package/dist-types/models/errors.d.ts +311 -0
- package/dist-types/models/models_0.d.ts +1 -521
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +122 -0
- package/dist-types/ts3.4/models/errors.d.ts +157 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -279
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,23 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
/**
|
|
5
|
-
* <p>Access to a resource was denied.</p>
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
-
readonly name: "AccessDeniedException";
|
|
10
|
-
readonly $fault: "client";
|
|
11
|
-
/**
|
|
12
|
-
* <p>A message describing the problem.</p>
|
|
13
|
-
* @public
|
|
14
|
-
*/
|
|
15
|
-
Message?: string | undefined;
|
|
16
|
-
/**
|
|
17
|
-
* @internal
|
|
18
|
-
*/
|
|
19
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
20
|
-
}
|
|
2
|
+
import { ApplicationStatus, ComparisonOperator, DataLakeResourceType, EnableStatus, FieldNameString, OptimizerType, Permission, PermissionType, QueryStateString, ResourceShareType, ResourceType, TransactionStatus, TransactionStatusFilter, TransactionType } from "./enums";
|
|
21
3
|
/**
|
|
22
4
|
* <p>A structure containing an LF-tag key-value pair.</p>
|
|
23
5
|
* @public
|
|
@@ -163,18 +145,6 @@ export interface LFTag {
|
|
|
163
145
|
*/
|
|
164
146
|
TagValues: string[] | undefined;
|
|
165
147
|
}
|
|
166
|
-
/**
|
|
167
|
-
* @public
|
|
168
|
-
* @enum
|
|
169
|
-
*/
|
|
170
|
-
export declare const ResourceType: {
|
|
171
|
-
readonly DATABASE: "DATABASE";
|
|
172
|
-
readonly TABLE: "TABLE";
|
|
173
|
-
};
|
|
174
|
-
/**
|
|
175
|
-
* @public
|
|
176
|
-
*/
|
|
177
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
178
148
|
/**
|
|
179
149
|
* <p>A structure containing a list of LF-tag conditions or saved LF-Tag expressions that apply to a resource's LF-tag policy.</p>
|
|
180
150
|
* @public
|
|
@@ -392,91 +362,6 @@ export interface AddLFTagsToResourceResponse {
|
|
|
392
362
|
*/
|
|
393
363
|
Failures?: LFTagError[] | undefined;
|
|
394
364
|
}
|
|
395
|
-
/**
|
|
396
|
-
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
397
|
-
* @public
|
|
398
|
-
*/
|
|
399
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
400
|
-
readonly name: "ConcurrentModificationException";
|
|
401
|
-
readonly $fault: "client";
|
|
402
|
-
/**
|
|
403
|
-
* <p>A message describing the problem.</p>
|
|
404
|
-
* @public
|
|
405
|
-
*/
|
|
406
|
-
Message?: string | undefined;
|
|
407
|
-
/**
|
|
408
|
-
* @internal
|
|
409
|
-
*/
|
|
410
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
411
|
-
}
|
|
412
|
-
/**
|
|
413
|
-
* <p>A specified entity does not exist.</p>
|
|
414
|
-
* @public
|
|
415
|
-
*/
|
|
416
|
-
export declare class EntityNotFoundException extends __BaseException {
|
|
417
|
-
readonly name: "EntityNotFoundException";
|
|
418
|
-
readonly $fault: "client";
|
|
419
|
-
/**
|
|
420
|
-
* <p>A message describing the problem.</p>
|
|
421
|
-
* @public
|
|
422
|
-
*/
|
|
423
|
-
Message?: string | undefined;
|
|
424
|
-
/**
|
|
425
|
-
* @internal
|
|
426
|
-
*/
|
|
427
|
-
constructor(opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>);
|
|
428
|
-
}
|
|
429
|
-
/**
|
|
430
|
-
* <p>An internal service error occurred.</p>
|
|
431
|
-
* @public
|
|
432
|
-
*/
|
|
433
|
-
export declare class InternalServiceException extends __BaseException {
|
|
434
|
-
readonly name: "InternalServiceException";
|
|
435
|
-
readonly $fault: "server";
|
|
436
|
-
/**
|
|
437
|
-
* <p>A message describing the problem.</p>
|
|
438
|
-
* @public
|
|
439
|
-
*/
|
|
440
|
-
Message?: string | undefined;
|
|
441
|
-
/**
|
|
442
|
-
* @internal
|
|
443
|
-
*/
|
|
444
|
-
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
445
|
-
}
|
|
446
|
-
/**
|
|
447
|
-
* <p>The input provided was not valid.</p>
|
|
448
|
-
* @public
|
|
449
|
-
*/
|
|
450
|
-
export declare class InvalidInputException extends __BaseException {
|
|
451
|
-
readonly name: "InvalidInputException";
|
|
452
|
-
readonly $fault: "client";
|
|
453
|
-
/**
|
|
454
|
-
* <p>A message describing the problem.</p>
|
|
455
|
-
* @public
|
|
456
|
-
*/
|
|
457
|
-
Message?: string | undefined;
|
|
458
|
-
/**
|
|
459
|
-
* @internal
|
|
460
|
-
*/
|
|
461
|
-
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
462
|
-
}
|
|
463
|
-
/**
|
|
464
|
-
* <p>The operation timed out.</p>
|
|
465
|
-
* @public
|
|
466
|
-
*/
|
|
467
|
-
export declare class OperationTimeoutException extends __BaseException {
|
|
468
|
-
readonly name: "OperationTimeoutException";
|
|
469
|
-
readonly $fault: "client";
|
|
470
|
-
/**
|
|
471
|
-
* <p>A message describing the problem.</p>
|
|
472
|
-
* @public
|
|
473
|
-
*/
|
|
474
|
-
Message?: string | undefined;
|
|
475
|
-
/**
|
|
476
|
-
* @internal
|
|
477
|
-
*/
|
|
478
|
-
constructor(opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>);
|
|
479
|
-
}
|
|
480
365
|
/**
|
|
481
366
|
* <p>A new object to add to the governed table.</p>
|
|
482
367
|
* @public
|
|
@@ -510,35 +395,6 @@ export interface AddObjectInput {
|
|
|
510
395
|
*/
|
|
511
396
|
export interface AllRowsWildcard {
|
|
512
397
|
}
|
|
513
|
-
/**
|
|
514
|
-
* <p>A resource to be created or added already exists.</p>
|
|
515
|
-
* @public
|
|
516
|
-
*/
|
|
517
|
-
export declare class AlreadyExistsException extends __BaseException {
|
|
518
|
-
readonly name: "AlreadyExistsException";
|
|
519
|
-
readonly $fault: "client";
|
|
520
|
-
/**
|
|
521
|
-
* <p>A message describing the problem.</p>
|
|
522
|
-
* @public
|
|
523
|
-
*/
|
|
524
|
-
Message?: string | undefined;
|
|
525
|
-
/**
|
|
526
|
-
* @internal
|
|
527
|
-
*/
|
|
528
|
-
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
529
|
-
}
|
|
530
|
-
/**
|
|
531
|
-
* @public
|
|
532
|
-
* @enum
|
|
533
|
-
*/
|
|
534
|
-
export declare const ApplicationStatus: {
|
|
535
|
-
readonly DISABLED: "DISABLED";
|
|
536
|
-
readonly ENABLED: "ENABLED";
|
|
537
|
-
};
|
|
538
|
-
/**
|
|
539
|
-
* @public
|
|
540
|
-
*/
|
|
541
|
-
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
542
398
|
/**
|
|
543
399
|
* @public
|
|
544
400
|
*/
|
|
@@ -611,32 +467,6 @@ export interface Condition {
|
|
|
611
467
|
*/
|
|
612
468
|
Expression?: string | undefined;
|
|
613
469
|
}
|
|
614
|
-
/**
|
|
615
|
-
* @public
|
|
616
|
-
* @enum
|
|
617
|
-
*/
|
|
618
|
-
export declare const Permission: {
|
|
619
|
-
readonly ALL: "ALL";
|
|
620
|
-
readonly ALTER: "ALTER";
|
|
621
|
-
readonly ASSOCIATE: "ASSOCIATE";
|
|
622
|
-
readonly CREATE_CATALOG: "CREATE_CATALOG";
|
|
623
|
-
readonly CREATE_DATABASE: "CREATE_DATABASE";
|
|
624
|
-
readonly CREATE_LF_TAG: "CREATE_LF_TAG";
|
|
625
|
-
readonly CREATE_LF_TAG_EXPRESSION: "CREATE_LF_TAG_EXPRESSION";
|
|
626
|
-
readonly CREATE_TABLE: "CREATE_TABLE";
|
|
627
|
-
readonly DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS";
|
|
628
|
-
readonly DELETE: "DELETE";
|
|
629
|
-
readonly DESCRIBE: "DESCRIBE";
|
|
630
|
-
readonly DROP: "DROP";
|
|
631
|
-
readonly GRANT_WITH_LF_TAG_EXPRESSION: "GRANT_WITH_LF_TAG_EXPRESSION";
|
|
632
|
-
readonly INSERT: "INSERT";
|
|
633
|
-
readonly SELECT: "SELECT";
|
|
634
|
-
readonly SUPER_USER: "SUPER_USER";
|
|
635
|
-
};
|
|
636
|
-
/**
|
|
637
|
-
* @public
|
|
638
|
-
*/
|
|
639
|
-
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
640
470
|
/**
|
|
641
471
|
* <p>The Lake Formation principal. Supported principals are IAM users
|
|
642
472
|
* or IAM roles.</p>
|
|
@@ -766,40 +596,6 @@ export interface CancelTransactionRequest {
|
|
|
766
596
|
*/
|
|
767
597
|
export interface CancelTransactionResponse {
|
|
768
598
|
}
|
|
769
|
-
/**
|
|
770
|
-
* <p>Contains details about an error related to a transaction commit that was in progress.</p>
|
|
771
|
-
* @public
|
|
772
|
-
*/
|
|
773
|
-
export declare class TransactionCommitInProgressException extends __BaseException {
|
|
774
|
-
readonly name: "TransactionCommitInProgressException";
|
|
775
|
-
readonly $fault: "client";
|
|
776
|
-
/**
|
|
777
|
-
* <p>A message describing the error.</p>
|
|
778
|
-
* @public
|
|
779
|
-
*/
|
|
780
|
-
Message?: string | undefined;
|
|
781
|
-
/**
|
|
782
|
-
* @internal
|
|
783
|
-
*/
|
|
784
|
-
constructor(opts: __ExceptionOptionType<TransactionCommitInProgressException, __BaseException>);
|
|
785
|
-
}
|
|
786
|
-
/**
|
|
787
|
-
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
788
|
-
* @public
|
|
789
|
-
*/
|
|
790
|
-
export declare class TransactionCommittedException extends __BaseException {
|
|
791
|
-
readonly name: "TransactionCommittedException";
|
|
792
|
-
readonly $fault: "client";
|
|
793
|
-
/**
|
|
794
|
-
* <p>A message describing the error.</p>
|
|
795
|
-
* @public
|
|
796
|
-
*/
|
|
797
|
-
Message?: string | undefined;
|
|
798
|
-
/**
|
|
799
|
-
* @internal
|
|
800
|
-
*/
|
|
801
|
-
constructor(opts: __ExceptionOptionType<TransactionCommittedException, __BaseException>);
|
|
802
|
-
}
|
|
803
599
|
/**
|
|
804
600
|
* @public
|
|
805
601
|
*/
|
|
@@ -810,20 +606,6 @@ export interface CommitTransactionRequest {
|
|
|
810
606
|
*/
|
|
811
607
|
TransactionId: string | undefined;
|
|
812
608
|
}
|
|
813
|
-
/**
|
|
814
|
-
* @public
|
|
815
|
-
* @enum
|
|
816
|
-
*/
|
|
817
|
-
export declare const TransactionStatus: {
|
|
818
|
-
readonly ABORTED: "ABORTED";
|
|
819
|
-
readonly ACTIVE: "ACTIVE";
|
|
820
|
-
readonly COMMITTED: "COMMITTED";
|
|
821
|
-
readonly COMMIT_IN_PROGRESS: "COMMIT_IN_PROGRESS";
|
|
822
|
-
};
|
|
823
|
-
/**
|
|
824
|
-
* @public
|
|
825
|
-
*/
|
|
826
|
-
export type TransactionStatus = (typeof TransactionStatus)[keyof typeof TransactionStatus];
|
|
827
609
|
/**
|
|
828
610
|
* @public
|
|
829
611
|
*/
|
|
@@ -834,23 +616,6 @@ export interface CommitTransactionResponse {
|
|
|
834
616
|
*/
|
|
835
617
|
TransactionStatus?: TransactionStatus | undefined;
|
|
836
618
|
}
|
|
837
|
-
/**
|
|
838
|
-
* <p>Contains details about an error related to a transaction that was cancelled.</p>
|
|
839
|
-
* @public
|
|
840
|
-
*/
|
|
841
|
-
export declare class TransactionCanceledException extends __BaseException {
|
|
842
|
-
readonly name: "TransactionCanceledException";
|
|
843
|
-
readonly $fault: "client";
|
|
844
|
-
/**
|
|
845
|
-
* <p>A message describing the error.</p>
|
|
846
|
-
* @public
|
|
847
|
-
*/
|
|
848
|
-
Message?: string | undefined;
|
|
849
|
-
/**
|
|
850
|
-
* @internal
|
|
851
|
-
*/
|
|
852
|
-
constructor(opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>);
|
|
853
|
-
}
|
|
854
619
|
/**
|
|
855
620
|
* <p>A PartiQL predicate.</p>
|
|
856
621
|
* @public
|
|
@@ -930,35 +695,6 @@ export interface CreateDataCellsFilterRequest {
|
|
|
930
695
|
*/
|
|
931
696
|
export interface CreateDataCellsFilterResponse {
|
|
932
697
|
}
|
|
933
|
-
/**
|
|
934
|
-
* <p>A resource numerical limit was exceeded.</p>
|
|
935
|
-
* @public
|
|
936
|
-
*/
|
|
937
|
-
export declare class ResourceNumberLimitExceededException extends __BaseException {
|
|
938
|
-
readonly name: "ResourceNumberLimitExceededException";
|
|
939
|
-
readonly $fault: "client";
|
|
940
|
-
/**
|
|
941
|
-
* <p>A message describing the problem.</p>
|
|
942
|
-
* @public
|
|
943
|
-
*/
|
|
944
|
-
Message?: string | undefined;
|
|
945
|
-
/**
|
|
946
|
-
* @internal
|
|
947
|
-
*/
|
|
948
|
-
constructor(opts: __ExceptionOptionType<ResourceNumberLimitExceededException, __BaseException>);
|
|
949
|
-
}
|
|
950
|
-
/**
|
|
951
|
-
* @public
|
|
952
|
-
* @enum
|
|
953
|
-
*/
|
|
954
|
-
export declare const EnableStatus: {
|
|
955
|
-
readonly DISABLED: "DISABLED";
|
|
956
|
-
readonly ENABLED: "ENABLED";
|
|
957
|
-
};
|
|
958
|
-
/**
|
|
959
|
-
* @public
|
|
960
|
-
*/
|
|
961
|
-
export type EnableStatus = (typeof EnableStatus)[keyof typeof EnableStatus];
|
|
962
698
|
/**
|
|
963
699
|
* <p>Configuration for enabling external data filtering for third-party applications to
|
|
964
700
|
* access data managed by Lake Formation .</p>
|
|
@@ -1267,23 +1003,6 @@ export interface DeleteObjectsOnCancelRequest {
|
|
|
1267
1003
|
*/
|
|
1268
1004
|
export interface DeleteObjectsOnCancelResponse {
|
|
1269
1005
|
}
|
|
1270
|
-
/**
|
|
1271
|
-
* <p>Contains details about an error related to a resource which is not ready for a transaction.</p>
|
|
1272
|
-
* @public
|
|
1273
|
-
*/
|
|
1274
|
-
export declare class ResourceNotReadyException extends __BaseException {
|
|
1275
|
-
readonly name: "ResourceNotReadyException";
|
|
1276
|
-
readonly $fault: "client";
|
|
1277
|
-
/**
|
|
1278
|
-
* <p>A message describing the error.</p>
|
|
1279
|
-
* @public
|
|
1280
|
-
*/
|
|
1281
|
-
Message?: string | undefined;
|
|
1282
|
-
/**
|
|
1283
|
-
* @internal
|
|
1284
|
-
*/
|
|
1285
|
-
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
1286
|
-
}
|
|
1287
1006
|
/**
|
|
1288
1007
|
* @public
|
|
1289
1008
|
*/
|
|
@@ -1801,21 +1520,6 @@ export interface GetQueryStateRequest {
|
|
|
1801
1520
|
*/
|
|
1802
1521
|
QueryId: string | undefined;
|
|
1803
1522
|
}
|
|
1804
|
-
/**
|
|
1805
|
-
* @public
|
|
1806
|
-
* @enum
|
|
1807
|
-
*/
|
|
1808
|
-
export declare const QueryStateString: {
|
|
1809
|
-
readonly ERROR: "ERROR";
|
|
1810
|
-
readonly EXPIRED: "EXPIRED";
|
|
1811
|
-
readonly FINISHED: "FINISHED";
|
|
1812
|
-
readonly PENDING: "PENDING";
|
|
1813
|
-
readonly WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE";
|
|
1814
|
-
};
|
|
1815
|
-
/**
|
|
1816
|
-
* @public
|
|
1817
|
-
*/
|
|
1818
|
-
export type QueryStateString = (typeof QueryStateString)[keyof typeof QueryStateString];
|
|
1819
1523
|
/**
|
|
1820
1524
|
* <p>A structure for the output.</p>
|
|
1821
1525
|
* @public
|
|
@@ -1846,23 +1550,6 @@ export interface GetQueryStateResponse {
|
|
|
1846
1550
|
*/
|
|
1847
1551
|
State: QueryStateString | undefined;
|
|
1848
1552
|
}
|
|
1849
|
-
/**
|
|
1850
|
-
* <p>Contains details about an error where the query request expired.</p>
|
|
1851
|
-
* @public
|
|
1852
|
-
*/
|
|
1853
|
-
export declare class ExpiredException extends __BaseException {
|
|
1854
|
-
readonly name: "ExpiredException";
|
|
1855
|
-
readonly $fault: "client";
|
|
1856
|
-
/**
|
|
1857
|
-
* <p>A message describing the error.</p>
|
|
1858
|
-
* @public
|
|
1859
|
-
*/
|
|
1860
|
-
Message?: string | undefined;
|
|
1861
|
-
/**
|
|
1862
|
-
* @internal
|
|
1863
|
-
*/
|
|
1864
|
-
constructor(opts: __ExceptionOptionType<ExpiredException, __BaseException>);
|
|
1865
|
-
}
|
|
1866
1553
|
/**
|
|
1867
1554
|
* @public
|
|
1868
1555
|
*/
|
|
@@ -1940,43 +1627,6 @@ export interface GetQueryStatisticsResponse {
|
|
|
1940
1627
|
*/
|
|
1941
1628
|
QuerySubmissionTime?: Date | undefined;
|
|
1942
1629
|
}
|
|
1943
|
-
/**
|
|
1944
|
-
* <p>Contains details about an error related to statistics not being ready.</p>
|
|
1945
|
-
* @public
|
|
1946
|
-
*/
|
|
1947
|
-
export declare class StatisticsNotReadyYetException extends __BaseException {
|
|
1948
|
-
readonly name: "StatisticsNotReadyYetException";
|
|
1949
|
-
readonly $fault: "client";
|
|
1950
|
-
/**
|
|
1951
|
-
* <p>A message describing the error.</p>
|
|
1952
|
-
* @public
|
|
1953
|
-
*/
|
|
1954
|
-
Message?: string | undefined;
|
|
1955
|
-
/**
|
|
1956
|
-
* @internal
|
|
1957
|
-
*/
|
|
1958
|
-
constructor(opts: __ExceptionOptionType<StatisticsNotReadyYetException, __BaseException>);
|
|
1959
|
-
}
|
|
1960
|
-
/**
|
|
1961
|
-
* <p>Contains details about an error where the query request was throttled.</p>
|
|
1962
|
-
* @public
|
|
1963
|
-
*/
|
|
1964
|
-
export declare class ThrottledException extends __BaseException {
|
|
1965
|
-
readonly name: "ThrottledException";
|
|
1966
|
-
readonly $fault: "client";
|
|
1967
|
-
$retryable: {
|
|
1968
|
-
throttling: boolean;
|
|
1969
|
-
};
|
|
1970
|
-
/**
|
|
1971
|
-
* <p>A message describing the error.</p>
|
|
1972
|
-
* @public
|
|
1973
|
-
*/
|
|
1974
|
-
Message?: string | undefined;
|
|
1975
|
-
/**
|
|
1976
|
-
* @internal
|
|
1977
|
-
*/
|
|
1978
|
-
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
1979
|
-
}
|
|
1980
1630
|
/**
|
|
1981
1631
|
* @public
|
|
1982
1632
|
*/
|
|
@@ -2033,23 +1683,6 @@ export interface GetResourceLFTagsResponse {
|
|
|
2033
1683
|
*/
|
|
2034
1684
|
LFTagsOnColumns?: ColumnLFTag[] | undefined;
|
|
2035
1685
|
}
|
|
2036
|
-
/**
|
|
2037
|
-
* <p>An encryption operation failed.</p>
|
|
2038
|
-
* @public
|
|
2039
|
-
*/
|
|
2040
|
-
export declare class GlueEncryptionException extends __BaseException {
|
|
2041
|
-
readonly name: "GlueEncryptionException";
|
|
2042
|
-
readonly $fault: "client";
|
|
2043
|
-
/**
|
|
2044
|
-
* <p>A message describing the problem.</p>
|
|
2045
|
-
* @public
|
|
2046
|
-
*/
|
|
2047
|
-
Message?: string | undefined;
|
|
2048
|
-
/**
|
|
2049
|
-
* @internal
|
|
2050
|
-
*/
|
|
2051
|
-
constructor(opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>);
|
|
2052
|
-
}
|
|
2053
1686
|
/**
|
|
2054
1687
|
* @public
|
|
2055
1688
|
*/
|
|
@@ -2169,20 +1802,6 @@ export interface PartitionValueList {
|
|
|
2169
1802
|
*/
|
|
2170
1803
|
Values: string[] | undefined;
|
|
2171
1804
|
}
|
|
2172
|
-
/**
|
|
2173
|
-
* @public
|
|
2174
|
-
* @enum
|
|
2175
|
-
*/
|
|
2176
|
-
export declare const PermissionType: {
|
|
2177
|
-
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
2178
|
-
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
2179
|
-
readonly NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION";
|
|
2180
|
-
readonly NESTED_PERMISSION: "NESTED_PERMISSION";
|
|
2181
|
-
};
|
|
2182
|
-
/**
|
|
2183
|
-
* @public
|
|
2184
|
-
*/
|
|
2185
|
-
export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType];
|
|
2186
1805
|
/**
|
|
2187
1806
|
* @public
|
|
2188
1807
|
*/
|
|
@@ -2243,23 +1862,6 @@ export interface GetTemporaryGluePartitionCredentialsResponse {
|
|
|
2243
1862
|
*/
|
|
2244
1863
|
Expiration?: Date | undefined;
|
|
2245
1864
|
}
|
|
2246
|
-
/**
|
|
2247
|
-
* <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>
|
|
2248
|
-
* @public
|
|
2249
|
-
*/
|
|
2250
|
-
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
2251
|
-
readonly name: "PermissionTypeMismatchException";
|
|
2252
|
-
readonly $fault: "client";
|
|
2253
|
-
/**
|
|
2254
|
-
* <p>A message describing the problem.</p>
|
|
2255
|
-
* @public
|
|
2256
|
-
*/
|
|
2257
|
-
Message?: string | undefined;
|
|
2258
|
-
/**
|
|
2259
|
-
* @internal
|
|
2260
|
-
*/
|
|
2261
|
-
constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
|
|
2262
|
-
}
|
|
2263
1865
|
/**
|
|
2264
1866
|
* <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>
|
|
2265
1867
|
* @public
|
|
@@ -2454,23 +2056,6 @@ export interface GetWorkUnitsResponse {
|
|
|
2454
2056
|
*/
|
|
2455
2057
|
WorkUnitRanges: WorkUnitRange[] | undefined;
|
|
2456
2058
|
}
|
|
2457
|
-
/**
|
|
2458
|
-
* <p>Contains details about an error related to work units not being ready.</p>
|
|
2459
|
-
* @public
|
|
2460
|
-
*/
|
|
2461
|
-
export declare class WorkUnitsNotReadyYetException extends __BaseException {
|
|
2462
|
-
readonly name: "WorkUnitsNotReadyYetException";
|
|
2463
|
-
readonly $fault: "client";
|
|
2464
|
-
/**
|
|
2465
|
-
* <p>A message describing the error.</p>
|
|
2466
|
-
* @public
|
|
2467
|
-
*/
|
|
2468
|
-
Message?: string | undefined;
|
|
2469
|
-
/**
|
|
2470
|
-
* @internal
|
|
2471
|
-
*/
|
|
2472
|
-
constructor(opts: __ExceptionOptionType<WorkUnitsNotReadyYetException, __BaseException>);
|
|
2473
|
-
}
|
|
2474
2059
|
/**
|
|
2475
2060
|
* @public
|
|
2476
2061
|
*/
|
|
@@ -2681,18 +2266,6 @@ export interface ListLFTagExpressionsResponse {
|
|
|
2681
2266
|
*/
|
|
2682
2267
|
NextToken?: string | undefined;
|
|
2683
2268
|
}
|
|
2684
|
-
/**
|
|
2685
|
-
* @public
|
|
2686
|
-
* @enum
|
|
2687
|
-
*/
|
|
2688
|
-
export declare const ResourceShareType: {
|
|
2689
|
-
readonly ALL: "ALL";
|
|
2690
|
-
readonly FOREIGN: "FOREIGN";
|
|
2691
|
-
};
|
|
2692
|
-
/**
|
|
2693
|
-
* @public
|
|
2694
|
-
*/
|
|
2695
|
-
export type ResourceShareType = (typeof ResourceShareType)[keyof typeof ResourceShareType];
|
|
2696
2269
|
/**
|
|
2697
2270
|
* @public
|
|
2698
2271
|
*/
|
|
@@ -2733,25 +2306,6 @@ export interface ListLFTagsResponse {
|
|
|
2733
2306
|
*/
|
|
2734
2307
|
NextToken?: string | undefined;
|
|
2735
2308
|
}
|
|
2736
|
-
/**
|
|
2737
|
-
* @public
|
|
2738
|
-
* @enum
|
|
2739
|
-
*/
|
|
2740
|
-
export declare const DataLakeResourceType: {
|
|
2741
|
-
readonly CATALOG: "CATALOG";
|
|
2742
|
-
readonly DATABASE: "DATABASE";
|
|
2743
|
-
readonly DATA_LOCATION: "DATA_LOCATION";
|
|
2744
|
-
readonly LF_NAMED_TAG_EXPRESSION: "LF_NAMED_TAG_EXPRESSION";
|
|
2745
|
-
readonly LF_TAG: "LF_TAG";
|
|
2746
|
-
readonly LF_TAG_POLICY: "LF_TAG_POLICY";
|
|
2747
|
-
readonly LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE";
|
|
2748
|
-
readonly LF_TAG_POLICY_TABLE: "LF_TAG_POLICY_TABLE";
|
|
2749
|
-
readonly TABLE: "TABLE";
|
|
2750
|
-
};
|
|
2751
|
-
/**
|
|
2752
|
-
* @public
|
|
2753
|
-
*/
|
|
2754
|
-
export type DataLakeResourceType = (typeof DataLakeResourceType)[keyof typeof DataLakeResourceType];
|
|
2755
2309
|
/**
|
|
2756
2310
|
* @public
|
|
2757
2311
|
*/
|
|
@@ -2808,40 +2362,6 @@ export interface ListPermissionsResponse {
|
|
|
2808
2362
|
*/
|
|
2809
2363
|
NextToken?: string | undefined;
|
|
2810
2364
|
}
|
|
2811
|
-
/**
|
|
2812
|
-
* @public
|
|
2813
|
-
* @enum
|
|
2814
|
-
*/
|
|
2815
|
-
export declare const ComparisonOperator: {
|
|
2816
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
2817
|
-
readonly BETWEEN: "BETWEEN";
|
|
2818
|
-
readonly CONTAINS: "CONTAINS";
|
|
2819
|
-
readonly EQ: "EQ";
|
|
2820
|
-
readonly GE: "GE";
|
|
2821
|
-
readonly GT: "GT";
|
|
2822
|
-
readonly IN: "IN";
|
|
2823
|
-
readonly LE: "LE";
|
|
2824
|
-
readonly LT: "LT";
|
|
2825
|
-
readonly NE: "NE";
|
|
2826
|
-
readonly NOT_CONTAINS: "NOT_CONTAINS";
|
|
2827
|
-
};
|
|
2828
|
-
/**
|
|
2829
|
-
* @public
|
|
2830
|
-
*/
|
|
2831
|
-
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
2832
|
-
/**
|
|
2833
|
-
* @public
|
|
2834
|
-
* @enum
|
|
2835
|
-
*/
|
|
2836
|
-
export declare const FieldNameString: {
|
|
2837
|
-
readonly LAST_MODIFIED: "LAST_MODIFIED";
|
|
2838
|
-
readonly RESOURCE_ARN: "RESOURCE_ARN";
|
|
2839
|
-
readonly ROLE_ARN: "ROLE_ARN";
|
|
2840
|
-
};
|
|
2841
|
-
/**
|
|
2842
|
-
* @public
|
|
2843
|
-
*/
|
|
2844
|
-
export type FieldNameString = (typeof FieldNameString)[keyof typeof FieldNameString];
|
|
2845
2365
|
/**
|
|
2846
2366
|
* <p>This structure describes the filtering of columns in a table based on a filter condition.</p>
|
|
2847
2367
|
* @public
|
|
@@ -2898,19 +2418,6 @@ export interface ListResourcesResponse {
|
|
|
2898
2418
|
*/
|
|
2899
2419
|
NextToken?: string | undefined;
|
|
2900
2420
|
}
|
|
2901
|
-
/**
|
|
2902
|
-
* @public
|
|
2903
|
-
* @enum
|
|
2904
|
-
*/
|
|
2905
|
-
export declare const OptimizerType: {
|
|
2906
|
-
readonly COMPACTION: "COMPACTION";
|
|
2907
|
-
readonly GARBAGE_COLLECTION: "GARBAGE_COLLECTION";
|
|
2908
|
-
readonly GENERIC: "ALL";
|
|
2909
|
-
};
|
|
2910
|
-
/**
|
|
2911
|
-
* @public
|
|
2912
|
-
*/
|
|
2913
|
-
export type OptimizerType = (typeof OptimizerType)[keyof typeof OptimizerType];
|
|
2914
2421
|
/**
|
|
2915
2422
|
* @public
|
|
2916
2423
|
*/
|
|
@@ -2994,21 +2501,6 @@ export interface ListTableStorageOptimizersResponse {
|
|
|
2994
2501
|
*/
|
|
2995
2502
|
NextToken?: string | undefined;
|
|
2996
2503
|
}
|
|
2997
|
-
/**
|
|
2998
|
-
* @public
|
|
2999
|
-
* @enum
|
|
3000
|
-
*/
|
|
3001
|
-
export declare const TransactionStatusFilter: {
|
|
3002
|
-
readonly ABORTED: "ABORTED";
|
|
3003
|
-
readonly ACTIVE: "ACTIVE";
|
|
3004
|
-
readonly ALL: "ALL";
|
|
3005
|
-
readonly COMMITTED: "COMMITTED";
|
|
3006
|
-
readonly COMPLETED: "COMPLETED";
|
|
3007
|
-
};
|
|
3008
|
-
/**
|
|
3009
|
-
* @public
|
|
3010
|
-
*/
|
|
3011
|
-
export type TransactionStatusFilter = (typeof TransactionStatusFilter)[keyof typeof TransactionStatusFilter];
|
|
3012
2504
|
/**
|
|
3013
2505
|
* @public
|
|
3014
2506
|
*/
|
|
@@ -3362,18 +2854,6 @@ export interface StartQueryPlanningResponse {
|
|
|
3362
2854
|
*/
|
|
3363
2855
|
QueryId: string | undefined;
|
|
3364
2856
|
}
|
|
3365
|
-
/**
|
|
3366
|
-
* @public
|
|
3367
|
-
* @enum
|
|
3368
|
-
*/
|
|
3369
|
-
export declare const TransactionType: {
|
|
3370
|
-
readonly READ_AND_WRITE: "READ_AND_WRITE";
|
|
3371
|
-
readonly READ_ONLY: "READ_ONLY";
|
|
3372
|
-
};
|
|
3373
|
-
/**
|
|
3374
|
-
* @public
|
|
3375
|
-
*/
|
|
3376
|
-
export type TransactionType = (typeof TransactionType)[keyof typeof TransactionType];
|
|
3377
2857
|
/**
|
|
3378
2858
|
* @public
|
|
3379
2859
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { LakeFormationExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { LakeFormationServiceException } from "./models/LakeFormationServiceException";
|