@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
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Access to a resource was denied.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* <p>A message describing the problem.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
25
|
+
readonly name: "ConcurrentModificationException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
/**
|
|
28
|
+
* <p>A message describing the problem.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Message?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* <p>A specified entity does not exist.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export declare class EntityNotFoundException extends __BaseException {
|
|
42
|
+
readonly name: "EntityNotFoundException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
/**
|
|
45
|
+
* <p>A message describing the problem.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
Message?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
constructor(opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>An internal service error occurred.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export declare class InternalServiceException extends __BaseException {
|
|
59
|
+
readonly name: "InternalServiceException";
|
|
60
|
+
readonly $fault: "server";
|
|
61
|
+
/**
|
|
62
|
+
* <p>A message describing the problem.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
Message?: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* <p>The input provided was not valid.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class InvalidInputException extends __BaseException {
|
|
76
|
+
readonly name: "InvalidInputException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
/**
|
|
79
|
+
* <p>A message describing the problem.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
Message?: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p>The operation timed out.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class OperationTimeoutException extends __BaseException {
|
|
93
|
+
readonly name: "OperationTimeoutException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
/**
|
|
96
|
+
* <p>A message describing the problem.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
Message?: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
103
|
+
constructor(opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>);
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* <p>A resource to be created or added already exists.</p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
110
|
+
readonly name: "AlreadyExistsException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
/**
|
|
113
|
+
* <p>A message describing the problem.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
Message?: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
120
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* <p>Contains details about an error related to a transaction commit that was in progress.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
export declare class TransactionCommitInProgressException extends __BaseException {
|
|
127
|
+
readonly name: "TransactionCommitInProgressException";
|
|
128
|
+
readonly $fault: "client";
|
|
129
|
+
/**
|
|
130
|
+
* <p>A message describing the error.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
Message?: string | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* @internal
|
|
136
|
+
*/
|
|
137
|
+
constructor(opts: __ExceptionOptionType<TransactionCommitInProgressException, __BaseException>);
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export declare class TransactionCommittedException extends __BaseException {
|
|
144
|
+
readonly name: "TransactionCommittedException";
|
|
145
|
+
readonly $fault: "client";
|
|
146
|
+
/**
|
|
147
|
+
* <p>A message describing the error.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
Message?: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<TransactionCommittedException, __BaseException>);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* <p>Contains details about an error related to a transaction that was cancelled.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export declare class TransactionCanceledException extends __BaseException {
|
|
161
|
+
readonly name: "TransactionCanceledException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
/**
|
|
164
|
+
* <p>A message describing the error.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
Message?: string | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p>A resource numerical limit was exceeded.</p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
export declare class ResourceNumberLimitExceededException extends __BaseException {
|
|
178
|
+
readonly name: "ResourceNumberLimitExceededException";
|
|
179
|
+
readonly $fault: "client";
|
|
180
|
+
/**
|
|
181
|
+
* <p>A message describing the problem.</p>
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
Message?: string | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* @internal
|
|
187
|
+
*/
|
|
188
|
+
constructor(opts: __ExceptionOptionType<ResourceNumberLimitExceededException, __BaseException>);
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* <p>Contains details about an error related to a resource which is not ready for a transaction.</p>
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
195
|
+
readonly name: "ResourceNotReadyException";
|
|
196
|
+
readonly $fault: "client";
|
|
197
|
+
/**
|
|
198
|
+
* <p>A message describing the error.</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
Message?: string | undefined;
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* <p>Contains details about an error where the query request expired.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
export declare class ExpiredException extends __BaseException {
|
|
212
|
+
readonly name: "ExpiredException";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
/**
|
|
215
|
+
* <p>A message describing the error.</p>
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
Message?: string | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* @internal
|
|
221
|
+
*/
|
|
222
|
+
constructor(opts: __ExceptionOptionType<ExpiredException, __BaseException>);
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* <p>Contains details about an error related to statistics not being ready.</p>
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
export declare class StatisticsNotReadyYetException extends __BaseException {
|
|
229
|
+
readonly name: "StatisticsNotReadyYetException";
|
|
230
|
+
readonly $fault: "client";
|
|
231
|
+
/**
|
|
232
|
+
* <p>A message describing the error.</p>
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
Message?: string | undefined;
|
|
236
|
+
/**
|
|
237
|
+
* @internal
|
|
238
|
+
*/
|
|
239
|
+
constructor(opts: __ExceptionOptionType<StatisticsNotReadyYetException, __BaseException>);
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* <p>Contains details about an error where the query request was throttled.</p>
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export declare class ThrottledException extends __BaseException {
|
|
246
|
+
readonly name: "ThrottledException";
|
|
247
|
+
readonly $fault: "client";
|
|
248
|
+
$retryable: {
|
|
249
|
+
throttling: boolean;
|
|
250
|
+
};
|
|
251
|
+
/**
|
|
252
|
+
* <p>A message describing the error.</p>
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
255
|
+
Message?: string | undefined;
|
|
256
|
+
/**
|
|
257
|
+
* @internal
|
|
258
|
+
*/
|
|
259
|
+
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* <p>An encryption operation failed.</p>
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
265
|
+
export declare class GlueEncryptionException extends __BaseException {
|
|
266
|
+
readonly name: "GlueEncryptionException";
|
|
267
|
+
readonly $fault: "client";
|
|
268
|
+
/**
|
|
269
|
+
* <p>A message describing the problem.</p>
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
Message?: string | undefined;
|
|
273
|
+
/**
|
|
274
|
+
* @internal
|
|
275
|
+
*/
|
|
276
|
+
constructor(opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>);
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* <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>
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
283
|
+
readonly name: "PermissionTypeMismatchException";
|
|
284
|
+
readonly $fault: "client";
|
|
285
|
+
/**
|
|
286
|
+
* <p>A message describing the problem.</p>
|
|
287
|
+
* @public
|
|
288
|
+
*/
|
|
289
|
+
Message?: string | undefined;
|
|
290
|
+
/**
|
|
291
|
+
* @internal
|
|
292
|
+
*/
|
|
293
|
+
constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* <p>Contains details about an error related to work units not being ready.</p>
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
299
|
+
export declare class WorkUnitsNotReadyYetException extends __BaseException {
|
|
300
|
+
readonly name: "WorkUnitsNotReadyYetException";
|
|
301
|
+
readonly $fault: "client";
|
|
302
|
+
/**
|
|
303
|
+
* <p>A message describing the error.</p>
|
|
304
|
+
* @public
|
|
305
|
+
*/
|
|
306
|
+
Message?: string | undefined;
|
|
307
|
+
/**
|
|
308
|
+
* @internal
|
|
309
|
+
*/
|
|
310
|
+
constructor(opts: __ExceptionOptionType<WorkUnitsNotReadyYetException, __BaseException>);
|
|
311
|
+
}
|