@aws-sdk/client-docdb 3.52.0 → 3.53.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DocDBServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +746 -3
- package/dist-cjs/protocols/Aws_query.js +584 -2009
- package/dist-es/index.js +1 -0
- package/dist-es/models/DocDBServiceException.js +12 -0
- package/dist-es/models/models_0.js +686 -1
- package/dist-es/protocols/Aws_query.js +1188 -2073
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DocDBServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +401 -229
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DocDBServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +287 -229
- package/package.json +27 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { DocDBServiceException as __BaseException } from "./DocDBServiceException";
|
|
2
3
|
export var AddSourceIdentifierToSubscriptionMessage;
|
|
3
4
|
(function (AddSourceIdentifierToSubscriptionMessage) {
|
|
4
5
|
AddSourceIdentifierToSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -11,6 +12,30 @@ export var AddSourceIdentifierToSubscriptionResult;
|
|
|
11
12
|
(function (AddSourceIdentifierToSubscriptionResult) {
|
|
12
13
|
AddSourceIdentifierToSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
14
|
})(AddSourceIdentifierToSubscriptionResult || (AddSourceIdentifierToSubscriptionResult = {}));
|
|
15
|
+
var SourceNotFoundFault = (function (_super) {
|
|
16
|
+
__extends(SourceNotFoundFault, _super);
|
|
17
|
+
function SourceNotFoundFault(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "SourceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "SourceNotFoundFault";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, SourceNotFoundFault.prototype);
|
|
22
|
+
return _this;
|
|
23
|
+
}
|
|
24
|
+
return SourceNotFoundFault;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { SourceNotFoundFault };
|
|
27
|
+
var SubscriptionNotFoundFault = (function (_super) {
|
|
28
|
+
__extends(SubscriptionNotFoundFault, _super);
|
|
29
|
+
function SubscriptionNotFoundFault(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionNotFoundFault", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "SubscriptionNotFoundFault";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, SubscriptionNotFoundFault.prototype);
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
return SubscriptionNotFoundFault;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { SubscriptionNotFoundFault };
|
|
14
39
|
export var Tag;
|
|
15
40
|
(function (Tag) {
|
|
16
41
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -19,6 +44,42 @@ export var AddTagsToResourceMessage;
|
|
|
19
44
|
(function (AddTagsToResourceMessage) {
|
|
20
45
|
AddTagsToResourceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
46
|
})(AddTagsToResourceMessage || (AddTagsToResourceMessage = {}));
|
|
47
|
+
var DBClusterNotFoundFault = (function (_super) {
|
|
48
|
+
__extends(DBClusterNotFoundFault, _super);
|
|
49
|
+
function DBClusterNotFoundFault(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "DBClusterNotFoundFault", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "DBClusterNotFoundFault";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, DBClusterNotFoundFault.prototype);
|
|
54
|
+
return _this;
|
|
55
|
+
}
|
|
56
|
+
return DBClusterNotFoundFault;
|
|
57
|
+
}(__BaseException));
|
|
58
|
+
export { DBClusterNotFoundFault };
|
|
59
|
+
var DBInstanceNotFoundFault = (function (_super) {
|
|
60
|
+
__extends(DBInstanceNotFoundFault, _super);
|
|
61
|
+
function DBInstanceNotFoundFault(opts) {
|
|
62
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
63
|
+
_this.name = "DBInstanceNotFoundFault";
|
|
64
|
+
_this.$fault = "client";
|
|
65
|
+
Object.setPrototypeOf(_this, DBInstanceNotFoundFault.prototype);
|
|
66
|
+
return _this;
|
|
67
|
+
}
|
|
68
|
+
return DBInstanceNotFoundFault;
|
|
69
|
+
}(__BaseException));
|
|
70
|
+
export { DBInstanceNotFoundFault };
|
|
71
|
+
var DBSnapshotNotFoundFault = (function (_super) {
|
|
72
|
+
__extends(DBSnapshotNotFoundFault, _super);
|
|
73
|
+
function DBSnapshotNotFoundFault(opts) {
|
|
74
|
+
var _this = _super.call(this, __assign({ name: "DBSnapshotNotFoundFault", $fault: "client" }, opts)) || this;
|
|
75
|
+
_this.name = "DBSnapshotNotFoundFault";
|
|
76
|
+
_this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(_this, DBSnapshotNotFoundFault.prototype);
|
|
78
|
+
return _this;
|
|
79
|
+
}
|
|
80
|
+
return DBSnapshotNotFoundFault;
|
|
81
|
+
}(__BaseException));
|
|
82
|
+
export { DBSnapshotNotFoundFault };
|
|
22
83
|
export var ApplyPendingMaintenanceActionMessage;
|
|
23
84
|
(function (ApplyPendingMaintenanceActionMessage) {
|
|
24
85
|
ApplyPendingMaintenanceActionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -35,6 +96,42 @@ export var ApplyPendingMaintenanceActionResult;
|
|
|
35
96
|
(function (ApplyPendingMaintenanceActionResult) {
|
|
36
97
|
ApplyPendingMaintenanceActionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
37
98
|
})(ApplyPendingMaintenanceActionResult || (ApplyPendingMaintenanceActionResult = {}));
|
|
99
|
+
var InvalidDBClusterStateFault = (function (_super) {
|
|
100
|
+
__extends(InvalidDBClusterStateFault, _super);
|
|
101
|
+
function InvalidDBClusterStateFault(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBClusterStateFault", $fault: "client" }, opts)) || this;
|
|
103
|
+
_this.name = "InvalidDBClusterStateFault";
|
|
104
|
+
_this.$fault = "client";
|
|
105
|
+
Object.setPrototypeOf(_this, InvalidDBClusterStateFault.prototype);
|
|
106
|
+
return _this;
|
|
107
|
+
}
|
|
108
|
+
return InvalidDBClusterStateFault;
|
|
109
|
+
}(__BaseException));
|
|
110
|
+
export { InvalidDBClusterStateFault };
|
|
111
|
+
var InvalidDBInstanceStateFault = (function (_super) {
|
|
112
|
+
__extends(InvalidDBInstanceStateFault, _super);
|
|
113
|
+
function InvalidDBInstanceStateFault(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBInstanceStateFault", $fault: "client" }, opts)) || this;
|
|
115
|
+
_this.name = "InvalidDBInstanceStateFault";
|
|
116
|
+
_this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(_this, InvalidDBInstanceStateFault.prototype);
|
|
118
|
+
return _this;
|
|
119
|
+
}
|
|
120
|
+
return InvalidDBInstanceStateFault;
|
|
121
|
+
}(__BaseException));
|
|
122
|
+
export { InvalidDBInstanceStateFault };
|
|
123
|
+
var ResourceNotFoundFault = (function (_super) {
|
|
124
|
+
__extends(ResourceNotFoundFault, _super);
|
|
125
|
+
function ResourceNotFoundFault(opts) {
|
|
126
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
127
|
+
_this.name = "ResourceNotFoundFault";
|
|
128
|
+
_this.$fault = "client";
|
|
129
|
+
Object.setPrototypeOf(_this, ResourceNotFoundFault.prototype);
|
|
130
|
+
return _this;
|
|
131
|
+
}
|
|
132
|
+
return ResourceNotFoundFault;
|
|
133
|
+
}(__BaseException));
|
|
134
|
+
export { ResourceNotFoundFault };
|
|
38
135
|
export var CopyDBClusterParameterGroupMessage;
|
|
39
136
|
(function (CopyDBClusterParameterGroupMessage) {
|
|
40
137
|
CopyDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -47,6 +144,42 @@ export var CopyDBClusterParameterGroupResult;
|
|
|
47
144
|
(function (CopyDBClusterParameterGroupResult) {
|
|
48
145
|
CopyDBClusterParameterGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
49
146
|
})(CopyDBClusterParameterGroupResult || (CopyDBClusterParameterGroupResult = {}));
|
|
147
|
+
var DBParameterGroupAlreadyExistsFault = (function (_super) {
|
|
148
|
+
__extends(DBParameterGroupAlreadyExistsFault, _super);
|
|
149
|
+
function DBParameterGroupAlreadyExistsFault(opts) {
|
|
150
|
+
var _this = _super.call(this, __assign({ name: "DBParameterGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
151
|
+
_this.name = "DBParameterGroupAlreadyExistsFault";
|
|
152
|
+
_this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(_this, DBParameterGroupAlreadyExistsFault.prototype);
|
|
154
|
+
return _this;
|
|
155
|
+
}
|
|
156
|
+
return DBParameterGroupAlreadyExistsFault;
|
|
157
|
+
}(__BaseException));
|
|
158
|
+
export { DBParameterGroupAlreadyExistsFault };
|
|
159
|
+
var DBParameterGroupNotFoundFault = (function (_super) {
|
|
160
|
+
__extends(DBParameterGroupNotFoundFault, _super);
|
|
161
|
+
function DBParameterGroupNotFoundFault(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "DBParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "DBParameterGroupNotFoundFault";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, DBParameterGroupNotFoundFault.prototype);
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return DBParameterGroupNotFoundFault;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { DBParameterGroupNotFoundFault };
|
|
171
|
+
var DBParameterGroupQuotaExceededFault = (function (_super) {
|
|
172
|
+
__extends(DBParameterGroupQuotaExceededFault, _super);
|
|
173
|
+
function DBParameterGroupQuotaExceededFault(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "DBParameterGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "DBParameterGroupQuotaExceededFault";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, DBParameterGroupQuotaExceededFault.prototype);
|
|
178
|
+
return _this;
|
|
179
|
+
}
|
|
180
|
+
return DBParameterGroupQuotaExceededFault;
|
|
181
|
+
}(__BaseException));
|
|
182
|
+
export { DBParameterGroupQuotaExceededFault };
|
|
50
183
|
export var CopyDBClusterSnapshotMessage;
|
|
51
184
|
(function (CopyDBClusterSnapshotMessage) {
|
|
52
185
|
CopyDBClusterSnapshotMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -59,6 +192,66 @@ export var CopyDBClusterSnapshotResult;
|
|
|
59
192
|
(function (CopyDBClusterSnapshotResult) {
|
|
60
193
|
CopyDBClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
61
194
|
})(CopyDBClusterSnapshotResult || (CopyDBClusterSnapshotResult = {}));
|
|
195
|
+
var DBClusterSnapshotAlreadyExistsFault = (function (_super) {
|
|
196
|
+
__extends(DBClusterSnapshotAlreadyExistsFault, _super);
|
|
197
|
+
function DBClusterSnapshotAlreadyExistsFault(opts) {
|
|
198
|
+
var _this = _super.call(this, __assign({ name: "DBClusterSnapshotAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
199
|
+
_this.name = "DBClusterSnapshotAlreadyExistsFault";
|
|
200
|
+
_this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(_this, DBClusterSnapshotAlreadyExistsFault.prototype);
|
|
202
|
+
return _this;
|
|
203
|
+
}
|
|
204
|
+
return DBClusterSnapshotAlreadyExistsFault;
|
|
205
|
+
}(__BaseException));
|
|
206
|
+
export { DBClusterSnapshotAlreadyExistsFault };
|
|
207
|
+
var DBClusterSnapshotNotFoundFault = (function (_super) {
|
|
208
|
+
__extends(DBClusterSnapshotNotFoundFault, _super);
|
|
209
|
+
function DBClusterSnapshotNotFoundFault(opts) {
|
|
210
|
+
var _this = _super.call(this, __assign({ name: "DBClusterSnapshotNotFoundFault", $fault: "client" }, opts)) || this;
|
|
211
|
+
_this.name = "DBClusterSnapshotNotFoundFault";
|
|
212
|
+
_this.$fault = "client";
|
|
213
|
+
Object.setPrototypeOf(_this, DBClusterSnapshotNotFoundFault.prototype);
|
|
214
|
+
return _this;
|
|
215
|
+
}
|
|
216
|
+
return DBClusterSnapshotNotFoundFault;
|
|
217
|
+
}(__BaseException));
|
|
218
|
+
export { DBClusterSnapshotNotFoundFault };
|
|
219
|
+
var InvalidDBClusterSnapshotStateFault = (function (_super) {
|
|
220
|
+
__extends(InvalidDBClusterSnapshotStateFault, _super);
|
|
221
|
+
function InvalidDBClusterSnapshotStateFault(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBClusterSnapshotStateFault", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "InvalidDBClusterSnapshotStateFault";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, InvalidDBClusterSnapshotStateFault.prototype);
|
|
226
|
+
return _this;
|
|
227
|
+
}
|
|
228
|
+
return InvalidDBClusterSnapshotStateFault;
|
|
229
|
+
}(__BaseException));
|
|
230
|
+
export { InvalidDBClusterSnapshotStateFault };
|
|
231
|
+
var KMSKeyNotAccessibleFault = (function (_super) {
|
|
232
|
+
__extends(KMSKeyNotAccessibleFault, _super);
|
|
233
|
+
function KMSKeyNotAccessibleFault(opts) {
|
|
234
|
+
var _this = _super.call(this, __assign({ name: "KMSKeyNotAccessibleFault", $fault: "client" }, opts)) || this;
|
|
235
|
+
_this.name = "KMSKeyNotAccessibleFault";
|
|
236
|
+
_this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(_this, KMSKeyNotAccessibleFault.prototype);
|
|
238
|
+
return _this;
|
|
239
|
+
}
|
|
240
|
+
return KMSKeyNotAccessibleFault;
|
|
241
|
+
}(__BaseException));
|
|
242
|
+
export { KMSKeyNotAccessibleFault };
|
|
243
|
+
var SnapshotQuotaExceededFault = (function (_super) {
|
|
244
|
+
__extends(SnapshotQuotaExceededFault, _super);
|
|
245
|
+
function SnapshotQuotaExceededFault(opts) {
|
|
246
|
+
var _this = _super.call(this, __assign({ name: "SnapshotQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
247
|
+
_this.name = "SnapshotQuotaExceededFault";
|
|
248
|
+
_this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(_this, SnapshotQuotaExceededFault.prototype);
|
|
250
|
+
return _this;
|
|
251
|
+
}
|
|
252
|
+
return SnapshotQuotaExceededFault;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { SnapshotQuotaExceededFault };
|
|
62
255
|
export var CreateDBClusterMessage;
|
|
63
256
|
(function (CreateDBClusterMessage) {
|
|
64
257
|
CreateDBClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -83,6 +276,150 @@ export var CreateDBClusterResult;
|
|
|
83
276
|
(function (CreateDBClusterResult) {
|
|
84
277
|
CreateDBClusterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
85
278
|
})(CreateDBClusterResult || (CreateDBClusterResult = {}));
|
|
279
|
+
var DBClusterAlreadyExistsFault = (function (_super) {
|
|
280
|
+
__extends(DBClusterAlreadyExistsFault, _super);
|
|
281
|
+
function DBClusterAlreadyExistsFault(opts) {
|
|
282
|
+
var _this = _super.call(this, __assign({ name: "DBClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
283
|
+
_this.name = "DBClusterAlreadyExistsFault";
|
|
284
|
+
_this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(_this, DBClusterAlreadyExistsFault.prototype);
|
|
286
|
+
return _this;
|
|
287
|
+
}
|
|
288
|
+
return DBClusterAlreadyExistsFault;
|
|
289
|
+
}(__BaseException));
|
|
290
|
+
export { DBClusterAlreadyExistsFault };
|
|
291
|
+
var DBClusterParameterGroupNotFoundFault = (function (_super) {
|
|
292
|
+
__extends(DBClusterParameterGroupNotFoundFault, _super);
|
|
293
|
+
function DBClusterParameterGroupNotFoundFault(opts) {
|
|
294
|
+
var _this = _super.call(this, __assign({ name: "DBClusterParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
295
|
+
_this.name = "DBClusterParameterGroupNotFoundFault";
|
|
296
|
+
_this.$fault = "client";
|
|
297
|
+
Object.setPrototypeOf(_this, DBClusterParameterGroupNotFoundFault.prototype);
|
|
298
|
+
return _this;
|
|
299
|
+
}
|
|
300
|
+
return DBClusterParameterGroupNotFoundFault;
|
|
301
|
+
}(__BaseException));
|
|
302
|
+
export { DBClusterParameterGroupNotFoundFault };
|
|
303
|
+
var DBClusterQuotaExceededFault = (function (_super) {
|
|
304
|
+
__extends(DBClusterQuotaExceededFault, _super);
|
|
305
|
+
function DBClusterQuotaExceededFault(opts) {
|
|
306
|
+
var _this = _super.call(this, __assign({ name: "DBClusterQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
307
|
+
_this.name = "DBClusterQuotaExceededFault";
|
|
308
|
+
_this.$fault = "client";
|
|
309
|
+
Object.setPrototypeOf(_this, DBClusterQuotaExceededFault.prototype);
|
|
310
|
+
return _this;
|
|
311
|
+
}
|
|
312
|
+
return DBClusterQuotaExceededFault;
|
|
313
|
+
}(__BaseException));
|
|
314
|
+
export { DBClusterQuotaExceededFault };
|
|
315
|
+
var DBSubnetGroupDoesNotCoverEnoughAZs = (function (_super) {
|
|
316
|
+
__extends(DBSubnetGroupDoesNotCoverEnoughAZs, _super);
|
|
317
|
+
function DBSubnetGroupDoesNotCoverEnoughAZs(opts) {
|
|
318
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupDoesNotCoverEnoughAZs", $fault: "client" }, opts)) || this;
|
|
319
|
+
_this.name = "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
320
|
+
_this.$fault = "client";
|
|
321
|
+
Object.setPrototypeOf(_this, DBSubnetGroupDoesNotCoverEnoughAZs.prototype);
|
|
322
|
+
return _this;
|
|
323
|
+
}
|
|
324
|
+
return DBSubnetGroupDoesNotCoverEnoughAZs;
|
|
325
|
+
}(__BaseException));
|
|
326
|
+
export { DBSubnetGroupDoesNotCoverEnoughAZs };
|
|
327
|
+
var DBSubnetGroupNotFoundFault = (function (_super) {
|
|
328
|
+
__extends(DBSubnetGroupNotFoundFault, _super);
|
|
329
|
+
function DBSubnetGroupNotFoundFault(opts) {
|
|
330
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
331
|
+
_this.name = "DBSubnetGroupNotFoundFault";
|
|
332
|
+
_this.$fault = "client";
|
|
333
|
+
Object.setPrototypeOf(_this, DBSubnetGroupNotFoundFault.prototype);
|
|
334
|
+
return _this;
|
|
335
|
+
}
|
|
336
|
+
return DBSubnetGroupNotFoundFault;
|
|
337
|
+
}(__BaseException));
|
|
338
|
+
export { DBSubnetGroupNotFoundFault };
|
|
339
|
+
var GlobalClusterNotFoundFault = (function (_super) {
|
|
340
|
+
__extends(GlobalClusterNotFoundFault, _super);
|
|
341
|
+
function GlobalClusterNotFoundFault(opts) {
|
|
342
|
+
var _this = _super.call(this, __assign({ name: "GlobalClusterNotFoundFault", $fault: "client" }, opts)) || this;
|
|
343
|
+
_this.name = "GlobalClusterNotFoundFault";
|
|
344
|
+
_this.$fault = "client";
|
|
345
|
+
Object.setPrototypeOf(_this, GlobalClusterNotFoundFault.prototype);
|
|
346
|
+
return _this;
|
|
347
|
+
}
|
|
348
|
+
return GlobalClusterNotFoundFault;
|
|
349
|
+
}(__BaseException));
|
|
350
|
+
export { GlobalClusterNotFoundFault };
|
|
351
|
+
var InsufficientStorageClusterCapacityFault = (function (_super) {
|
|
352
|
+
__extends(InsufficientStorageClusterCapacityFault, _super);
|
|
353
|
+
function InsufficientStorageClusterCapacityFault(opts) {
|
|
354
|
+
var _this = _super.call(this, __assign({ name: "InsufficientStorageClusterCapacityFault", $fault: "client" }, opts)) || this;
|
|
355
|
+
_this.name = "InsufficientStorageClusterCapacityFault";
|
|
356
|
+
_this.$fault = "client";
|
|
357
|
+
Object.setPrototypeOf(_this, InsufficientStorageClusterCapacityFault.prototype);
|
|
358
|
+
return _this;
|
|
359
|
+
}
|
|
360
|
+
return InsufficientStorageClusterCapacityFault;
|
|
361
|
+
}(__BaseException));
|
|
362
|
+
export { InsufficientStorageClusterCapacityFault };
|
|
363
|
+
var InvalidDBSubnetGroupStateFault = (function (_super) {
|
|
364
|
+
__extends(InvalidDBSubnetGroupStateFault, _super);
|
|
365
|
+
function InvalidDBSubnetGroupStateFault(opts) {
|
|
366
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSubnetGroupStateFault", $fault: "client" }, opts)) || this;
|
|
367
|
+
_this.name = "InvalidDBSubnetGroupStateFault";
|
|
368
|
+
_this.$fault = "client";
|
|
369
|
+
Object.setPrototypeOf(_this, InvalidDBSubnetGroupStateFault.prototype);
|
|
370
|
+
return _this;
|
|
371
|
+
}
|
|
372
|
+
return InvalidDBSubnetGroupStateFault;
|
|
373
|
+
}(__BaseException));
|
|
374
|
+
export { InvalidDBSubnetGroupStateFault };
|
|
375
|
+
var InvalidGlobalClusterStateFault = (function (_super) {
|
|
376
|
+
__extends(InvalidGlobalClusterStateFault, _super);
|
|
377
|
+
function InvalidGlobalClusterStateFault(opts) {
|
|
378
|
+
var _this = _super.call(this, __assign({ name: "InvalidGlobalClusterStateFault", $fault: "client" }, opts)) || this;
|
|
379
|
+
_this.name = "InvalidGlobalClusterStateFault";
|
|
380
|
+
_this.$fault = "client";
|
|
381
|
+
Object.setPrototypeOf(_this, InvalidGlobalClusterStateFault.prototype);
|
|
382
|
+
return _this;
|
|
383
|
+
}
|
|
384
|
+
return InvalidGlobalClusterStateFault;
|
|
385
|
+
}(__BaseException));
|
|
386
|
+
export { InvalidGlobalClusterStateFault };
|
|
387
|
+
var InvalidSubnet = (function (_super) {
|
|
388
|
+
__extends(InvalidSubnet, _super);
|
|
389
|
+
function InvalidSubnet(opts) {
|
|
390
|
+
var _this = _super.call(this, __assign({ name: "InvalidSubnet", $fault: "client" }, opts)) || this;
|
|
391
|
+
_this.name = "InvalidSubnet";
|
|
392
|
+
_this.$fault = "client";
|
|
393
|
+
Object.setPrototypeOf(_this, InvalidSubnet.prototype);
|
|
394
|
+
return _this;
|
|
395
|
+
}
|
|
396
|
+
return InvalidSubnet;
|
|
397
|
+
}(__BaseException));
|
|
398
|
+
export { InvalidSubnet };
|
|
399
|
+
var InvalidVPCNetworkStateFault = (function (_super) {
|
|
400
|
+
__extends(InvalidVPCNetworkStateFault, _super);
|
|
401
|
+
function InvalidVPCNetworkStateFault(opts) {
|
|
402
|
+
var _this = _super.call(this, __assign({ name: "InvalidVPCNetworkStateFault", $fault: "client" }, opts)) || this;
|
|
403
|
+
_this.name = "InvalidVPCNetworkStateFault";
|
|
404
|
+
_this.$fault = "client";
|
|
405
|
+
Object.setPrototypeOf(_this, InvalidVPCNetworkStateFault.prototype);
|
|
406
|
+
return _this;
|
|
407
|
+
}
|
|
408
|
+
return InvalidVPCNetworkStateFault;
|
|
409
|
+
}(__BaseException));
|
|
410
|
+
export { InvalidVPCNetworkStateFault };
|
|
411
|
+
var StorageQuotaExceededFault = (function (_super) {
|
|
412
|
+
__extends(StorageQuotaExceededFault, _super);
|
|
413
|
+
function StorageQuotaExceededFault(opts) {
|
|
414
|
+
var _this = _super.call(this, __assign({ name: "StorageQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
415
|
+
_this.name = "StorageQuotaExceededFault";
|
|
416
|
+
_this.$fault = "client";
|
|
417
|
+
Object.setPrototypeOf(_this, StorageQuotaExceededFault.prototype);
|
|
418
|
+
return _this;
|
|
419
|
+
}
|
|
420
|
+
return StorageQuotaExceededFault;
|
|
421
|
+
}(__BaseException));
|
|
422
|
+
export { StorageQuotaExceededFault };
|
|
86
423
|
export var CreateDBClusterParameterGroupMessage;
|
|
87
424
|
(function (CreateDBClusterParameterGroupMessage) {
|
|
88
425
|
CreateDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -99,6 +436,18 @@ export var CreateDBClusterSnapshotResult;
|
|
|
99
436
|
(function (CreateDBClusterSnapshotResult) {
|
|
100
437
|
CreateDBClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
438
|
})(CreateDBClusterSnapshotResult || (CreateDBClusterSnapshotResult = {}));
|
|
439
|
+
var AuthorizationNotFoundFault = (function (_super) {
|
|
440
|
+
__extends(AuthorizationNotFoundFault, _super);
|
|
441
|
+
function AuthorizationNotFoundFault(opts) {
|
|
442
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationNotFoundFault", $fault: "client" }, opts)) || this;
|
|
443
|
+
_this.name = "AuthorizationNotFoundFault";
|
|
444
|
+
_this.$fault = "client";
|
|
445
|
+
Object.setPrototypeOf(_this, AuthorizationNotFoundFault.prototype);
|
|
446
|
+
return _this;
|
|
447
|
+
}
|
|
448
|
+
return AuthorizationNotFoundFault;
|
|
449
|
+
}(__BaseException));
|
|
450
|
+
export { AuthorizationNotFoundFault };
|
|
102
451
|
export var CreateDBInstanceMessage;
|
|
103
452
|
(function (CreateDBInstanceMessage) {
|
|
104
453
|
CreateDBInstanceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -139,6 +488,66 @@ export var CreateDBInstanceResult;
|
|
|
139
488
|
(function (CreateDBInstanceResult) {
|
|
140
489
|
CreateDBInstanceResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
490
|
})(CreateDBInstanceResult || (CreateDBInstanceResult = {}));
|
|
491
|
+
var DBInstanceAlreadyExistsFault = (function (_super) {
|
|
492
|
+
__extends(DBInstanceAlreadyExistsFault, _super);
|
|
493
|
+
function DBInstanceAlreadyExistsFault(opts) {
|
|
494
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
495
|
+
_this.name = "DBInstanceAlreadyExistsFault";
|
|
496
|
+
_this.$fault = "client";
|
|
497
|
+
Object.setPrototypeOf(_this, DBInstanceAlreadyExistsFault.prototype);
|
|
498
|
+
return _this;
|
|
499
|
+
}
|
|
500
|
+
return DBInstanceAlreadyExistsFault;
|
|
501
|
+
}(__BaseException));
|
|
502
|
+
export { DBInstanceAlreadyExistsFault };
|
|
503
|
+
var DBSecurityGroupNotFoundFault = (function (_super) {
|
|
504
|
+
__extends(DBSecurityGroupNotFoundFault, _super);
|
|
505
|
+
function DBSecurityGroupNotFoundFault(opts) {
|
|
506
|
+
var _this = _super.call(this, __assign({ name: "DBSecurityGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
507
|
+
_this.name = "DBSecurityGroupNotFoundFault";
|
|
508
|
+
_this.$fault = "client";
|
|
509
|
+
Object.setPrototypeOf(_this, DBSecurityGroupNotFoundFault.prototype);
|
|
510
|
+
return _this;
|
|
511
|
+
}
|
|
512
|
+
return DBSecurityGroupNotFoundFault;
|
|
513
|
+
}(__BaseException));
|
|
514
|
+
export { DBSecurityGroupNotFoundFault };
|
|
515
|
+
var InstanceQuotaExceededFault = (function (_super) {
|
|
516
|
+
__extends(InstanceQuotaExceededFault, _super);
|
|
517
|
+
function InstanceQuotaExceededFault(opts) {
|
|
518
|
+
var _this = _super.call(this, __assign({ name: "InstanceQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
519
|
+
_this.name = "InstanceQuotaExceededFault";
|
|
520
|
+
_this.$fault = "client";
|
|
521
|
+
Object.setPrototypeOf(_this, InstanceQuotaExceededFault.prototype);
|
|
522
|
+
return _this;
|
|
523
|
+
}
|
|
524
|
+
return InstanceQuotaExceededFault;
|
|
525
|
+
}(__BaseException));
|
|
526
|
+
export { InstanceQuotaExceededFault };
|
|
527
|
+
var InsufficientDBInstanceCapacityFault = (function (_super) {
|
|
528
|
+
__extends(InsufficientDBInstanceCapacityFault, _super);
|
|
529
|
+
function InsufficientDBInstanceCapacityFault(opts) {
|
|
530
|
+
var _this = _super.call(this, __assign({ name: "InsufficientDBInstanceCapacityFault", $fault: "client" }, opts)) || this;
|
|
531
|
+
_this.name = "InsufficientDBInstanceCapacityFault";
|
|
532
|
+
_this.$fault = "client";
|
|
533
|
+
Object.setPrototypeOf(_this, InsufficientDBInstanceCapacityFault.prototype);
|
|
534
|
+
return _this;
|
|
535
|
+
}
|
|
536
|
+
return InsufficientDBInstanceCapacityFault;
|
|
537
|
+
}(__BaseException));
|
|
538
|
+
export { InsufficientDBInstanceCapacityFault };
|
|
539
|
+
var StorageTypeNotSupportedFault = (function (_super) {
|
|
540
|
+
__extends(StorageTypeNotSupportedFault, _super);
|
|
541
|
+
function StorageTypeNotSupportedFault(opts) {
|
|
542
|
+
var _this = _super.call(this, __assign({ name: "StorageTypeNotSupportedFault", $fault: "client" }, opts)) || this;
|
|
543
|
+
_this.name = "StorageTypeNotSupportedFault";
|
|
544
|
+
_this.$fault = "client";
|
|
545
|
+
Object.setPrototypeOf(_this, StorageTypeNotSupportedFault.prototype);
|
|
546
|
+
return _this;
|
|
547
|
+
}
|
|
548
|
+
return StorageTypeNotSupportedFault;
|
|
549
|
+
}(__BaseException));
|
|
550
|
+
export { StorageTypeNotSupportedFault };
|
|
142
551
|
export var CreateDBSubnetGroupMessage;
|
|
143
552
|
(function (CreateDBSubnetGroupMessage) {
|
|
144
553
|
CreateDBSubnetGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -147,6 +556,42 @@ export var CreateDBSubnetGroupResult;
|
|
|
147
556
|
(function (CreateDBSubnetGroupResult) {
|
|
148
557
|
CreateDBSubnetGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
558
|
})(CreateDBSubnetGroupResult || (CreateDBSubnetGroupResult = {}));
|
|
559
|
+
var DBSubnetGroupAlreadyExistsFault = (function (_super) {
|
|
560
|
+
__extends(DBSubnetGroupAlreadyExistsFault, _super);
|
|
561
|
+
function DBSubnetGroupAlreadyExistsFault(opts) {
|
|
562
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
563
|
+
_this.name = "DBSubnetGroupAlreadyExistsFault";
|
|
564
|
+
_this.$fault = "client";
|
|
565
|
+
Object.setPrototypeOf(_this, DBSubnetGroupAlreadyExistsFault.prototype);
|
|
566
|
+
return _this;
|
|
567
|
+
}
|
|
568
|
+
return DBSubnetGroupAlreadyExistsFault;
|
|
569
|
+
}(__BaseException));
|
|
570
|
+
export { DBSubnetGroupAlreadyExistsFault };
|
|
571
|
+
var DBSubnetGroupQuotaExceededFault = (function (_super) {
|
|
572
|
+
__extends(DBSubnetGroupQuotaExceededFault, _super);
|
|
573
|
+
function DBSubnetGroupQuotaExceededFault(opts) {
|
|
574
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
575
|
+
_this.name = "DBSubnetGroupQuotaExceededFault";
|
|
576
|
+
_this.$fault = "client";
|
|
577
|
+
Object.setPrototypeOf(_this, DBSubnetGroupQuotaExceededFault.prototype);
|
|
578
|
+
return _this;
|
|
579
|
+
}
|
|
580
|
+
return DBSubnetGroupQuotaExceededFault;
|
|
581
|
+
}(__BaseException));
|
|
582
|
+
export { DBSubnetGroupQuotaExceededFault };
|
|
583
|
+
var DBSubnetQuotaExceededFault = (function (_super) {
|
|
584
|
+
__extends(DBSubnetQuotaExceededFault, _super);
|
|
585
|
+
function DBSubnetQuotaExceededFault(opts) {
|
|
586
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
587
|
+
_this.name = "DBSubnetQuotaExceededFault";
|
|
588
|
+
_this.$fault = "client";
|
|
589
|
+
Object.setPrototypeOf(_this, DBSubnetQuotaExceededFault.prototype);
|
|
590
|
+
return _this;
|
|
591
|
+
}
|
|
592
|
+
return DBSubnetQuotaExceededFault;
|
|
593
|
+
}(__BaseException));
|
|
594
|
+
export { DBSubnetQuotaExceededFault };
|
|
150
595
|
export var CreateEventSubscriptionMessage;
|
|
151
596
|
(function (CreateEventSubscriptionMessage) {
|
|
152
597
|
CreateEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -155,6 +600,78 @@ export var CreateEventSubscriptionResult;
|
|
|
155
600
|
(function (CreateEventSubscriptionResult) {
|
|
156
601
|
CreateEventSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
602
|
})(CreateEventSubscriptionResult || (CreateEventSubscriptionResult = {}));
|
|
603
|
+
var EventSubscriptionQuotaExceededFault = (function (_super) {
|
|
604
|
+
__extends(EventSubscriptionQuotaExceededFault, _super);
|
|
605
|
+
function EventSubscriptionQuotaExceededFault(opts) {
|
|
606
|
+
var _this = _super.call(this, __assign({ name: "EventSubscriptionQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
607
|
+
_this.name = "EventSubscriptionQuotaExceededFault";
|
|
608
|
+
_this.$fault = "client";
|
|
609
|
+
Object.setPrototypeOf(_this, EventSubscriptionQuotaExceededFault.prototype);
|
|
610
|
+
return _this;
|
|
611
|
+
}
|
|
612
|
+
return EventSubscriptionQuotaExceededFault;
|
|
613
|
+
}(__BaseException));
|
|
614
|
+
export { EventSubscriptionQuotaExceededFault };
|
|
615
|
+
var SNSInvalidTopicFault = (function (_super) {
|
|
616
|
+
__extends(SNSInvalidTopicFault, _super);
|
|
617
|
+
function SNSInvalidTopicFault(opts) {
|
|
618
|
+
var _this = _super.call(this, __assign({ name: "SNSInvalidTopicFault", $fault: "client" }, opts)) || this;
|
|
619
|
+
_this.name = "SNSInvalidTopicFault";
|
|
620
|
+
_this.$fault = "client";
|
|
621
|
+
Object.setPrototypeOf(_this, SNSInvalidTopicFault.prototype);
|
|
622
|
+
return _this;
|
|
623
|
+
}
|
|
624
|
+
return SNSInvalidTopicFault;
|
|
625
|
+
}(__BaseException));
|
|
626
|
+
export { SNSInvalidTopicFault };
|
|
627
|
+
var SNSNoAuthorizationFault = (function (_super) {
|
|
628
|
+
__extends(SNSNoAuthorizationFault, _super);
|
|
629
|
+
function SNSNoAuthorizationFault(opts) {
|
|
630
|
+
var _this = _super.call(this, __assign({ name: "SNSNoAuthorizationFault", $fault: "client" }, opts)) || this;
|
|
631
|
+
_this.name = "SNSNoAuthorizationFault";
|
|
632
|
+
_this.$fault = "client";
|
|
633
|
+
Object.setPrototypeOf(_this, SNSNoAuthorizationFault.prototype);
|
|
634
|
+
return _this;
|
|
635
|
+
}
|
|
636
|
+
return SNSNoAuthorizationFault;
|
|
637
|
+
}(__BaseException));
|
|
638
|
+
export { SNSNoAuthorizationFault };
|
|
639
|
+
var SNSTopicArnNotFoundFault = (function (_super) {
|
|
640
|
+
__extends(SNSTopicArnNotFoundFault, _super);
|
|
641
|
+
function SNSTopicArnNotFoundFault(opts) {
|
|
642
|
+
var _this = _super.call(this, __assign({ name: "SNSTopicArnNotFoundFault", $fault: "client" }, opts)) || this;
|
|
643
|
+
_this.name = "SNSTopicArnNotFoundFault";
|
|
644
|
+
_this.$fault = "client";
|
|
645
|
+
Object.setPrototypeOf(_this, SNSTopicArnNotFoundFault.prototype);
|
|
646
|
+
return _this;
|
|
647
|
+
}
|
|
648
|
+
return SNSTopicArnNotFoundFault;
|
|
649
|
+
}(__BaseException));
|
|
650
|
+
export { SNSTopicArnNotFoundFault };
|
|
651
|
+
var SubscriptionAlreadyExistFault = (function (_super) {
|
|
652
|
+
__extends(SubscriptionAlreadyExistFault, _super);
|
|
653
|
+
function SubscriptionAlreadyExistFault(opts) {
|
|
654
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionAlreadyExistFault", $fault: "client" }, opts)) || this;
|
|
655
|
+
_this.name = "SubscriptionAlreadyExistFault";
|
|
656
|
+
_this.$fault = "client";
|
|
657
|
+
Object.setPrototypeOf(_this, SubscriptionAlreadyExistFault.prototype);
|
|
658
|
+
return _this;
|
|
659
|
+
}
|
|
660
|
+
return SubscriptionAlreadyExistFault;
|
|
661
|
+
}(__BaseException));
|
|
662
|
+
export { SubscriptionAlreadyExistFault };
|
|
663
|
+
var SubscriptionCategoryNotFoundFault = (function (_super) {
|
|
664
|
+
__extends(SubscriptionCategoryNotFoundFault, _super);
|
|
665
|
+
function SubscriptionCategoryNotFoundFault(opts) {
|
|
666
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionCategoryNotFoundFault", $fault: "client" }, opts)) || this;
|
|
667
|
+
_this.name = "SubscriptionCategoryNotFoundFault";
|
|
668
|
+
_this.$fault = "client";
|
|
669
|
+
Object.setPrototypeOf(_this, SubscriptionCategoryNotFoundFault.prototype);
|
|
670
|
+
return _this;
|
|
671
|
+
}
|
|
672
|
+
return SubscriptionCategoryNotFoundFault;
|
|
673
|
+
}(__BaseException));
|
|
674
|
+
export { SubscriptionCategoryNotFoundFault };
|
|
158
675
|
export var CreateGlobalClusterMessage;
|
|
159
676
|
(function (CreateGlobalClusterMessage) {
|
|
160
677
|
CreateGlobalClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -171,6 +688,30 @@ export var CreateGlobalClusterResult;
|
|
|
171
688
|
(function (CreateGlobalClusterResult) {
|
|
172
689
|
CreateGlobalClusterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
690
|
})(CreateGlobalClusterResult || (CreateGlobalClusterResult = {}));
|
|
691
|
+
var GlobalClusterAlreadyExistsFault = (function (_super) {
|
|
692
|
+
__extends(GlobalClusterAlreadyExistsFault, _super);
|
|
693
|
+
function GlobalClusterAlreadyExistsFault(opts) {
|
|
694
|
+
var _this = _super.call(this, __assign({ name: "GlobalClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
695
|
+
_this.name = "GlobalClusterAlreadyExistsFault";
|
|
696
|
+
_this.$fault = "client";
|
|
697
|
+
Object.setPrototypeOf(_this, GlobalClusterAlreadyExistsFault.prototype);
|
|
698
|
+
return _this;
|
|
699
|
+
}
|
|
700
|
+
return GlobalClusterAlreadyExistsFault;
|
|
701
|
+
}(__BaseException));
|
|
702
|
+
export { GlobalClusterAlreadyExistsFault };
|
|
703
|
+
var GlobalClusterQuotaExceededFault = (function (_super) {
|
|
704
|
+
__extends(GlobalClusterQuotaExceededFault, _super);
|
|
705
|
+
function GlobalClusterQuotaExceededFault(opts) {
|
|
706
|
+
var _this = _super.call(this, __assign({ name: "GlobalClusterQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
707
|
+
_this.name = "GlobalClusterQuotaExceededFault";
|
|
708
|
+
_this.$fault = "client";
|
|
709
|
+
Object.setPrototypeOf(_this, GlobalClusterQuotaExceededFault.prototype);
|
|
710
|
+
return _this;
|
|
711
|
+
}
|
|
712
|
+
return GlobalClusterQuotaExceededFault;
|
|
713
|
+
}(__BaseException));
|
|
714
|
+
export { GlobalClusterQuotaExceededFault };
|
|
174
715
|
export var DeleteDBClusterMessage;
|
|
175
716
|
(function (DeleteDBClusterMessage) {
|
|
176
717
|
DeleteDBClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -183,6 +724,18 @@ export var DeleteDBClusterParameterGroupMessage;
|
|
|
183
724
|
(function (DeleteDBClusterParameterGroupMessage) {
|
|
184
725
|
DeleteDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
726
|
})(DeleteDBClusterParameterGroupMessage || (DeleteDBClusterParameterGroupMessage = {}));
|
|
727
|
+
var InvalidDBParameterGroupStateFault = (function (_super) {
|
|
728
|
+
__extends(InvalidDBParameterGroupStateFault, _super);
|
|
729
|
+
function InvalidDBParameterGroupStateFault(opts) {
|
|
730
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBParameterGroupStateFault", $fault: "client" }, opts)) || this;
|
|
731
|
+
_this.name = "InvalidDBParameterGroupStateFault";
|
|
732
|
+
_this.$fault = "client";
|
|
733
|
+
Object.setPrototypeOf(_this, InvalidDBParameterGroupStateFault.prototype);
|
|
734
|
+
return _this;
|
|
735
|
+
}
|
|
736
|
+
return InvalidDBParameterGroupStateFault;
|
|
737
|
+
}(__BaseException));
|
|
738
|
+
export { InvalidDBParameterGroupStateFault };
|
|
186
739
|
export var DeleteDBClusterSnapshotMessage;
|
|
187
740
|
(function (DeleteDBClusterSnapshotMessage) {
|
|
188
741
|
DeleteDBClusterSnapshotMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -191,6 +744,18 @@ export var DeleteDBClusterSnapshotResult;
|
|
|
191
744
|
(function (DeleteDBClusterSnapshotResult) {
|
|
192
745
|
DeleteDBClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
746
|
})(DeleteDBClusterSnapshotResult || (DeleteDBClusterSnapshotResult = {}));
|
|
747
|
+
var DBSnapshotAlreadyExistsFault = (function (_super) {
|
|
748
|
+
__extends(DBSnapshotAlreadyExistsFault, _super);
|
|
749
|
+
function DBSnapshotAlreadyExistsFault(opts) {
|
|
750
|
+
var _this = _super.call(this, __assign({ name: "DBSnapshotAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
751
|
+
_this.name = "DBSnapshotAlreadyExistsFault";
|
|
752
|
+
_this.$fault = "client";
|
|
753
|
+
Object.setPrototypeOf(_this, DBSnapshotAlreadyExistsFault.prototype);
|
|
754
|
+
return _this;
|
|
755
|
+
}
|
|
756
|
+
return DBSnapshotAlreadyExistsFault;
|
|
757
|
+
}(__BaseException));
|
|
758
|
+
export { DBSnapshotAlreadyExistsFault };
|
|
194
759
|
export var DeleteDBInstanceMessage;
|
|
195
760
|
(function (DeleteDBInstanceMessage) {
|
|
196
761
|
DeleteDBInstanceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -203,6 +768,18 @@ export var DeleteDBSubnetGroupMessage;
|
|
|
203
768
|
(function (DeleteDBSubnetGroupMessage) {
|
|
204
769
|
DeleteDBSubnetGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
770
|
})(DeleteDBSubnetGroupMessage || (DeleteDBSubnetGroupMessage = {}));
|
|
771
|
+
var InvalidDBSubnetStateFault = (function (_super) {
|
|
772
|
+
__extends(InvalidDBSubnetStateFault, _super);
|
|
773
|
+
function InvalidDBSubnetStateFault(opts) {
|
|
774
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSubnetStateFault", $fault: "client" }, opts)) || this;
|
|
775
|
+
_this.name = "InvalidDBSubnetStateFault";
|
|
776
|
+
_this.$fault = "client";
|
|
777
|
+
Object.setPrototypeOf(_this, InvalidDBSubnetStateFault.prototype);
|
|
778
|
+
return _this;
|
|
779
|
+
}
|
|
780
|
+
return InvalidDBSubnetStateFault;
|
|
781
|
+
}(__BaseException));
|
|
782
|
+
export { InvalidDBSubnetStateFault };
|
|
206
783
|
export var DeleteEventSubscriptionMessage;
|
|
207
784
|
(function (DeleteEventSubscriptionMessage) {
|
|
208
785
|
DeleteEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -211,6 +788,18 @@ export var DeleteEventSubscriptionResult;
|
|
|
211
788
|
(function (DeleteEventSubscriptionResult) {
|
|
212
789
|
DeleteEventSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
790
|
})(DeleteEventSubscriptionResult || (DeleteEventSubscriptionResult = {}));
|
|
791
|
+
var InvalidEventSubscriptionStateFault = (function (_super) {
|
|
792
|
+
__extends(InvalidEventSubscriptionStateFault, _super);
|
|
793
|
+
function InvalidEventSubscriptionStateFault(opts) {
|
|
794
|
+
var _this = _super.call(this, __assign({ name: "InvalidEventSubscriptionStateFault", $fault: "client" }, opts)) || this;
|
|
795
|
+
_this.name = "InvalidEventSubscriptionStateFault";
|
|
796
|
+
_this.$fault = "client";
|
|
797
|
+
Object.setPrototypeOf(_this, InvalidEventSubscriptionStateFault.prototype);
|
|
798
|
+
return _this;
|
|
799
|
+
}
|
|
800
|
+
return InvalidEventSubscriptionStateFault;
|
|
801
|
+
}(__BaseException));
|
|
802
|
+
export { InvalidEventSubscriptionStateFault };
|
|
214
803
|
export var DeleteGlobalClusterMessage;
|
|
215
804
|
(function (DeleteGlobalClusterMessage) {
|
|
216
805
|
DeleteGlobalClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -227,6 +816,18 @@ export var CertificateMessage;
|
|
|
227
816
|
(function (CertificateMessage) {
|
|
228
817
|
CertificateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
818
|
})(CertificateMessage || (CertificateMessage = {}));
|
|
819
|
+
var CertificateNotFoundFault = (function (_super) {
|
|
820
|
+
__extends(CertificateNotFoundFault, _super);
|
|
821
|
+
function CertificateNotFoundFault(opts) {
|
|
822
|
+
var _this = _super.call(this, __assign({ name: "CertificateNotFoundFault", $fault: "client" }, opts)) || this;
|
|
823
|
+
_this.name = "CertificateNotFoundFault";
|
|
824
|
+
_this.$fault = "client";
|
|
825
|
+
Object.setPrototypeOf(_this, CertificateNotFoundFault.prototype);
|
|
826
|
+
return _this;
|
|
827
|
+
}
|
|
828
|
+
return CertificateNotFoundFault;
|
|
829
|
+
}(__BaseException));
|
|
830
|
+
export { CertificateNotFoundFault };
|
|
230
831
|
export var Filter;
|
|
231
832
|
(function (Filter) {
|
|
232
833
|
Filter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -407,6 +1008,18 @@ export var TagListMessage;
|
|
|
407
1008
|
(function (TagListMessage) {
|
|
408
1009
|
TagListMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
1010
|
})(TagListMessage || (TagListMessage = {}));
|
|
1011
|
+
var InvalidDBSecurityGroupStateFault = (function (_super) {
|
|
1012
|
+
__extends(InvalidDBSecurityGroupStateFault, _super);
|
|
1013
|
+
function InvalidDBSecurityGroupStateFault(opts) {
|
|
1014
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSecurityGroupStateFault", $fault: "client" }, opts)) || this;
|
|
1015
|
+
_this.name = "InvalidDBSecurityGroupStateFault";
|
|
1016
|
+
_this.$fault = "client";
|
|
1017
|
+
Object.setPrototypeOf(_this, InvalidDBSecurityGroupStateFault.prototype);
|
|
1018
|
+
return _this;
|
|
1019
|
+
}
|
|
1020
|
+
return InvalidDBSecurityGroupStateFault;
|
|
1021
|
+
}(__BaseException));
|
|
1022
|
+
export { InvalidDBSecurityGroupStateFault };
|
|
410
1023
|
export var CloudwatchLogsExportConfiguration;
|
|
411
1024
|
(function (CloudwatchLogsExportConfiguration) {
|
|
412
1025
|
CloudwatchLogsExportConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -435,6 +1048,30 @@ export var ModifyDBClusterSnapshotAttributeResult;
|
|
|
435
1048
|
(function (ModifyDBClusterSnapshotAttributeResult) {
|
|
436
1049
|
ModifyDBClusterSnapshotAttributeResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
437
1050
|
})(ModifyDBClusterSnapshotAttributeResult || (ModifyDBClusterSnapshotAttributeResult = {}));
|
|
1051
|
+
var SharedSnapshotQuotaExceededFault = (function (_super) {
|
|
1052
|
+
__extends(SharedSnapshotQuotaExceededFault, _super);
|
|
1053
|
+
function SharedSnapshotQuotaExceededFault(opts) {
|
|
1054
|
+
var _this = _super.call(this, __assign({ name: "SharedSnapshotQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1055
|
+
_this.name = "SharedSnapshotQuotaExceededFault";
|
|
1056
|
+
_this.$fault = "client";
|
|
1057
|
+
Object.setPrototypeOf(_this, SharedSnapshotQuotaExceededFault.prototype);
|
|
1058
|
+
return _this;
|
|
1059
|
+
}
|
|
1060
|
+
return SharedSnapshotQuotaExceededFault;
|
|
1061
|
+
}(__BaseException));
|
|
1062
|
+
export { SharedSnapshotQuotaExceededFault };
|
|
1063
|
+
var DBUpgradeDependencyFailureFault = (function (_super) {
|
|
1064
|
+
__extends(DBUpgradeDependencyFailureFault, _super);
|
|
1065
|
+
function DBUpgradeDependencyFailureFault(opts) {
|
|
1066
|
+
var _this = _super.call(this, __assign({ name: "DBUpgradeDependencyFailureFault", $fault: "client" }, opts)) || this;
|
|
1067
|
+
_this.name = "DBUpgradeDependencyFailureFault";
|
|
1068
|
+
_this.$fault = "client";
|
|
1069
|
+
Object.setPrototypeOf(_this, DBUpgradeDependencyFailureFault.prototype);
|
|
1070
|
+
return _this;
|
|
1071
|
+
}
|
|
1072
|
+
return DBUpgradeDependencyFailureFault;
|
|
1073
|
+
}(__BaseException));
|
|
1074
|
+
export { DBUpgradeDependencyFailureFault };
|
|
438
1075
|
export var ModifyDBInstanceMessage;
|
|
439
1076
|
(function (ModifyDBInstanceMessage) {
|
|
440
1077
|
ModifyDBInstanceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -451,6 +1088,18 @@ export var ModifyDBSubnetGroupResult;
|
|
|
451
1088
|
(function (ModifyDBSubnetGroupResult) {
|
|
452
1089
|
ModifyDBSubnetGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
453
1090
|
})(ModifyDBSubnetGroupResult || (ModifyDBSubnetGroupResult = {}));
|
|
1091
|
+
var SubnetAlreadyInUse = (function (_super) {
|
|
1092
|
+
__extends(SubnetAlreadyInUse, _super);
|
|
1093
|
+
function SubnetAlreadyInUse(opts) {
|
|
1094
|
+
var _this = _super.call(this, __assign({ name: "SubnetAlreadyInUse", $fault: "client" }, opts)) || this;
|
|
1095
|
+
_this.name = "SubnetAlreadyInUse";
|
|
1096
|
+
_this.$fault = "client";
|
|
1097
|
+
Object.setPrototypeOf(_this, SubnetAlreadyInUse.prototype);
|
|
1098
|
+
return _this;
|
|
1099
|
+
}
|
|
1100
|
+
return SubnetAlreadyInUse;
|
|
1101
|
+
}(__BaseException));
|
|
1102
|
+
export { SubnetAlreadyInUse };
|
|
454
1103
|
export var ModifyEventSubscriptionMessage;
|
|
455
1104
|
(function (ModifyEventSubscriptionMessage) {
|
|
456
1105
|
ModifyEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -499,6 +1148,42 @@ export var ResetDBClusterParameterGroupMessage;
|
|
|
499
1148
|
(function (ResetDBClusterParameterGroupMessage) {
|
|
500
1149
|
ResetDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
501
1150
|
})(ResetDBClusterParameterGroupMessage || (ResetDBClusterParameterGroupMessage = {}));
|
|
1151
|
+
var InsufficientDBClusterCapacityFault = (function (_super) {
|
|
1152
|
+
__extends(InsufficientDBClusterCapacityFault, _super);
|
|
1153
|
+
function InsufficientDBClusterCapacityFault(opts) {
|
|
1154
|
+
var _this = _super.call(this, __assign({ name: "InsufficientDBClusterCapacityFault", $fault: "client" }, opts)) || this;
|
|
1155
|
+
_this.name = "InsufficientDBClusterCapacityFault";
|
|
1156
|
+
_this.$fault = "client";
|
|
1157
|
+
Object.setPrototypeOf(_this, InsufficientDBClusterCapacityFault.prototype);
|
|
1158
|
+
return _this;
|
|
1159
|
+
}
|
|
1160
|
+
return InsufficientDBClusterCapacityFault;
|
|
1161
|
+
}(__BaseException));
|
|
1162
|
+
export { InsufficientDBClusterCapacityFault };
|
|
1163
|
+
var InvalidDBSnapshotStateFault = (function (_super) {
|
|
1164
|
+
__extends(InvalidDBSnapshotStateFault, _super);
|
|
1165
|
+
function InvalidDBSnapshotStateFault(opts) {
|
|
1166
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSnapshotStateFault", $fault: "client" }, opts)) || this;
|
|
1167
|
+
_this.name = "InvalidDBSnapshotStateFault";
|
|
1168
|
+
_this.$fault = "client";
|
|
1169
|
+
Object.setPrototypeOf(_this, InvalidDBSnapshotStateFault.prototype);
|
|
1170
|
+
return _this;
|
|
1171
|
+
}
|
|
1172
|
+
return InvalidDBSnapshotStateFault;
|
|
1173
|
+
}(__BaseException));
|
|
1174
|
+
export { InvalidDBSnapshotStateFault };
|
|
1175
|
+
var InvalidRestoreFault = (function (_super) {
|
|
1176
|
+
__extends(InvalidRestoreFault, _super);
|
|
1177
|
+
function InvalidRestoreFault(opts) {
|
|
1178
|
+
var _this = _super.call(this, __assign({ name: "InvalidRestoreFault", $fault: "client" }, opts)) || this;
|
|
1179
|
+
_this.name = "InvalidRestoreFault";
|
|
1180
|
+
_this.$fault = "client";
|
|
1181
|
+
Object.setPrototypeOf(_this, InvalidRestoreFault.prototype);
|
|
1182
|
+
return _this;
|
|
1183
|
+
}
|
|
1184
|
+
return InvalidRestoreFault;
|
|
1185
|
+
}(__BaseException));
|
|
1186
|
+
export { InvalidRestoreFault };
|
|
502
1187
|
export var RestoreDBClusterFromSnapshotMessage;
|
|
503
1188
|
(function (RestoreDBClusterFromSnapshotMessage) {
|
|
504
1189
|
RestoreDBClusterFromSnapshotMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|