@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.
@@ -0,0 +1,122 @@
1
+ export declare const ResourceType: {
2
+ readonly DATABASE: "DATABASE";
3
+ readonly TABLE: "TABLE";
4
+ };
5
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
6
+ export declare const ApplicationStatus: {
7
+ readonly DISABLED: "DISABLED";
8
+ readonly ENABLED: "ENABLED";
9
+ };
10
+ export type ApplicationStatus =
11
+ (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
12
+ export declare const Permission: {
13
+ readonly ALL: "ALL";
14
+ readonly ALTER: "ALTER";
15
+ readonly ASSOCIATE: "ASSOCIATE";
16
+ readonly CREATE_CATALOG: "CREATE_CATALOG";
17
+ readonly CREATE_DATABASE: "CREATE_DATABASE";
18
+ readonly CREATE_LF_TAG: "CREATE_LF_TAG";
19
+ readonly CREATE_LF_TAG_EXPRESSION: "CREATE_LF_TAG_EXPRESSION";
20
+ readonly CREATE_TABLE: "CREATE_TABLE";
21
+ readonly DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS";
22
+ readonly DELETE: "DELETE";
23
+ readonly DESCRIBE: "DESCRIBE";
24
+ readonly DROP: "DROP";
25
+ readonly GRANT_WITH_LF_TAG_EXPRESSION: "GRANT_WITH_LF_TAG_EXPRESSION";
26
+ readonly INSERT: "INSERT";
27
+ readonly SELECT: "SELECT";
28
+ readonly SUPER_USER: "SUPER_USER";
29
+ };
30
+ export type Permission = (typeof Permission)[keyof typeof Permission];
31
+ export declare const TransactionStatus: {
32
+ readonly ABORTED: "ABORTED";
33
+ readonly ACTIVE: "ACTIVE";
34
+ readonly COMMITTED: "COMMITTED";
35
+ readonly COMMIT_IN_PROGRESS: "COMMIT_IN_PROGRESS";
36
+ };
37
+ export type TransactionStatus =
38
+ (typeof TransactionStatus)[keyof typeof TransactionStatus];
39
+ export declare const EnableStatus: {
40
+ readonly DISABLED: "DISABLED";
41
+ readonly ENABLED: "ENABLED";
42
+ };
43
+ export type EnableStatus = (typeof EnableStatus)[keyof typeof EnableStatus];
44
+ export declare const QueryStateString: {
45
+ readonly ERROR: "ERROR";
46
+ readonly EXPIRED: "EXPIRED";
47
+ readonly FINISHED: "FINISHED";
48
+ readonly PENDING: "PENDING";
49
+ readonly WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE";
50
+ };
51
+ export type QueryStateString =
52
+ (typeof QueryStateString)[keyof typeof QueryStateString];
53
+ export declare const PermissionType: {
54
+ readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
55
+ readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
56
+ readonly NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION";
57
+ readonly NESTED_PERMISSION: "NESTED_PERMISSION";
58
+ };
59
+ export type PermissionType =
60
+ (typeof PermissionType)[keyof typeof PermissionType];
61
+ export declare const ResourceShareType: {
62
+ readonly ALL: "ALL";
63
+ readonly FOREIGN: "FOREIGN";
64
+ };
65
+ export type ResourceShareType =
66
+ (typeof ResourceShareType)[keyof typeof ResourceShareType];
67
+ export declare const DataLakeResourceType: {
68
+ readonly CATALOG: "CATALOG";
69
+ readonly DATABASE: "DATABASE";
70
+ readonly DATA_LOCATION: "DATA_LOCATION";
71
+ readonly LF_NAMED_TAG_EXPRESSION: "LF_NAMED_TAG_EXPRESSION";
72
+ readonly LF_TAG: "LF_TAG";
73
+ readonly LF_TAG_POLICY: "LF_TAG_POLICY";
74
+ readonly LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE";
75
+ readonly LF_TAG_POLICY_TABLE: "LF_TAG_POLICY_TABLE";
76
+ readonly TABLE: "TABLE";
77
+ };
78
+ export type DataLakeResourceType =
79
+ (typeof DataLakeResourceType)[keyof typeof DataLakeResourceType];
80
+ export declare const ComparisonOperator: {
81
+ readonly BEGINS_WITH: "BEGINS_WITH";
82
+ readonly BETWEEN: "BETWEEN";
83
+ readonly CONTAINS: "CONTAINS";
84
+ readonly EQ: "EQ";
85
+ readonly GE: "GE";
86
+ readonly GT: "GT";
87
+ readonly IN: "IN";
88
+ readonly LE: "LE";
89
+ readonly LT: "LT";
90
+ readonly NE: "NE";
91
+ readonly NOT_CONTAINS: "NOT_CONTAINS";
92
+ };
93
+ export type ComparisonOperator =
94
+ (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
95
+ export declare const FieldNameString: {
96
+ readonly LAST_MODIFIED: "LAST_MODIFIED";
97
+ readonly RESOURCE_ARN: "RESOURCE_ARN";
98
+ readonly ROLE_ARN: "ROLE_ARN";
99
+ };
100
+ export type FieldNameString =
101
+ (typeof FieldNameString)[keyof typeof FieldNameString];
102
+ export declare const OptimizerType: {
103
+ readonly COMPACTION: "COMPACTION";
104
+ readonly GARBAGE_COLLECTION: "GARBAGE_COLLECTION";
105
+ readonly GENERIC: "ALL";
106
+ };
107
+ export type OptimizerType = (typeof OptimizerType)[keyof typeof OptimizerType];
108
+ export declare const TransactionStatusFilter: {
109
+ readonly ABORTED: "ABORTED";
110
+ readonly ACTIVE: "ACTIVE";
111
+ readonly ALL: "ALL";
112
+ readonly COMMITTED: "COMMITTED";
113
+ readonly COMPLETED: "COMPLETED";
114
+ };
115
+ export type TransactionStatusFilter =
116
+ (typeof TransactionStatusFilter)[keyof typeof TransactionStatusFilter];
117
+ export declare const TransactionType: {
118
+ readonly READ_AND_WRITE: "READ_AND_WRITE";
119
+ readonly READ_ONLY: "READ_ONLY";
120
+ };
121
+ export type TransactionType =
122
+ (typeof TransactionType)[keyof typeof TransactionType];
@@ -0,0 +1,157 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class ConcurrentModificationException extends __BaseException {
12
+ readonly name: "ConcurrentModificationException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<
17
+ ConcurrentModificationException,
18
+ __BaseException
19
+ >
20
+ );
21
+ }
22
+ export declare class EntityNotFoundException extends __BaseException {
23
+ readonly name: "EntityNotFoundException";
24
+ readonly $fault: "client";
25
+ Message?: string | undefined;
26
+ constructor(
27
+ opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>
28
+ );
29
+ }
30
+ export declare class InternalServiceException extends __BaseException {
31
+ readonly name: "InternalServiceException";
32
+ readonly $fault: "server";
33
+ Message?: string | undefined;
34
+ constructor(
35
+ opts: __ExceptionOptionType<InternalServiceException, __BaseException>
36
+ );
37
+ }
38
+ export declare class InvalidInputException extends __BaseException {
39
+ readonly name: "InvalidInputException";
40
+ readonly $fault: "client";
41
+ Message?: string | undefined;
42
+ constructor(
43
+ opts: __ExceptionOptionType<InvalidInputException, __BaseException>
44
+ );
45
+ }
46
+ export declare class OperationTimeoutException extends __BaseException {
47
+ readonly name: "OperationTimeoutException";
48
+ readonly $fault: "client";
49
+ Message?: string | undefined;
50
+ constructor(
51
+ opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>
52
+ );
53
+ }
54
+ export declare class AlreadyExistsException extends __BaseException {
55
+ readonly name: "AlreadyExistsException";
56
+ readonly $fault: "client";
57
+ Message?: string | undefined;
58
+ constructor(
59
+ opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
60
+ );
61
+ }
62
+ export declare class TransactionCommitInProgressException extends __BaseException {
63
+ readonly name: "TransactionCommitInProgressException";
64
+ readonly $fault: "client";
65
+ Message?: string | undefined;
66
+ constructor(
67
+ opts: __ExceptionOptionType<
68
+ TransactionCommitInProgressException,
69
+ __BaseException
70
+ >
71
+ );
72
+ }
73
+ export declare class TransactionCommittedException extends __BaseException {
74
+ readonly name: "TransactionCommittedException";
75
+ readonly $fault: "client";
76
+ Message?: string | undefined;
77
+ constructor(
78
+ opts: __ExceptionOptionType<TransactionCommittedException, __BaseException>
79
+ );
80
+ }
81
+ export declare class TransactionCanceledException extends __BaseException {
82
+ readonly name: "TransactionCanceledException";
83
+ readonly $fault: "client";
84
+ Message?: string | undefined;
85
+ constructor(
86
+ opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>
87
+ );
88
+ }
89
+ export declare class ResourceNumberLimitExceededException extends __BaseException {
90
+ readonly name: "ResourceNumberLimitExceededException";
91
+ readonly $fault: "client";
92
+ Message?: string | undefined;
93
+ constructor(
94
+ opts: __ExceptionOptionType<
95
+ ResourceNumberLimitExceededException,
96
+ __BaseException
97
+ >
98
+ );
99
+ }
100
+ export declare class ResourceNotReadyException extends __BaseException {
101
+ readonly name: "ResourceNotReadyException";
102
+ readonly $fault: "client";
103
+ Message?: string | undefined;
104
+ constructor(
105
+ opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
106
+ );
107
+ }
108
+ export declare class ExpiredException extends __BaseException {
109
+ readonly name: "ExpiredException";
110
+ readonly $fault: "client";
111
+ Message?: string | undefined;
112
+ constructor(opts: __ExceptionOptionType<ExpiredException, __BaseException>);
113
+ }
114
+ export declare class StatisticsNotReadyYetException extends __BaseException {
115
+ readonly name: "StatisticsNotReadyYetException";
116
+ readonly $fault: "client";
117
+ Message?: string | undefined;
118
+ constructor(
119
+ opts: __ExceptionOptionType<StatisticsNotReadyYetException, __BaseException>
120
+ );
121
+ }
122
+ export declare class ThrottledException extends __BaseException {
123
+ readonly name: "ThrottledException";
124
+ readonly $fault: "client";
125
+ $retryable: {
126
+ throttling: boolean;
127
+ };
128
+ Message?: string | undefined;
129
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
130
+ }
131
+ export declare class GlueEncryptionException extends __BaseException {
132
+ readonly name: "GlueEncryptionException";
133
+ readonly $fault: "client";
134
+ Message?: string | undefined;
135
+ constructor(
136
+ opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>
137
+ );
138
+ }
139
+ export declare class PermissionTypeMismatchException extends __BaseException {
140
+ readonly name: "PermissionTypeMismatchException";
141
+ readonly $fault: "client";
142
+ Message?: string | undefined;
143
+ constructor(
144
+ opts: __ExceptionOptionType<
145
+ PermissionTypeMismatchException,
146
+ __BaseException
147
+ >
148
+ );
149
+ }
150
+ export declare class WorkUnitsNotReadyYetException extends __BaseException {
151
+ readonly name: "WorkUnitsNotReadyYetException";
152
+ readonly $fault: "client";
153
+ Message?: string | undefined;
154
+ constructor(
155
+ opts: __ExceptionOptionType<WorkUnitsNotReadyYetException, __BaseException>
156
+ );
157
+ }