@aws-sdk/client-lakeformation 3.301.0 → 3.305.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/models/models_0.js +83 -95
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/models/models_0.js +83 -95
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +1 -1
- package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +1 -1
- package/dist-types/commands/CancelTransactionCommand.d.ts +1 -1
- package/dist-types/commands/CommitTransactionCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/CreateLFTagCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLFTagCommand.d.ts +1 -1
- package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterResourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeResourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransactionCommand.d.ts +1 -1
- package/dist-types/commands/ExtendTransactionCommand.d.ts +1 -1
- package/dist-types/commands/GetDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +1 -1
- package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +1 -1
- package/dist-types/commands/GetLFTagCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/GetTableObjectsCommand.d.ts +1 -1
- package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GrantPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +1 -1
- package/dist-types/commands/RegisterResourceCommand.d.ts +2 -1
- package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +1 -1
- package/dist-types/commands/RevokePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLFTagCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTableObjectsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +156 -84
- package/dist-types/ts3.4/models/models_0.d.ts +107 -83
- package/package.json +36 -36
|
@@ -17,11 +17,10 @@ class AccessDeniedException extends LakeFormationServiceException_1.LakeFormatio
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
})(ResourceType = exports.ResourceType || (exports.ResourceType = {}));
|
|
20
|
+
exports.ResourceType = {
|
|
21
|
+
DATABASE: "DATABASE",
|
|
22
|
+
TABLE: "TABLE",
|
|
23
|
+
};
|
|
25
24
|
class ConcurrentModificationException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
26
25
|
constructor(opts) {
|
|
27
26
|
super({
|
|
@@ -106,21 +105,20 @@ class AlreadyExistsException extends LakeFormationServiceException_1.LakeFormati
|
|
|
106
105
|
}
|
|
107
106
|
}
|
|
108
107
|
exports.AlreadyExistsException = AlreadyExistsException;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
})(Permission = exports.Permission || (exports.Permission = {}));
|
|
108
|
+
exports.Permission = {
|
|
109
|
+
ALL: "ALL",
|
|
110
|
+
ALTER: "ALTER",
|
|
111
|
+
ASSOCIATE: "ASSOCIATE",
|
|
112
|
+
CREATE_DATABASE: "CREATE_DATABASE",
|
|
113
|
+
CREATE_TABLE: "CREATE_TABLE",
|
|
114
|
+
CREATE_TAG: "CREATE_TAG",
|
|
115
|
+
DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS",
|
|
116
|
+
DELETE: "DELETE",
|
|
117
|
+
DESCRIBE: "DESCRIBE",
|
|
118
|
+
DROP: "DROP",
|
|
119
|
+
INSERT: "INSERT",
|
|
120
|
+
SELECT: "SELECT",
|
|
121
|
+
};
|
|
124
122
|
class TransactionCommitInProgressException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
125
123
|
constructor(opts) {
|
|
126
124
|
super({
|
|
@@ -149,13 +147,12 @@ class TransactionCommittedException extends LakeFormationServiceException_1.Lake
|
|
|
149
147
|
}
|
|
150
148
|
}
|
|
151
149
|
exports.TransactionCommittedException = TransactionCommittedException;
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
})(TransactionStatus = exports.TransactionStatus || (exports.TransactionStatus = {}));
|
|
150
|
+
exports.TransactionStatus = {
|
|
151
|
+
ABORTED: "ABORTED",
|
|
152
|
+
ACTIVE: "ACTIVE",
|
|
153
|
+
COMMITTED: "COMMITTED",
|
|
154
|
+
COMMIT_IN_PROGRESS: "COMMIT_IN_PROGRESS",
|
|
155
|
+
};
|
|
159
156
|
class TransactionCanceledException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
160
157
|
constructor(opts) {
|
|
161
158
|
super({
|
|
@@ -198,14 +195,13 @@ class ResourceNotReadyException extends LakeFormationServiceException_1.LakeForm
|
|
|
198
195
|
}
|
|
199
196
|
}
|
|
200
197
|
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
})(QueryStateString = exports.QueryStateString || (exports.QueryStateString = {}));
|
|
198
|
+
exports.QueryStateString = {
|
|
199
|
+
ERROR: "ERROR",
|
|
200
|
+
EXPIRED: "EXPIRED",
|
|
201
|
+
FINISHED: "FINISHED",
|
|
202
|
+
PENDING: "PENDING",
|
|
203
|
+
WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE",
|
|
204
|
+
};
|
|
209
205
|
class ExpiredException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
210
206
|
constructor(opts) {
|
|
211
207
|
super({
|
|
@@ -265,11 +261,10 @@ class GlueEncryptionException extends LakeFormationServiceException_1.LakeFormat
|
|
|
265
261
|
}
|
|
266
262
|
}
|
|
267
263
|
exports.GlueEncryptionException = GlueEncryptionException;
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
})(PermissionType = exports.PermissionType || (exports.PermissionType = {}));
|
|
264
|
+
exports.PermissionType = {
|
|
265
|
+
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
266
|
+
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
267
|
+
};
|
|
273
268
|
class PermissionTypeMismatchException extends LakeFormationServiceException_1.LakeFormationServiceException {
|
|
274
269
|
constructor(opts) {
|
|
275
270
|
super({
|
|
@@ -298,61 +293,54 @@ class WorkUnitsNotReadyYetException extends LakeFormationServiceException_1.Lake
|
|
|
298
293
|
}
|
|
299
294
|
}
|
|
300
295
|
exports.WorkUnitsNotReadyYetException = WorkUnitsNotReadyYetException;
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
TransactionStatusFilter["COMPLETED"] = "COMPLETED";
|
|
350
|
-
})(TransactionStatusFilter = exports.TransactionStatusFilter || (exports.TransactionStatusFilter = {}));
|
|
351
|
-
var TransactionType;
|
|
352
|
-
(function (TransactionType) {
|
|
353
|
-
TransactionType["READ_AND_WRITE"] = "READ_AND_WRITE";
|
|
354
|
-
TransactionType["READ_ONLY"] = "READ_ONLY";
|
|
355
|
-
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
296
|
+
exports.ResourceShareType = {
|
|
297
|
+
ALL: "ALL",
|
|
298
|
+
FOREIGN: "FOREIGN",
|
|
299
|
+
};
|
|
300
|
+
exports.DataLakeResourceType = {
|
|
301
|
+
CATALOG: "CATALOG",
|
|
302
|
+
DATABASE: "DATABASE",
|
|
303
|
+
DATA_LOCATION: "DATA_LOCATION",
|
|
304
|
+
LF_TAG: "LF_TAG",
|
|
305
|
+
LF_TAG_POLICY: "LF_TAG_POLICY",
|
|
306
|
+
LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE",
|
|
307
|
+
LF_TAG_POLICY_TABLE: "LF_TAG_POLICY_TABLE",
|
|
308
|
+
TABLE: "TABLE",
|
|
309
|
+
};
|
|
310
|
+
exports.ComparisonOperator = {
|
|
311
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
312
|
+
BETWEEN: "BETWEEN",
|
|
313
|
+
CONTAINS: "CONTAINS",
|
|
314
|
+
EQ: "EQ",
|
|
315
|
+
GE: "GE",
|
|
316
|
+
GT: "GT",
|
|
317
|
+
IN: "IN",
|
|
318
|
+
LE: "LE",
|
|
319
|
+
LT: "LT",
|
|
320
|
+
NE: "NE",
|
|
321
|
+
NOT_CONTAINS: "NOT_CONTAINS",
|
|
322
|
+
};
|
|
323
|
+
exports.FieldNameString = {
|
|
324
|
+
LAST_MODIFIED: "LAST_MODIFIED",
|
|
325
|
+
RESOURCE_ARN: "RESOURCE_ARN",
|
|
326
|
+
ROLE_ARN: "ROLE_ARN",
|
|
327
|
+
};
|
|
328
|
+
exports.OptimizerType = {
|
|
329
|
+
COMPACTION: "COMPACTION",
|
|
330
|
+
GARBAGE_COLLECTION: "GARBAGE_COLLECTION",
|
|
331
|
+
GENERIC: "ALL",
|
|
332
|
+
};
|
|
333
|
+
exports.TransactionStatusFilter = {
|
|
334
|
+
ABORTED: "ABORTED",
|
|
335
|
+
ACTIVE: "ACTIVE",
|
|
336
|
+
ALL: "ALL",
|
|
337
|
+
COMMITTED: "COMMITTED",
|
|
338
|
+
COMPLETED: "COMPLETED",
|
|
339
|
+
};
|
|
340
|
+
exports.TransactionType = {
|
|
341
|
+
READ_AND_WRITE: "READ_AND_WRITE",
|
|
342
|
+
READ_ONLY: "READ_ONLY",
|
|
343
|
+
};
|
|
356
344
|
const GetWorkUnitResultsRequestFilterSensitiveLog = (obj) => ({
|
|
357
345
|
...obj,
|
|
358
346
|
...(obj.WorkUnitToken && { WorkUnitToken: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -870,6 +870,7 @@ const serializeAws_restJson1RegisterResourceCommand = async (input, context) =>
|
|
|
870
870
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
871
871
|
...(input.RoleArn != null && { RoleArn: input.RoleArn }),
|
|
872
872
|
...(input.UseServiceLinkedRole != null && { UseServiceLinkedRole: input.UseServiceLinkedRole }),
|
|
873
|
+
...(input.WithFederation != null && { WithFederation: input.WithFederation }),
|
|
873
874
|
});
|
|
874
875
|
return new protocol_http_1.HttpRequest({
|
|
875
876
|
protocol,
|
|
@@ -1091,6 +1092,7 @@ const serializeAws_restJson1UpdateResourceCommand = async (input, context) => {
|
|
|
1091
1092
|
body = JSON.stringify({
|
|
1092
1093
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
1093
1094
|
...(input.RoleArn != null && { RoleArn: input.RoleArn }),
|
|
1095
|
+
...(input.WithFederation != null && { WithFederation: input.WithFederation }),
|
|
1094
1096
|
});
|
|
1095
1097
|
return new protocol_http_1.HttpRequest({
|
|
1096
1098
|
protocol,
|
|
@@ -4335,6 +4337,7 @@ const deserializeAws_restJson1ResourceInfo = (output, context) => {
|
|
|
4335
4337
|
: undefined,
|
|
4336
4338
|
ResourceArn: (0, smithy_client_1.expectString)(output.ResourceArn),
|
|
4337
4339
|
RoleArn: (0, smithy_client_1.expectString)(output.RoleArn),
|
|
4340
|
+
WithFederation: (0, smithy_client_1.expectBoolean)(output.WithFederation),
|
|
4338
4341
|
};
|
|
4339
4342
|
};
|
|
4340
4343
|
const deserializeAws_restJson1ResourceInfoList = (output, context) => {
|
|
@@ -13,11 +13,10 @@ export class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
this.Message = opts.Message;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
})(ResourceType || (ResourceType = {}));
|
|
16
|
+
export const ResourceType = {
|
|
17
|
+
DATABASE: "DATABASE",
|
|
18
|
+
TABLE: "TABLE",
|
|
19
|
+
};
|
|
21
20
|
export class ConcurrentModificationException extends __BaseException {
|
|
22
21
|
constructor(opts) {
|
|
23
22
|
super({
|
|
@@ -96,21 +95,20 @@ export class AlreadyExistsException extends __BaseException {
|
|
|
96
95
|
this.Message = opts.Message;
|
|
97
96
|
}
|
|
98
97
|
}
|
|
99
|
-
export
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
})(Permission || (Permission = {}));
|
|
98
|
+
export const Permission = {
|
|
99
|
+
ALL: "ALL",
|
|
100
|
+
ALTER: "ALTER",
|
|
101
|
+
ASSOCIATE: "ASSOCIATE",
|
|
102
|
+
CREATE_DATABASE: "CREATE_DATABASE",
|
|
103
|
+
CREATE_TABLE: "CREATE_TABLE",
|
|
104
|
+
CREATE_TAG: "CREATE_TAG",
|
|
105
|
+
DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS",
|
|
106
|
+
DELETE: "DELETE",
|
|
107
|
+
DESCRIBE: "DESCRIBE",
|
|
108
|
+
DROP: "DROP",
|
|
109
|
+
INSERT: "INSERT",
|
|
110
|
+
SELECT: "SELECT",
|
|
111
|
+
};
|
|
114
112
|
export class TransactionCommitInProgressException extends __BaseException {
|
|
115
113
|
constructor(opts) {
|
|
116
114
|
super({
|
|
@@ -137,13 +135,12 @@ export class TransactionCommittedException extends __BaseException {
|
|
|
137
135
|
this.Message = opts.Message;
|
|
138
136
|
}
|
|
139
137
|
}
|
|
140
|
-
export
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
})(TransactionStatus || (TransactionStatus = {}));
|
|
138
|
+
export const TransactionStatus = {
|
|
139
|
+
ABORTED: "ABORTED",
|
|
140
|
+
ACTIVE: "ACTIVE",
|
|
141
|
+
COMMITTED: "COMMITTED",
|
|
142
|
+
COMMIT_IN_PROGRESS: "COMMIT_IN_PROGRESS",
|
|
143
|
+
};
|
|
147
144
|
export class TransactionCanceledException extends __BaseException {
|
|
148
145
|
constructor(opts) {
|
|
149
146
|
super({
|
|
@@ -183,14 +180,13 @@ export class ResourceNotReadyException extends __BaseException {
|
|
|
183
180
|
this.Message = opts.Message;
|
|
184
181
|
}
|
|
185
182
|
}
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
})(QueryStateString || (QueryStateString = {}));
|
|
183
|
+
export const QueryStateString = {
|
|
184
|
+
ERROR: "ERROR",
|
|
185
|
+
EXPIRED: "EXPIRED",
|
|
186
|
+
FINISHED: "FINISHED",
|
|
187
|
+
PENDING: "PENDING",
|
|
188
|
+
WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE",
|
|
189
|
+
};
|
|
194
190
|
export class ExpiredException extends __BaseException {
|
|
195
191
|
constructor(opts) {
|
|
196
192
|
super({
|
|
@@ -246,11 +242,10 @@ export class GlueEncryptionException extends __BaseException {
|
|
|
246
242
|
this.Message = opts.Message;
|
|
247
243
|
}
|
|
248
244
|
}
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
})(PermissionType || (PermissionType = {}));
|
|
245
|
+
export const PermissionType = {
|
|
246
|
+
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
247
|
+
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
248
|
+
};
|
|
254
249
|
export class PermissionTypeMismatchException extends __BaseException {
|
|
255
250
|
constructor(opts) {
|
|
256
251
|
super({
|
|
@@ -277,61 +272,54 @@ export class WorkUnitsNotReadyYetException extends __BaseException {
|
|
|
277
272
|
this.Message = opts.Message;
|
|
278
273
|
}
|
|
279
274
|
}
|
|
280
|
-
export
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
TransactionStatusFilter["COMPLETED"] = "COMPLETED";
|
|
329
|
-
})(TransactionStatusFilter || (TransactionStatusFilter = {}));
|
|
330
|
-
export var TransactionType;
|
|
331
|
-
(function (TransactionType) {
|
|
332
|
-
TransactionType["READ_AND_WRITE"] = "READ_AND_WRITE";
|
|
333
|
-
TransactionType["READ_ONLY"] = "READ_ONLY";
|
|
334
|
-
})(TransactionType || (TransactionType = {}));
|
|
275
|
+
export const ResourceShareType = {
|
|
276
|
+
ALL: "ALL",
|
|
277
|
+
FOREIGN: "FOREIGN",
|
|
278
|
+
};
|
|
279
|
+
export const DataLakeResourceType = {
|
|
280
|
+
CATALOG: "CATALOG",
|
|
281
|
+
DATABASE: "DATABASE",
|
|
282
|
+
DATA_LOCATION: "DATA_LOCATION",
|
|
283
|
+
LF_TAG: "LF_TAG",
|
|
284
|
+
LF_TAG_POLICY: "LF_TAG_POLICY",
|
|
285
|
+
LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE",
|
|
286
|
+
LF_TAG_POLICY_TABLE: "LF_TAG_POLICY_TABLE",
|
|
287
|
+
TABLE: "TABLE",
|
|
288
|
+
};
|
|
289
|
+
export const ComparisonOperator = {
|
|
290
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
291
|
+
BETWEEN: "BETWEEN",
|
|
292
|
+
CONTAINS: "CONTAINS",
|
|
293
|
+
EQ: "EQ",
|
|
294
|
+
GE: "GE",
|
|
295
|
+
GT: "GT",
|
|
296
|
+
IN: "IN",
|
|
297
|
+
LE: "LE",
|
|
298
|
+
LT: "LT",
|
|
299
|
+
NE: "NE",
|
|
300
|
+
NOT_CONTAINS: "NOT_CONTAINS",
|
|
301
|
+
};
|
|
302
|
+
export const FieldNameString = {
|
|
303
|
+
LAST_MODIFIED: "LAST_MODIFIED",
|
|
304
|
+
RESOURCE_ARN: "RESOURCE_ARN",
|
|
305
|
+
ROLE_ARN: "ROLE_ARN",
|
|
306
|
+
};
|
|
307
|
+
export const OptimizerType = {
|
|
308
|
+
COMPACTION: "COMPACTION",
|
|
309
|
+
GARBAGE_COLLECTION: "GARBAGE_COLLECTION",
|
|
310
|
+
GENERIC: "ALL",
|
|
311
|
+
};
|
|
312
|
+
export const TransactionStatusFilter = {
|
|
313
|
+
ABORTED: "ABORTED",
|
|
314
|
+
ACTIVE: "ACTIVE",
|
|
315
|
+
ALL: "ALL",
|
|
316
|
+
COMMITTED: "COMMITTED",
|
|
317
|
+
COMPLETED: "COMPLETED",
|
|
318
|
+
};
|
|
319
|
+
export const TransactionType = {
|
|
320
|
+
READ_AND_WRITE: "READ_AND_WRITE",
|
|
321
|
+
READ_ONLY: "READ_ONLY",
|
|
322
|
+
};
|
|
335
323
|
export const GetWorkUnitResultsRequestFilterSensitiveLog = (obj) => ({
|
|
336
324
|
...obj,
|
|
337
325
|
...(obj.WorkUnitToken && { WorkUnitToken: SENSITIVE_STRING }),
|
|
@@ -831,6 +831,7 @@ export const serializeAws_restJson1RegisterResourceCommand = async (input, conte
|
|
|
831
831
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
832
832
|
...(input.RoleArn != null && { RoleArn: input.RoleArn }),
|
|
833
833
|
...(input.UseServiceLinkedRole != null && { UseServiceLinkedRole: input.UseServiceLinkedRole }),
|
|
834
|
+
...(input.WithFederation != null && { WithFederation: input.WithFederation }),
|
|
834
835
|
});
|
|
835
836
|
return new __HttpRequest({
|
|
836
837
|
protocol,
|
|
@@ -1043,6 +1044,7 @@ export const serializeAws_restJson1UpdateResourceCommand = async (input, context
|
|
|
1043
1044
|
body = JSON.stringify({
|
|
1044
1045
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
1045
1046
|
...(input.RoleArn != null && { RoleArn: input.RoleArn }),
|
|
1047
|
+
...(input.WithFederation != null && { WithFederation: input.WithFederation }),
|
|
1046
1048
|
});
|
|
1047
1049
|
return new __HttpRequest({
|
|
1048
1050
|
protocol,
|
|
@@ -4237,6 +4239,7 @@ const deserializeAws_restJson1ResourceInfo = (output, context) => {
|
|
|
4237
4239
|
: undefined,
|
|
4238
4240
|
ResourceArn: __expectString(output.ResourceArn),
|
|
4239
4241
|
RoleArn: __expectString(output.RoleArn),
|
|
4242
|
+
WithFederation: __expectBoolean(output.WithFederation),
|
|
4240
4243
|
};
|
|
4241
4244
|
};
|
|
4242
4245
|
const deserializeAws_restJson1ResourceInfoList = (output, context) => {
|
|
@@ -110,7 +110,7 @@ export interface AddLFTagsToResourceCommandOutput extends AddLFTagsToResourceRes
|
|
|
110
110
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
111
111
|
*
|
|
112
112
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
113
|
-
* <p>A specified entity does not exist
|
|
113
|
+
* <p>A specified entity does not exist.</p>
|
|
114
114
|
*
|
|
115
115
|
* @throws {@link InternalServiceException} (server fault)
|
|
116
116
|
* <p>An internal service error occurred.</p>
|
|
@@ -51,7 +51,7 @@ export interface AssumeDecoratedRoleWithSAMLCommandOutput extends AssumeDecorate
|
|
|
51
51
|
* <p>Access to a resource was denied.</p>
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
54
|
-
* <p>A specified entity does not exist
|
|
54
|
+
* <p>A specified entity does not exist.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link InternalServiceException} (server fault)
|
|
57
57
|
* <p>An internal service error occurred.</p>
|
|
@@ -43,7 +43,7 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons
|
|
|
43
43
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
44
44
|
*
|
|
45
45
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
46
|
-
* <p>A specified entity does not exist
|
|
46
|
+
* <p>A specified entity does not exist.</p>
|
|
47
47
|
*
|
|
48
48
|
* @throws {@link InternalServiceException} (server fault)
|
|
49
49
|
* <p>An internal service error occurred.</p>
|
|
@@ -43,7 +43,7 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
|
|
|
43
43
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
44
44
|
*
|
|
45
45
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
46
|
-
* <p>A specified entity does not exist
|
|
46
|
+
* <p>A specified entity does not exist.</p>
|
|
47
47
|
*
|
|
48
48
|
* @throws {@link InternalServiceException} (server fault)
|
|
49
49
|
* <p>An internal service error occurred.</p>
|
|
@@ -64,7 +64,7 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte
|
|
|
64
64
|
* <p>A resource to be created or added already exists.</p>
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
67
|
-
* <p>A specified entity does not exist
|
|
67
|
+
* <p>A specified entity does not exist.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link InternalServiceException} (server fault)
|
|
70
70
|
* <p>An internal service error occurred.</p>
|
|
@@ -47,7 +47,7 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat
|
|
|
47
47
|
* <p>Access to a resource was denied.</p>
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
50
|
-
* <p>A specified entity does not exist
|
|
50
|
+
* <p>A specified entity does not exist.</p>
|
|
51
51
|
*
|
|
52
52
|
* @throws {@link InternalServiceException} (server fault)
|
|
53
53
|
* <p>An internal service error occurred.</p>
|
|
@@ -46,7 +46,7 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte
|
|
|
46
46
|
* <p>Access to a resource was denied.</p>
|
|
47
47
|
*
|
|
48
48
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
49
|
-
* <p>A specified entity does not exist
|
|
49
|
+
* <p>A specified entity does not exist.</p>
|
|
50
50
|
*
|
|
51
51
|
* @throws {@link InternalServiceException} (server fault)
|
|
52
52
|
* <p>An internal service error occurred.</p>
|
|
@@ -44,7 +44,7 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat
|
|
|
44
44
|
* <p>Access to a resource was denied.</p>
|
|
45
45
|
*
|
|
46
46
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
47
|
-
* <p>A specified entity does not exist
|
|
47
|
+
* <p>A specified entity does not exist.</p>
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link InternalServiceException} (server fault)
|
|
50
50
|
* <p>An internal service error occurred.</p>
|
|
@@ -59,7 +59,7 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance
|
|
|
59
59
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
62
|
-
* <p>A specified entity does not exist
|
|
62
|
+
* <p>A specified entity does not exist.</p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link InternalServiceException} (server fault)
|
|
65
65
|
* <p>An internal service error occurred.</p>
|
|
@@ -41,7 +41,7 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo
|
|
|
41
41
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
42
42
|
*
|
|
43
43
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
44
|
-
* <p>A specified entity does not exist
|
|
44
|
+
* <p>A specified entity does not exist.</p>
|
|
45
45
|
*
|
|
46
46
|
* @throws {@link InternalServiceException} (server fault)
|
|
47
47
|
* <p>An internal service error occurred.</p>
|
|
@@ -40,7 +40,7 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse,
|
|
|
40
40
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
41
41
|
*
|
|
42
42
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
43
|
-
* <p>A specified entity does not exist
|
|
43
|
+
* <p>A specified entity does not exist.</p>
|
|
44
44
|
*
|
|
45
45
|
* @throws {@link InternalServiceException} (server fault)
|
|
46
46
|
* <p>An internal service error occurred.</p>
|
|
@@ -40,7 +40,7 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes
|
|
|
40
40
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
41
41
|
*
|
|
42
42
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
43
|
-
* <p>A specified entity does not exist
|
|
43
|
+
* <p>A specified entity does not exist.</p>
|
|
44
44
|
*
|
|
45
45
|
* @throws {@link InternalServiceException} (server fault)
|
|
46
46
|
* <p>An internal service error occurred.</p>
|
|
@@ -41,7 +41,7 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons
|
|
|
41
41
|
* @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
|
|
42
42
|
*
|
|
43
43
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
44
|
-
* <p>A specified entity does not exist
|
|
44
|
+
* <p>A specified entity does not exist.</p>
|
|
45
45
|
*
|
|
46
46
|
* @throws {@link InternalServiceException} (server fault)
|
|
47
47
|
* <p>An internal service error occurred.</p>
|