@aws-sdk/client-lakeformation 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/LakeFormationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +260 -3
- package/dist-cjs/protocols/Aws_restJson1.js +548 -1877
- package/dist-es/index.js +1 -0
- package/dist-es/models/LakeFormationServiceException.js +12 -0
- package/dist-es/models/models_0.js +239 -1
- package/dist-es/protocols/Aws_restJson1.js +1079 -2072
- package/dist-types/LakeFormationClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LakeFormationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +129 -56
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/LakeFormationClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LakeFormationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +93 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var LakeFormationServiceException = (function (_super) {
|
|
4
|
+
__extends(LakeFormationServiceException, _super);
|
|
5
|
+
function LakeFormationServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, LakeFormationServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return LakeFormationServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { LakeFormationServiceException };
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException";
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
13
|
+
}
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
3
17
|
export var LFTagPair;
|
|
4
18
|
(function (LFTagPair) {
|
|
5
19
|
LFTagPair.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -73,6 +87,71 @@ export var AddLFTagsToResourceResponse;
|
|
|
73
87
|
(function (AddLFTagsToResourceResponse) {
|
|
74
88
|
AddLFTagsToResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
75
89
|
})(AddLFTagsToResourceResponse || (AddLFTagsToResourceResponse = {}));
|
|
90
|
+
var ConcurrentModificationException = (function (_super) {
|
|
91
|
+
__extends(ConcurrentModificationException, _super);
|
|
92
|
+
function ConcurrentModificationException(opts) {
|
|
93
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
94
|
+
_this.name = "ConcurrentModificationException";
|
|
95
|
+
_this.$fault = "client";
|
|
96
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
97
|
+
_this.Message = opts.Message;
|
|
98
|
+
return _this;
|
|
99
|
+
}
|
|
100
|
+
return ConcurrentModificationException;
|
|
101
|
+
}(__BaseException));
|
|
102
|
+
export { ConcurrentModificationException };
|
|
103
|
+
var EntityNotFoundException = (function (_super) {
|
|
104
|
+
__extends(EntityNotFoundException, _super);
|
|
105
|
+
function EntityNotFoundException(opts) {
|
|
106
|
+
var _this = _super.call(this, __assign({ name: "EntityNotFoundException", $fault: "client" }, opts)) || this;
|
|
107
|
+
_this.name = "EntityNotFoundException";
|
|
108
|
+
_this.$fault = "client";
|
|
109
|
+
Object.setPrototypeOf(_this, EntityNotFoundException.prototype);
|
|
110
|
+
_this.Message = opts.Message;
|
|
111
|
+
return _this;
|
|
112
|
+
}
|
|
113
|
+
return EntityNotFoundException;
|
|
114
|
+
}(__BaseException));
|
|
115
|
+
export { EntityNotFoundException };
|
|
116
|
+
var InternalServiceException = (function (_super) {
|
|
117
|
+
__extends(InternalServiceException, _super);
|
|
118
|
+
function InternalServiceException(opts) {
|
|
119
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
|
|
120
|
+
_this.name = "InternalServiceException";
|
|
121
|
+
_this.$fault = "server";
|
|
122
|
+
Object.setPrototypeOf(_this, InternalServiceException.prototype);
|
|
123
|
+
_this.Message = opts.Message;
|
|
124
|
+
return _this;
|
|
125
|
+
}
|
|
126
|
+
return InternalServiceException;
|
|
127
|
+
}(__BaseException));
|
|
128
|
+
export { InternalServiceException };
|
|
129
|
+
var InvalidInputException = (function (_super) {
|
|
130
|
+
__extends(InvalidInputException, _super);
|
|
131
|
+
function InvalidInputException(opts) {
|
|
132
|
+
var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
|
|
133
|
+
_this.name = "InvalidInputException";
|
|
134
|
+
_this.$fault = "client";
|
|
135
|
+
Object.setPrototypeOf(_this, InvalidInputException.prototype);
|
|
136
|
+
_this.Message = opts.Message;
|
|
137
|
+
return _this;
|
|
138
|
+
}
|
|
139
|
+
return InvalidInputException;
|
|
140
|
+
}(__BaseException));
|
|
141
|
+
export { InvalidInputException };
|
|
142
|
+
var OperationTimeoutException = (function (_super) {
|
|
143
|
+
__extends(OperationTimeoutException, _super);
|
|
144
|
+
function OperationTimeoutException(opts) {
|
|
145
|
+
var _this = _super.call(this, __assign({ name: "OperationTimeoutException", $fault: "client" }, opts)) || this;
|
|
146
|
+
_this.name = "OperationTimeoutException";
|
|
147
|
+
_this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(_this, OperationTimeoutException.prototype);
|
|
149
|
+
_this.Message = opts.Message;
|
|
150
|
+
return _this;
|
|
151
|
+
}
|
|
152
|
+
return OperationTimeoutException;
|
|
153
|
+
}(__BaseException));
|
|
154
|
+
export { OperationTimeoutException };
|
|
76
155
|
export var AddObjectInput;
|
|
77
156
|
(function (AddObjectInput) {
|
|
78
157
|
AddObjectInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -81,6 +160,19 @@ export var AllRowsWildcard;
|
|
|
81
160
|
(function (AllRowsWildcard) {
|
|
82
161
|
AllRowsWildcard.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
83
162
|
})(AllRowsWildcard || (AllRowsWildcard = {}));
|
|
163
|
+
var AlreadyExistsException = (function (_super) {
|
|
164
|
+
__extends(AlreadyExistsException, _super);
|
|
165
|
+
function AlreadyExistsException(opts) {
|
|
166
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
167
|
+
_this.name = "AlreadyExistsException";
|
|
168
|
+
_this.$fault = "client";
|
|
169
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
170
|
+
_this.Message = opts.Message;
|
|
171
|
+
return _this;
|
|
172
|
+
}
|
|
173
|
+
return AlreadyExistsException;
|
|
174
|
+
}(__BaseException));
|
|
175
|
+
export { AlreadyExistsException };
|
|
84
176
|
export var AuditContext;
|
|
85
177
|
(function (AuditContext) {
|
|
86
178
|
AuditContext.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -139,6 +231,32 @@ export var CancelTransactionResponse;
|
|
|
139
231
|
(function (CancelTransactionResponse) {
|
|
140
232
|
CancelTransactionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
233
|
})(CancelTransactionResponse || (CancelTransactionResponse = {}));
|
|
234
|
+
var TransactionCommitInProgressException = (function (_super) {
|
|
235
|
+
__extends(TransactionCommitInProgressException, _super);
|
|
236
|
+
function TransactionCommitInProgressException(opts) {
|
|
237
|
+
var _this = _super.call(this, __assign({ name: "TransactionCommitInProgressException", $fault: "client" }, opts)) || this;
|
|
238
|
+
_this.name = "TransactionCommitInProgressException";
|
|
239
|
+
_this.$fault = "client";
|
|
240
|
+
Object.setPrototypeOf(_this, TransactionCommitInProgressException.prototype);
|
|
241
|
+
_this.Message = opts.Message;
|
|
242
|
+
return _this;
|
|
243
|
+
}
|
|
244
|
+
return TransactionCommitInProgressException;
|
|
245
|
+
}(__BaseException));
|
|
246
|
+
export { TransactionCommitInProgressException };
|
|
247
|
+
var TransactionCommittedException = (function (_super) {
|
|
248
|
+
__extends(TransactionCommittedException, _super);
|
|
249
|
+
function TransactionCommittedException(opts) {
|
|
250
|
+
var _this = _super.call(this, __assign({ name: "TransactionCommittedException", $fault: "client" }, opts)) || this;
|
|
251
|
+
_this.name = "TransactionCommittedException";
|
|
252
|
+
_this.$fault = "client";
|
|
253
|
+
Object.setPrototypeOf(_this, TransactionCommittedException.prototype);
|
|
254
|
+
_this.Message = opts.Message;
|
|
255
|
+
return _this;
|
|
256
|
+
}
|
|
257
|
+
return TransactionCommittedException;
|
|
258
|
+
}(__BaseException));
|
|
259
|
+
export { TransactionCommittedException };
|
|
142
260
|
export var CommitTransactionRequest;
|
|
143
261
|
(function (CommitTransactionRequest) {
|
|
144
262
|
CommitTransactionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -154,6 +272,19 @@ export var CommitTransactionResponse;
|
|
|
154
272
|
(function (CommitTransactionResponse) {
|
|
155
273
|
CommitTransactionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
274
|
})(CommitTransactionResponse || (CommitTransactionResponse = {}));
|
|
275
|
+
var TransactionCanceledException = (function (_super) {
|
|
276
|
+
__extends(TransactionCanceledException, _super);
|
|
277
|
+
function TransactionCanceledException(opts) {
|
|
278
|
+
var _this = _super.call(this, __assign({ name: "TransactionCanceledException", $fault: "client" }, opts)) || this;
|
|
279
|
+
_this.name = "TransactionCanceledException";
|
|
280
|
+
_this.$fault = "client";
|
|
281
|
+
Object.setPrototypeOf(_this, TransactionCanceledException.prototype);
|
|
282
|
+
_this.Message = opts.Message;
|
|
283
|
+
return _this;
|
|
284
|
+
}
|
|
285
|
+
return TransactionCanceledException;
|
|
286
|
+
}(__BaseException));
|
|
287
|
+
export { TransactionCanceledException };
|
|
157
288
|
export var RowFilter;
|
|
158
289
|
(function (RowFilter) {
|
|
159
290
|
RowFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -170,6 +301,19 @@ export var CreateDataCellsFilterResponse;
|
|
|
170
301
|
(function (CreateDataCellsFilterResponse) {
|
|
171
302
|
CreateDataCellsFilterResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
303
|
})(CreateDataCellsFilterResponse || (CreateDataCellsFilterResponse = {}));
|
|
304
|
+
var ResourceNumberLimitExceededException = (function (_super) {
|
|
305
|
+
__extends(ResourceNumberLimitExceededException, _super);
|
|
306
|
+
function ResourceNumberLimitExceededException(opts) {
|
|
307
|
+
var _this = _super.call(this, __assign({ name: "ResourceNumberLimitExceededException", $fault: "client" }, opts)) || this;
|
|
308
|
+
_this.name = "ResourceNumberLimitExceededException";
|
|
309
|
+
_this.$fault = "client";
|
|
310
|
+
Object.setPrototypeOf(_this, ResourceNumberLimitExceededException.prototype);
|
|
311
|
+
_this.Message = opts.Message;
|
|
312
|
+
return _this;
|
|
313
|
+
}
|
|
314
|
+
return ResourceNumberLimitExceededException;
|
|
315
|
+
}(__BaseException));
|
|
316
|
+
export { ResourceNumberLimitExceededException };
|
|
173
317
|
export var CreateLFTagRequest;
|
|
174
318
|
(function (CreateLFTagRequest) {
|
|
175
319
|
CreateLFTagRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -206,6 +350,19 @@ export var DeleteObjectsOnCancelResponse;
|
|
|
206
350
|
(function (DeleteObjectsOnCancelResponse) {
|
|
207
351
|
DeleteObjectsOnCancelResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
352
|
})(DeleteObjectsOnCancelResponse || (DeleteObjectsOnCancelResponse = {}));
|
|
353
|
+
var ResourceNotReadyException = (function (_super) {
|
|
354
|
+
__extends(ResourceNotReadyException, _super);
|
|
355
|
+
function ResourceNotReadyException(opts) {
|
|
356
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotReadyException", $fault: "client" }, opts)) || this;
|
|
357
|
+
_this.name = "ResourceNotReadyException";
|
|
358
|
+
_this.$fault = "client";
|
|
359
|
+
Object.setPrototypeOf(_this, ResourceNotReadyException.prototype);
|
|
360
|
+
_this.Message = opts.Message;
|
|
361
|
+
return _this;
|
|
362
|
+
}
|
|
363
|
+
return ResourceNotReadyException;
|
|
364
|
+
}(__BaseException));
|
|
365
|
+
export { ResourceNotReadyException };
|
|
209
366
|
export var DeregisterResourceRequest;
|
|
210
367
|
(function (DeregisterResourceRequest) {
|
|
211
368
|
DeregisterResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -302,6 +459,19 @@ export var GetQueryStateResponse;
|
|
|
302
459
|
(function (GetQueryStateResponse) {
|
|
303
460
|
GetQueryStateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
461
|
})(GetQueryStateResponse || (GetQueryStateResponse = {}));
|
|
462
|
+
var ExpiredException = (function (_super) {
|
|
463
|
+
__extends(ExpiredException, _super);
|
|
464
|
+
function ExpiredException(opts) {
|
|
465
|
+
var _this = _super.call(this, __assign({ name: "ExpiredException", $fault: "client" }, opts)) || this;
|
|
466
|
+
_this.name = "ExpiredException";
|
|
467
|
+
_this.$fault = "client";
|
|
468
|
+
Object.setPrototypeOf(_this, ExpiredException.prototype);
|
|
469
|
+
_this.Message = opts.Message;
|
|
470
|
+
return _this;
|
|
471
|
+
}
|
|
472
|
+
return ExpiredException;
|
|
473
|
+
}(__BaseException));
|
|
474
|
+
export { ExpiredException };
|
|
305
475
|
export var GetQueryStatisticsRequest;
|
|
306
476
|
(function (GetQueryStatisticsRequest) {
|
|
307
477
|
GetQueryStatisticsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -318,6 +488,35 @@ export var GetQueryStatisticsResponse;
|
|
|
318
488
|
(function (GetQueryStatisticsResponse) {
|
|
319
489
|
GetQueryStatisticsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
490
|
})(GetQueryStatisticsResponse || (GetQueryStatisticsResponse = {}));
|
|
491
|
+
var StatisticsNotReadyYetException = (function (_super) {
|
|
492
|
+
__extends(StatisticsNotReadyYetException, _super);
|
|
493
|
+
function StatisticsNotReadyYetException(opts) {
|
|
494
|
+
var _this = _super.call(this, __assign({ name: "StatisticsNotReadyYetException", $fault: "client" }, opts)) || this;
|
|
495
|
+
_this.name = "StatisticsNotReadyYetException";
|
|
496
|
+
_this.$fault = "client";
|
|
497
|
+
Object.setPrototypeOf(_this, StatisticsNotReadyYetException.prototype);
|
|
498
|
+
_this.Message = opts.Message;
|
|
499
|
+
return _this;
|
|
500
|
+
}
|
|
501
|
+
return StatisticsNotReadyYetException;
|
|
502
|
+
}(__BaseException));
|
|
503
|
+
export { StatisticsNotReadyYetException };
|
|
504
|
+
var ThrottledException = (function (_super) {
|
|
505
|
+
__extends(ThrottledException, _super);
|
|
506
|
+
function ThrottledException(opts) {
|
|
507
|
+
var _this = _super.call(this, __assign({ name: "ThrottledException", $fault: "client" }, opts)) || this;
|
|
508
|
+
_this.name = "ThrottledException";
|
|
509
|
+
_this.$fault = "client";
|
|
510
|
+
_this.$retryable = {
|
|
511
|
+
throttling: true,
|
|
512
|
+
};
|
|
513
|
+
Object.setPrototypeOf(_this, ThrottledException.prototype);
|
|
514
|
+
_this.Message = opts.Message;
|
|
515
|
+
return _this;
|
|
516
|
+
}
|
|
517
|
+
return ThrottledException;
|
|
518
|
+
}(__BaseException));
|
|
519
|
+
export { ThrottledException };
|
|
321
520
|
export var GetResourceLFTagsRequest;
|
|
322
521
|
(function (GetResourceLFTagsRequest) {
|
|
323
522
|
GetResourceLFTagsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -330,6 +529,19 @@ export var GetResourceLFTagsResponse;
|
|
|
330
529
|
(function (GetResourceLFTagsResponse) {
|
|
331
530
|
GetResourceLFTagsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
531
|
})(GetResourceLFTagsResponse || (GetResourceLFTagsResponse = {}));
|
|
532
|
+
var GlueEncryptionException = (function (_super) {
|
|
533
|
+
__extends(GlueEncryptionException, _super);
|
|
534
|
+
function GlueEncryptionException(opts) {
|
|
535
|
+
var _this = _super.call(this, __assign({ name: "GlueEncryptionException", $fault: "client" }, opts)) || this;
|
|
536
|
+
_this.name = "GlueEncryptionException";
|
|
537
|
+
_this.$fault = "client";
|
|
538
|
+
Object.setPrototypeOf(_this, GlueEncryptionException.prototype);
|
|
539
|
+
_this.Message = opts.Message;
|
|
540
|
+
return _this;
|
|
541
|
+
}
|
|
542
|
+
return GlueEncryptionException;
|
|
543
|
+
}(__BaseException));
|
|
544
|
+
export { GlueEncryptionException };
|
|
333
545
|
export var GetTableObjectsRequest;
|
|
334
546
|
(function (GetTableObjectsRequest) {
|
|
335
547
|
GetTableObjectsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -363,6 +575,19 @@ export var GetTemporaryGluePartitionCredentialsResponse;
|
|
|
363
575
|
(function (GetTemporaryGluePartitionCredentialsResponse) {
|
|
364
576
|
GetTemporaryGluePartitionCredentialsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
577
|
})(GetTemporaryGluePartitionCredentialsResponse || (GetTemporaryGluePartitionCredentialsResponse = {}));
|
|
578
|
+
var PermissionTypeMismatchException = (function (_super) {
|
|
579
|
+
__extends(PermissionTypeMismatchException, _super);
|
|
580
|
+
function PermissionTypeMismatchException(opts) {
|
|
581
|
+
var _this = _super.call(this, __assign({ name: "PermissionTypeMismatchException", $fault: "client" }, opts)) || this;
|
|
582
|
+
_this.name = "PermissionTypeMismatchException";
|
|
583
|
+
_this.$fault = "client";
|
|
584
|
+
Object.setPrototypeOf(_this, PermissionTypeMismatchException.prototype);
|
|
585
|
+
_this.Message = opts.Message;
|
|
586
|
+
return _this;
|
|
587
|
+
}
|
|
588
|
+
return PermissionTypeMismatchException;
|
|
589
|
+
}(__BaseException));
|
|
590
|
+
export { PermissionTypeMismatchException };
|
|
366
591
|
export var GetTemporaryGlueTableCredentialsRequest;
|
|
367
592
|
(function (GetTemporaryGlueTableCredentialsRequest) {
|
|
368
593
|
GetTemporaryGlueTableCredentialsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -391,6 +616,19 @@ export var GetWorkUnitsResponse;
|
|
|
391
616
|
(function (GetWorkUnitsResponse) {
|
|
392
617
|
GetWorkUnitsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
618
|
})(GetWorkUnitsResponse || (GetWorkUnitsResponse = {}));
|
|
619
|
+
var WorkUnitsNotReadyYetException = (function (_super) {
|
|
620
|
+
__extends(WorkUnitsNotReadyYetException, _super);
|
|
621
|
+
function WorkUnitsNotReadyYetException(opts) {
|
|
622
|
+
var _this = _super.call(this, __assign({ name: "WorkUnitsNotReadyYetException", $fault: "client" }, opts)) || this;
|
|
623
|
+
_this.name = "WorkUnitsNotReadyYetException";
|
|
624
|
+
_this.$fault = "client";
|
|
625
|
+
Object.setPrototypeOf(_this, WorkUnitsNotReadyYetException.prototype);
|
|
626
|
+
_this.Message = opts.Message;
|
|
627
|
+
return _this;
|
|
628
|
+
}
|
|
629
|
+
return WorkUnitsNotReadyYetException;
|
|
630
|
+
}(__BaseException));
|
|
631
|
+
export { WorkUnitsNotReadyYetException };
|
|
394
632
|
export var GrantPermissionsRequest;
|
|
395
633
|
(function (GrantPermissionsRequest) {
|
|
396
634
|
GrantPermissionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|