@aws-sdk/client-rds 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/RDSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +1281 -4
- package/dist-cjs/models/models_1.js +303 -3
- package/dist-cjs/protocols/Aws_query.js +1471 -5261
- package/dist-es/index.js +1 -0
- package/dist-es/models/RDSServiceException.js +12 -0
- package/dist-es/models/models_0.js +1178 -1
- package/dist-es/models/models_1.js +278 -1
- package/dist-es/protocols/Aws_query.js +3105 -5521
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RDSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +688 -393
- package/dist-types/models/models_1.d.ts +163 -93
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RDSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +492 -393
- package/dist-types/ts3.4/models/models_1.d.ts +117 -93
- package/package.json +27 -27
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
3
4
|
export var AccountQuota;
|
|
4
5
|
(function (AccountQuota) {
|
|
5
6
|
AccountQuota.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -12,10 +13,106 @@ export var AddRoleToDBClusterMessage;
|
|
|
12
13
|
(function (AddRoleToDBClusterMessage) {
|
|
13
14
|
AddRoleToDBClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
14
15
|
})(AddRoleToDBClusterMessage || (AddRoleToDBClusterMessage = {}));
|
|
16
|
+
var DBClusterNotFoundFault = (function (_super) {
|
|
17
|
+
__extends(DBClusterNotFoundFault, _super);
|
|
18
|
+
function DBClusterNotFoundFault(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "DBClusterNotFoundFault", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "DBClusterNotFoundFault";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, DBClusterNotFoundFault.prototype);
|
|
23
|
+
return _this;
|
|
24
|
+
}
|
|
25
|
+
return DBClusterNotFoundFault;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { DBClusterNotFoundFault };
|
|
28
|
+
var DBClusterRoleAlreadyExistsFault = (function (_super) {
|
|
29
|
+
__extends(DBClusterRoleAlreadyExistsFault, _super);
|
|
30
|
+
function DBClusterRoleAlreadyExistsFault(opts) {
|
|
31
|
+
var _this = _super.call(this, __assign({ name: "DBClusterRoleAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
32
|
+
_this.name = "DBClusterRoleAlreadyExistsFault";
|
|
33
|
+
_this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(_this, DBClusterRoleAlreadyExistsFault.prototype);
|
|
35
|
+
return _this;
|
|
36
|
+
}
|
|
37
|
+
return DBClusterRoleAlreadyExistsFault;
|
|
38
|
+
}(__BaseException));
|
|
39
|
+
export { DBClusterRoleAlreadyExistsFault };
|
|
40
|
+
var DBClusterRoleQuotaExceededFault = (function (_super) {
|
|
41
|
+
__extends(DBClusterRoleQuotaExceededFault, _super);
|
|
42
|
+
function DBClusterRoleQuotaExceededFault(opts) {
|
|
43
|
+
var _this = _super.call(this, __assign({ name: "DBClusterRoleQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
44
|
+
_this.name = "DBClusterRoleQuotaExceededFault";
|
|
45
|
+
_this.$fault = "client";
|
|
46
|
+
Object.setPrototypeOf(_this, DBClusterRoleQuotaExceededFault.prototype);
|
|
47
|
+
return _this;
|
|
48
|
+
}
|
|
49
|
+
return DBClusterRoleQuotaExceededFault;
|
|
50
|
+
}(__BaseException));
|
|
51
|
+
export { DBClusterRoleQuotaExceededFault };
|
|
52
|
+
var InvalidDBClusterStateFault = (function (_super) {
|
|
53
|
+
__extends(InvalidDBClusterStateFault, _super);
|
|
54
|
+
function InvalidDBClusterStateFault(opts) {
|
|
55
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBClusterStateFault", $fault: "client" }, opts)) || this;
|
|
56
|
+
_this.name = "InvalidDBClusterStateFault";
|
|
57
|
+
_this.$fault = "client";
|
|
58
|
+
Object.setPrototypeOf(_this, InvalidDBClusterStateFault.prototype);
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
return InvalidDBClusterStateFault;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { InvalidDBClusterStateFault };
|
|
15
64
|
export var AddRoleToDBInstanceMessage;
|
|
16
65
|
(function (AddRoleToDBInstanceMessage) {
|
|
17
66
|
AddRoleToDBInstanceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
67
|
})(AddRoleToDBInstanceMessage || (AddRoleToDBInstanceMessage = {}));
|
|
68
|
+
var DBInstanceNotFoundFault = (function (_super) {
|
|
69
|
+
__extends(DBInstanceNotFoundFault, _super);
|
|
70
|
+
function DBInstanceNotFoundFault(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "DBInstanceNotFoundFault";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, DBInstanceNotFoundFault.prototype);
|
|
75
|
+
return _this;
|
|
76
|
+
}
|
|
77
|
+
return DBInstanceNotFoundFault;
|
|
78
|
+
}(__BaseException));
|
|
79
|
+
export { DBInstanceNotFoundFault };
|
|
80
|
+
var DBInstanceRoleAlreadyExistsFault = (function (_super) {
|
|
81
|
+
__extends(DBInstanceRoleAlreadyExistsFault, _super);
|
|
82
|
+
function DBInstanceRoleAlreadyExistsFault(opts) {
|
|
83
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceRoleAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
84
|
+
_this.name = "DBInstanceRoleAlreadyExistsFault";
|
|
85
|
+
_this.$fault = "client";
|
|
86
|
+
Object.setPrototypeOf(_this, DBInstanceRoleAlreadyExistsFault.prototype);
|
|
87
|
+
return _this;
|
|
88
|
+
}
|
|
89
|
+
return DBInstanceRoleAlreadyExistsFault;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { DBInstanceRoleAlreadyExistsFault };
|
|
92
|
+
var DBInstanceRoleQuotaExceededFault = (function (_super) {
|
|
93
|
+
__extends(DBInstanceRoleQuotaExceededFault, _super);
|
|
94
|
+
function DBInstanceRoleQuotaExceededFault(opts) {
|
|
95
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceRoleQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
96
|
+
_this.name = "DBInstanceRoleQuotaExceededFault";
|
|
97
|
+
_this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(_this, DBInstanceRoleQuotaExceededFault.prototype);
|
|
99
|
+
return _this;
|
|
100
|
+
}
|
|
101
|
+
return DBInstanceRoleQuotaExceededFault;
|
|
102
|
+
}(__BaseException));
|
|
103
|
+
export { DBInstanceRoleQuotaExceededFault };
|
|
104
|
+
var InvalidDBInstanceStateFault = (function (_super) {
|
|
105
|
+
__extends(InvalidDBInstanceStateFault, _super);
|
|
106
|
+
function InvalidDBInstanceStateFault(opts) {
|
|
107
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBInstanceStateFault", $fault: "client" }, opts)) || this;
|
|
108
|
+
_this.name = "InvalidDBInstanceStateFault";
|
|
109
|
+
_this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(_this, InvalidDBInstanceStateFault.prototype);
|
|
111
|
+
return _this;
|
|
112
|
+
}
|
|
113
|
+
return InvalidDBInstanceStateFault;
|
|
114
|
+
}(__BaseException));
|
|
115
|
+
export { InvalidDBInstanceStateFault };
|
|
19
116
|
export var AddSourceIdentifierToSubscriptionMessage;
|
|
20
117
|
(function (AddSourceIdentifierToSubscriptionMessage) {
|
|
21
118
|
AddSourceIdentifierToSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -28,6 +125,30 @@ export var AddSourceIdentifierToSubscriptionResult;
|
|
|
28
125
|
(function (AddSourceIdentifierToSubscriptionResult) {
|
|
29
126
|
AddSourceIdentifierToSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
30
127
|
})(AddSourceIdentifierToSubscriptionResult || (AddSourceIdentifierToSubscriptionResult = {}));
|
|
128
|
+
var SourceNotFoundFault = (function (_super) {
|
|
129
|
+
__extends(SourceNotFoundFault, _super);
|
|
130
|
+
function SourceNotFoundFault(opts) {
|
|
131
|
+
var _this = _super.call(this, __assign({ name: "SourceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
132
|
+
_this.name = "SourceNotFoundFault";
|
|
133
|
+
_this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(_this, SourceNotFoundFault.prototype);
|
|
135
|
+
return _this;
|
|
136
|
+
}
|
|
137
|
+
return SourceNotFoundFault;
|
|
138
|
+
}(__BaseException));
|
|
139
|
+
export { SourceNotFoundFault };
|
|
140
|
+
var SubscriptionNotFoundFault = (function (_super) {
|
|
141
|
+
__extends(SubscriptionNotFoundFault, _super);
|
|
142
|
+
function SubscriptionNotFoundFault(opts) {
|
|
143
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionNotFoundFault", $fault: "client" }, opts)) || this;
|
|
144
|
+
_this.name = "SubscriptionNotFoundFault";
|
|
145
|
+
_this.$fault = "client";
|
|
146
|
+
Object.setPrototypeOf(_this, SubscriptionNotFoundFault.prototype);
|
|
147
|
+
return _this;
|
|
148
|
+
}
|
|
149
|
+
return SubscriptionNotFoundFault;
|
|
150
|
+
}(__BaseException));
|
|
151
|
+
export { SubscriptionNotFoundFault };
|
|
31
152
|
export var Tag;
|
|
32
153
|
(function (Tag) {
|
|
33
154
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -36,6 +157,42 @@ export var AddTagsToResourceMessage;
|
|
|
36
157
|
(function (AddTagsToResourceMessage) {
|
|
37
158
|
AddTagsToResourceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
38
159
|
})(AddTagsToResourceMessage || (AddTagsToResourceMessage = {}));
|
|
160
|
+
var DBProxyNotFoundFault = (function (_super) {
|
|
161
|
+
__extends(DBProxyNotFoundFault, _super);
|
|
162
|
+
function DBProxyNotFoundFault(opts) {
|
|
163
|
+
var _this = _super.call(this, __assign({ name: "DBProxyNotFoundFault", $fault: "client" }, opts)) || this;
|
|
164
|
+
_this.name = "DBProxyNotFoundFault";
|
|
165
|
+
_this.$fault = "client";
|
|
166
|
+
Object.setPrototypeOf(_this, DBProxyNotFoundFault.prototype);
|
|
167
|
+
return _this;
|
|
168
|
+
}
|
|
169
|
+
return DBProxyNotFoundFault;
|
|
170
|
+
}(__BaseException));
|
|
171
|
+
export { DBProxyNotFoundFault };
|
|
172
|
+
var DBProxyTargetGroupNotFoundFault = (function (_super) {
|
|
173
|
+
__extends(DBProxyTargetGroupNotFoundFault, _super);
|
|
174
|
+
function DBProxyTargetGroupNotFoundFault(opts) {
|
|
175
|
+
var _this = _super.call(this, __assign({ name: "DBProxyTargetGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
176
|
+
_this.name = "DBProxyTargetGroupNotFoundFault";
|
|
177
|
+
_this.$fault = "client";
|
|
178
|
+
Object.setPrototypeOf(_this, DBProxyTargetGroupNotFoundFault.prototype);
|
|
179
|
+
return _this;
|
|
180
|
+
}
|
|
181
|
+
return DBProxyTargetGroupNotFoundFault;
|
|
182
|
+
}(__BaseException));
|
|
183
|
+
export { DBProxyTargetGroupNotFoundFault };
|
|
184
|
+
var DBSnapshotNotFoundFault = (function (_super) {
|
|
185
|
+
__extends(DBSnapshotNotFoundFault, _super);
|
|
186
|
+
function DBSnapshotNotFoundFault(opts) {
|
|
187
|
+
var _this = _super.call(this, __assign({ name: "DBSnapshotNotFoundFault", $fault: "client" }, opts)) || this;
|
|
188
|
+
_this.name = "DBSnapshotNotFoundFault";
|
|
189
|
+
_this.$fault = "client";
|
|
190
|
+
Object.setPrototypeOf(_this, DBSnapshotNotFoundFault.prototype);
|
|
191
|
+
return _this;
|
|
192
|
+
}
|
|
193
|
+
return DBSnapshotNotFoundFault;
|
|
194
|
+
}(__BaseException));
|
|
195
|
+
export { DBSnapshotNotFoundFault };
|
|
39
196
|
export var ApplyPendingMaintenanceActionMessage;
|
|
40
197
|
(function (ApplyPendingMaintenanceActionMessage) {
|
|
41
198
|
ApplyPendingMaintenanceActionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -52,6 +209,42 @@ export var ApplyPendingMaintenanceActionResult;
|
|
|
52
209
|
(function (ApplyPendingMaintenanceActionResult) {
|
|
53
210
|
ApplyPendingMaintenanceActionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
54
211
|
})(ApplyPendingMaintenanceActionResult || (ApplyPendingMaintenanceActionResult = {}));
|
|
212
|
+
var ResourceNotFoundFault = (function (_super) {
|
|
213
|
+
__extends(ResourceNotFoundFault, _super);
|
|
214
|
+
function ResourceNotFoundFault(opts) {
|
|
215
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
216
|
+
_this.name = "ResourceNotFoundFault";
|
|
217
|
+
_this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(_this, ResourceNotFoundFault.prototype);
|
|
219
|
+
return _this;
|
|
220
|
+
}
|
|
221
|
+
return ResourceNotFoundFault;
|
|
222
|
+
}(__BaseException));
|
|
223
|
+
export { ResourceNotFoundFault };
|
|
224
|
+
var AuthorizationAlreadyExistsFault = (function (_super) {
|
|
225
|
+
__extends(AuthorizationAlreadyExistsFault, _super);
|
|
226
|
+
function AuthorizationAlreadyExistsFault(opts) {
|
|
227
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
228
|
+
_this.name = "AuthorizationAlreadyExistsFault";
|
|
229
|
+
_this.$fault = "client";
|
|
230
|
+
Object.setPrototypeOf(_this, AuthorizationAlreadyExistsFault.prototype);
|
|
231
|
+
return _this;
|
|
232
|
+
}
|
|
233
|
+
return AuthorizationAlreadyExistsFault;
|
|
234
|
+
}(__BaseException));
|
|
235
|
+
export { AuthorizationAlreadyExistsFault };
|
|
236
|
+
var AuthorizationQuotaExceededFault = (function (_super) {
|
|
237
|
+
__extends(AuthorizationQuotaExceededFault, _super);
|
|
238
|
+
function AuthorizationQuotaExceededFault(opts) {
|
|
239
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
240
|
+
_this.name = "AuthorizationQuotaExceededFault";
|
|
241
|
+
_this.$fault = "client";
|
|
242
|
+
Object.setPrototypeOf(_this, AuthorizationQuotaExceededFault.prototype);
|
|
243
|
+
return _this;
|
|
244
|
+
}
|
|
245
|
+
return AuthorizationQuotaExceededFault;
|
|
246
|
+
}(__BaseException));
|
|
247
|
+
export { AuthorizationQuotaExceededFault };
|
|
55
248
|
export var AuthorizeDBSecurityGroupIngressMessage;
|
|
56
249
|
(function (AuthorizeDBSecurityGroupIngressMessage) {
|
|
57
250
|
AuthorizeDBSecurityGroupIngressMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -72,6 +265,30 @@ export var AuthorizeDBSecurityGroupIngressResult;
|
|
|
72
265
|
(function (AuthorizeDBSecurityGroupIngressResult) {
|
|
73
266
|
AuthorizeDBSecurityGroupIngressResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
74
267
|
})(AuthorizeDBSecurityGroupIngressResult || (AuthorizeDBSecurityGroupIngressResult = {}));
|
|
268
|
+
var DBSecurityGroupNotFoundFault = (function (_super) {
|
|
269
|
+
__extends(DBSecurityGroupNotFoundFault, _super);
|
|
270
|
+
function DBSecurityGroupNotFoundFault(opts) {
|
|
271
|
+
var _this = _super.call(this, __assign({ name: "DBSecurityGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
272
|
+
_this.name = "DBSecurityGroupNotFoundFault";
|
|
273
|
+
_this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(_this, DBSecurityGroupNotFoundFault.prototype);
|
|
275
|
+
return _this;
|
|
276
|
+
}
|
|
277
|
+
return DBSecurityGroupNotFoundFault;
|
|
278
|
+
}(__BaseException));
|
|
279
|
+
export { DBSecurityGroupNotFoundFault };
|
|
280
|
+
var InvalidDBSecurityGroupStateFault = (function (_super) {
|
|
281
|
+
__extends(InvalidDBSecurityGroupStateFault, _super);
|
|
282
|
+
function InvalidDBSecurityGroupStateFault(opts) {
|
|
283
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSecurityGroupStateFault", $fault: "client" }, opts)) || this;
|
|
284
|
+
_this.name = "InvalidDBSecurityGroupStateFault";
|
|
285
|
+
_this.$fault = "client";
|
|
286
|
+
Object.setPrototypeOf(_this, InvalidDBSecurityGroupStateFault.prototype);
|
|
287
|
+
return _this;
|
|
288
|
+
}
|
|
289
|
+
return InvalidDBSecurityGroupStateFault;
|
|
290
|
+
}(__BaseException));
|
|
291
|
+
export { InvalidDBSecurityGroupStateFault };
|
|
75
292
|
export var BacktrackDBClusterMessage;
|
|
76
293
|
(function (BacktrackDBClusterMessage) {
|
|
77
294
|
BacktrackDBClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -88,6 +305,30 @@ export var ExportTask;
|
|
|
88
305
|
(function (ExportTask) {
|
|
89
306
|
ExportTask.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
90
307
|
})(ExportTask || (ExportTask = {}));
|
|
308
|
+
var ExportTaskNotFoundFault = (function (_super) {
|
|
309
|
+
__extends(ExportTaskNotFoundFault, _super);
|
|
310
|
+
function ExportTaskNotFoundFault(opts) {
|
|
311
|
+
var _this = _super.call(this, __assign({ name: "ExportTaskNotFoundFault", $fault: "client" }, opts)) || this;
|
|
312
|
+
_this.name = "ExportTaskNotFoundFault";
|
|
313
|
+
_this.$fault = "client";
|
|
314
|
+
Object.setPrototypeOf(_this, ExportTaskNotFoundFault.prototype);
|
|
315
|
+
return _this;
|
|
316
|
+
}
|
|
317
|
+
return ExportTaskNotFoundFault;
|
|
318
|
+
}(__BaseException));
|
|
319
|
+
export { ExportTaskNotFoundFault };
|
|
320
|
+
var InvalidExportTaskStateFault = (function (_super) {
|
|
321
|
+
__extends(InvalidExportTaskStateFault, _super);
|
|
322
|
+
function InvalidExportTaskStateFault(opts) {
|
|
323
|
+
var _this = _super.call(this, __assign({ name: "InvalidExportTaskStateFault", $fault: "client" }, opts)) || this;
|
|
324
|
+
_this.name = "InvalidExportTaskStateFault";
|
|
325
|
+
_this.$fault = "client";
|
|
326
|
+
Object.setPrototypeOf(_this, InvalidExportTaskStateFault.prototype);
|
|
327
|
+
return _this;
|
|
328
|
+
}
|
|
329
|
+
return InvalidExportTaskStateFault;
|
|
330
|
+
}(__BaseException));
|
|
331
|
+
export { InvalidExportTaskStateFault };
|
|
91
332
|
export var CopyDBClusterParameterGroupMessage;
|
|
92
333
|
(function (CopyDBClusterParameterGroupMessage) {
|
|
93
334
|
CopyDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -100,6 +341,42 @@ export var CopyDBClusterParameterGroupResult;
|
|
|
100
341
|
(function (CopyDBClusterParameterGroupResult) {
|
|
101
342
|
CopyDBClusterParameterGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
343
|
})(CopyDBClusterParameterGroupResult || (CopyDBClusterParameterGroupResult = {}));
|
|
344
|
+
var DBParameterGroupAlreadyExistsFault = (function (_super) {
|
|
345
|
+
__extends(DBParameterGroupAlreadyExistsFault, _super);
|
|
346
|
+
function DBParameterGroupAlreadyExistsFault(opts) {
|
|
347
|
+
var _this = _super.call(this, __assign({ name: "DBParameterGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
348
|
+
_this.name = "DBParameterGroupAlreadyExistsFault";
|
|
349
|
+
_this.$fault = "client";
|
|
350
|
+
Object.setPrototypeOf(_this, DBParameterGroupAlreadyExistsFault.prototype);
|
|
351
|
+
return _this;
|
|
352
|
+
}
|
|
353
|
+
return DBParameterGroupAlreadyExistsFault;
|
|
354
|
+
}(__BaseException));
|
|
355
|
+
export { DBParameterGroupAlreadyExistsFault };
|
|
356
|
+
var DBParameterGroupNotFoundFault = (function (_super) {
|
|
357
|
+
__extends(DBParameterGroupNotFoundFault, _super);
|
|
358
|
+
function DBParameterGroupNotFoundFault(opts) {
|
|
359
|
+
var _this = _super.call(this, __assign({ name: "DBParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
360
|
+
_this.name = "DBParameterGroupNotFoundFault";
|
|
361
|
+
_this.$fault = "client";
|
|
362
|
+
Object.setPrototypeOf(_this, DBParameterGroupNotFoundFault.prototype);
|
|
363
|
+
return _this;
|
|
364
|
+
}
|
|
365
|
+
return DBParameterGroupNotFoundFault;
|
|
366
|
+
}(__BaseException));
|
|
367
|
+
export { DBParameterGroupNotFoundFault };
|
|
368
|
+
var DBParameterGroupQuotaExceededFault = (function (_super) {
|
|
369
|
+
__extends(DBParameterGroupQuotaExceededFault, _super);
|
|
370
|
+
function DBParameterGroupQuotaExceededFault(opts) {
|
|
371
|
+
var _this = _super.call(this, __assign({ name: "DBParameterGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
372
|
+
_this.name = "DBParameterGroupQuotaExceededFault";
|
|
373
|
+
_this.$fault = "client";
|
|
374
|
+
Object.setPrototypeOf(_this, DBParameterGroupQuotaExceededFault.prototype);
|
|
375
|
+
return _this;
|
|
376
|
+
}
|
|
377
|
+
return DBParameterGroupQuotaExceededFault;
|
|
378
|
+
}(__BaseException));
|
|
379
|
+
export { DBParameterGroupQuotaExceededFault };
|
|
103
380
|
export var CopyDBClusterSnapshotMessage;
|
|
104
381
|
(function (CopyDBClusterSnapshotMessage) {
|
|
105
382
|
CopyDBClusterSnapshotMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -112,6 +389,66 @@ export var CopyDBClusterSnapshotResult;
|
|
|
112
389
|
(function (CopyDBClusterSnapshotResult) {
|
|
113
390
|
CopyDBClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
114
391
|
})(CopyDBClusterSnapshotResult || (CopyDBClusterSnapshotResult = {}));
|
|
392
|
+
var DBClusterSnapshotAlreadyExistsFault = (function (_super) {
|
|
393
|
+
__extends(DBClusterSnapshotAlreadyExistsFault, _super);
|
|
394
|
+
function DBClusterSnapshotAlreadyExistsFault(opts) {
|
|
395
|
+
var _this = _super.call(this, __assign({ name: "DBClusterSnapshotAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
396
|
+
_this.name = "DBClusterSnapshotAlreadyExistsFault";
|
|
397
|
+
_this.$fault = "client";
|
|
398
|
+
Object.setPrototypeOf(_this, DBClusterSnapshotAlreadyExistsFault.prototype);
|
|
399
|
+
return _this;
|
|
400
|
+
}
|
|
401
|
+
return DBClusterSnapshotAlreadyExistsFault;
|
|
402
|
+
}(__BaseException));
|
|
403
|
+
export { DBClusterSnapshotAlreadyExistsFault };
|
|
404
|
+
var DBClusterSnapshotNotFoundFault = (function (_super) {
|
|
405
|
+
__extends(DBClusterSnapshotNotFoundFault, _super);
|
|
406
|
+
function DBClusterSnapshotNotFoundFault(opts) {
|
|
407
|
+
var _this = _super.call(this, __assign({ name: "DBClusterSnapshotNotFoundFault", $fault: "client" }, opts)) || this;
|
|
408
|
+
_this.name = "DBClusterSnapshotNotFoundFault";
|
|
409
|
+
_this.$fault = "client";
|
|
410
|
+
Object.setPrototypeOf(_this, DBClusterSnapshotNotFoundFault.prototype);
|
|
411
|
+
return _this;
|
|
412
|
+
}
|
|
413
|
+
return DBClusterSnapshotNotFoundFault;
|
|
414
|
+
}(__BaseException));
|
|
415
|
+
export { DBClusterSnapshotNotFoundFault };
|
|
416
|
+
var InvalidDBClusterSnapshotStateFault = (function (_super) {
|
|
417
|
+
__extends(InvalidDBClusterSnapshotStateFault, _super);
|
|
418
|
+
function InvalidDBClusterSnapshotStateFault(opts) {
|
|
419
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBClusterSnapshotStateFault", $fault: "client" }, opts)) || this;
|
|
420
|
+
_this.name = "InvalidDBClusterSnapshotStateFault";
|
|
421
|
+
_this.$fault = "client";
|
|
422
|
+
Object.setPrototypeOf(_this, InvalidDBClusterSnapshotStateFault.prototype);
|
|
423
|
+
return _this;
|
|
424
|
+
}
|
|
425
|
+
return InvalidDBClusterSnapshotStateFault;
|
|
426
|
+
}(__BaseException));
|
|
427
|
+
export { InvalidDBClusterSnapshotStateFault };
|
|
428
|
+
var KMSKeyNotAccessibleFault = (function (_super) {
|
|
429
|
+
__extends(KMSKeyNotAccessibleFault, _super);
|
|
430
|
+
function KMSKeyNotAccessibleFault(opts) {
|
|
431
|
+
var _this = _super.call(this, __assign({ name: "KMSKeyNotAccessibleFault", $fault: "client" }, opts)) || this;
|
|
432
|
+
_this.name = "KMSKeyNotAccessibleFault";
|
|
433
|
+
_this.$fault = "client";
|
|
434
|
+
Object.setPrototypeOf(_this, KMSKeyNotAccessibleFault.prototype);
|
|
435
|
+
return _this;
|
|
436
|
+
}
|
|
437
|
+
return KMSKeyNotAccessibleFault;
|
|
438
|
+
}(__BaseException));
|
|
439
|
+
export { KMSKeyNotAccessibleFault };
|
|
440
|
+
var SnapshotQuotaExceededFault = (function (_super) {
|
|
441
|
+
__extends(SnapshotQuotaExceededFault, _super);
|
|
442
|
+
function SnapshotQuotaExceededFault(opts) {
|
|
443
|
+
var _this = _super.call(this, __assign({ name: "SnapshotQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
444
|
+
_this.name = "SnapshotQuotaExceededFault";
|
|
445
|
+
_this.$fault = "client";
|
|
446
|
+
Object.setPrototypeOf(_this, SnapshotQuotaExceededFault.prototype);
|
|
447
|
+
return _this;
|
|
448
|
+
}
|
|
449
|
+
return SnapshotQuotaExceededFault;
|
|
450
|
+
}(__BaseException));
|
|
451
|
+
export { SnapshotQuotaExceededFault };
|
|
115
452
|
export var CopyDBParameterGroupMessage;
|
|
116
453
|
(function (CopyDBParameterGroupMessage) {
|
|
117
454
|
CopyDBParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -140,6 +477,42 @@ export var CopyDBSnapshotResult;
|
|
|
140
477
|
(function (CopyDBSnapshotResult) {
|
|
141
478
|
CopyDBSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
479
|
})(CopyDBSnapshotResult || (CopyDBSnapshotResult = {}));
|
|
480
|
+
var CustomAvailabilityZoneNotFoundFault = (function (_super) {
|
|
481
|
+
__extends(CustomAvailabilityZoneNotFoundFault, _super);
|
|
482
|
+
function CustomAvailabilityZoneNotFoundFault(opts) {
|
|
483
|
+
var _this = _super.call(this, __assign({ name: "CustomAvailabilityZoneNotFoundFault", $fault: "client" }, opts)) || this;
|
|
484
|
+
_this.name = "CustomAvailabilityZoneNotFoundFault";
|
|
485
|
+
_this.$fault = "client";
|
|
486
|
+
Object.setPrototypeOf(_this, CustomAvailabilityZoneNotFoundFault.prototype);
|
|
487
|
+
return _this;
|
|
488
|
+
}
|
|
489
|
+
return CustomAvailabilityZoneNotFoundFault;
|
|
490
|
+
}(__BaseException));
|
|
491
|
+
export { CustomAvailabilityZoneNotFoundFault };
|
|
492
|
+
var DBSnapshotAlreadyExistsFault = (function (_super) {
|
|
493
|
+
__extends(DBSnapshotAlreadyExistsFault, _super);
|
|
494
|
+
function DBSnapshotAlreadyExistsFault(opts) {
|
|
495
|
+
var _this = _super.call(this, __assign({ name: "DBSnapshotAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
496
|
+
_this.name = "DBSnapshotAlreadyExistsFault";
|
|
497
|
+
_this.$fault = "client";
|
|
498
|
+
Object.setPrototypeOf(_this, DBSnapshotAlreadyExistsFault.prototype);
|
|
499
|
+
return _this;
|
|
500
|
+
}
|
|
501
|
+
return DBSnapshotAlreadyExistsFault;
|
|
502
|
+
}(__BaseException));
|
|
503
|
+
export { DBSnapshotAlreadyExistsFault };
|
|
504
|
+
var InvalidDBSnapshotStateFault = (function (_super) {
|
|
505
|
+
__extends(InvalidDBSnapshotStateFault, _super);
|
|
506
|
+
function InvalidDBSnapshotStateFault(opts) {
|
|
507
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSnapshotStateFault", $fault: "client" }, opts)) || this;
|
|
508
|
+
_this.name = "InvalidDBSnapshotStateFault";
|
|
509
|
+
_this.$fault = "client";
|
|
510
|
+
Object.setPrototypeOf(_this, InvalidDBSnapshotStateFault.prototype);
|
|
511
|
+
return _this;
|
|
512
|
+
}
|
|
513
|
+
return InvalidDBSnapshotStateFault;
|
|
514
|
+
}(__BaseException));
|
|
515
|
+
export { InvalidDBSnapshotStateFault };
|
|
143
516
|
export var CopyOptionGroupMessage;
|
|
144
517
|
(function (CopyOptionGroupMessage) {
|
|
145
518
|
CopyOptionGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -168,6 +541,42 @@ export var CopyOptionGroupResult;
|
|
|
168
541
|
(function (CopyOptionGroupResult) {
|
|
169
542
|
CopyOptionGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
543
|
})(CopyOptionGroupResult || (CopyOptionGroupResult = {}));
|
|
544
|
+
var OptionGroupAlreadyExistsFault = (function (_super) {
|
|
545
|
+
__extends(OptionGroupAlreadyExistsFault, _super);
|
|
546
|
+
function OptionGroupAlreadyExistsFault(opts) {
|
|
547
|
+
var _this = _super.call(this, __assign({ name: "OptionGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
548
|
+
_this.name = "OptionGroupAlreadyExistsFault";
|
|
549
|
+
_this.$fault = "client";
|
|
550
|
+
Object.setPrototypeOf(_this, OptionGroupAlreadyExistsFault.prototype);
|
|
551
|
+
return _this;
|
|
552
|
+
}
|
|
553
|
+
return OptionGroupAlreadyExistsFault;
|
|
554
|
+
}(__BaseException));
|
|
555
|
+
export { OptionGroupAlreadyExistsFault };
|
|
556
|
+
var OptionGroupNotFoundFault = (function (_super) {
|
|
557
|
+
__extends(OptionGroupNotFoundFault, _super);
|
|
558
|
+
function OptionGroupNotFoundFault(opts) {
|
|
559
|
+
var _this = _super.call(this, __assign({ name: "OptionGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
560
|
+
_this.name = "OptionGroupNotFoundFault";
|
|
561
|
+
_this.$fault = "client";
|
|
562
|
+
Object.setPrototypeOf(_this, OptionGroupNotFoundFault.prototype);
|
|
563
|
+
return _this;
|
|
564
|
+
}
|
|
565
|
+
return OptionGroupNotFoundFault;
|
|
566
|
+
}(__BaseException));
|
|
567
|
+
export { OptionGroupNotFoundFault };
|
|
568
|
+
var OptionGroupQuotaExceededFault = (function (_super) {
|
|
569
|
+
__extends(OptionGroupQuotaExceededFault, _super);
|
|
570
|
+
function OptionGroupQuotaExceededFault(opts) {
|
|
571
|
+
var _this = _super.call(this, __assign({ name: "OptionGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
572
|
+
_this.name = "OptionGroupQuotaExceededFault";
|
|
573
|
+
_this.$fault = "client";
|
|
574
|
+
Object.setPrototypeOf(_this, OptionGroupQuotaExceededFault.prototype);
|
|
575
|
+
return _this;
|
|
576
|
+
}
|
|
577
|
+
return OptionGroupQuotaExceededFault;
|
|
578
|
+
}(__BaseException));
|
|
579
|
+
export { OptionGroupQuotaExceededFault };
|
|
171
580
|
export var CreateCustomAvailabilityZoneMessage;
|
|
172
581
|
(function (CreateCustomAvailabilityZoneMessage) {
|
|
173
582
|
CreateCustomAvailabilityZoneMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -186,10 +595,58 @@ export var CreateCustomAvailabilityZoneResult;
|
|
|
186
595
|
CustomAvailabilityZone: CustomAvailabilityZone.filterSensitiveLog(obj.CustomAvailabilityZone),
|
|
187
596
|
}))); };
|
|
188
597
|
})(CreateCustomAvailabilityZoneResult || (CreateCustomAvailabilityZoneResult = {}));
|
|
598
|
+
var CustomAvailabilityZoneAlreadyExistsFault = (function (_super) {
|
|
599
|
+
__extends(CustomAvailabilityZoneAlreadyExistsFault, _super);
|
|
600
|
+
function CustomAvailabilityZoneAlreadyExistsFault(opts) {
|
|
601
|
+
var _this = _super.call(this, __assign({ name: "CustomAvailabilityZoneAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
602
|
+
_this.name = "CustomAvailabilityZoneAlreadyExistsFault";
|
|
603
|
+
_this.$fault = "client";
|
|
604
|
+
Object.setPrototypeOf(_this, CustomAvailabilityZoneAlreadyExistsFault.prototype);
|
|
605
|
+
return _this;
|
|
606
|
+
}
|
|
607
|
+
return CustomAvailabilityZoneAlreadyExistsFault;
|
|
608
|
+
}(__BaseException));
|
|
609
|
+
export { CustomAvailabilityZoneAlreadyExistsFault };
|
|
610
|
+
var CustomAvailabilityZoneQuotaExceededFault = (function (_super) {
|
|
611
|
+
__extends(CustomAvailabilityZoneQuotaExceededFault, _super);
|
|
612
|
+
function CustomAvailabilityZoneQuotaExceededFault(opts) {
|
|
613
|
+
var _this = _super.call(this, __assign({ name: "CustomAvailabilityZoneQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
614
|
+
_this.name = "CustomAvailabilityZoneQuotaExceededFault";
|
|
615
|
+
_this.$fault = "client";
|
|
616
|
+
Object.setPrototypeOf(_this, CustomAvailabilityZoneQuotaExceededFault.prototype);
|
|
617
|
+
return _this;
|
|
618
|
+
}
|
|
619
|
+
return CustomAvailabilityZoneQuotaExceededFault;
|
|
620
|
+
}(__BaseException));
|
|
621
|
+
export { CustomAvailabilityZoneQuotaExceededFault };
|
|
189
622
|
export var CreateCustomDBEngineVersionMessage;
|
|
190
623
|
(function (CreateCustomDBEngineVersionMessage) {
|
|
191
624
|
CreateCustomDBEngineVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
625
|
})(CreateCustomDBEngineVersionMessage || (CreateCustomDBEngineVersionMessage = {}));
|
|
626
|
+
var CustomDBEngineVersionAlreadyExistsFault = (function (_super) {
|
|
627
|
+
__extends(CustomDBEngineVersionAlreadyExistsFault, _super);
|
|
628
|
+
function CustomDBEngineVersionAlreadyExistsFault(opts) {
|
|
629
|
+
var _this = _super.call(this, __assign({ name: "CustomDBEngineVersionAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
630
|
+
_this.name = "CustomDBEngineVersionAlreadyExistsFault";
|
|
631
|
+
_this.$fault = "client";
|
|
632
|
+
Object.setPrototypeOf(_this, CustomDBEngineVersionAlreadyExistsFault.prototype);
|
|
633
|
+
return _this;
|
|
634
|
+
}
|
|
635
|
+
return CustomDBEngineVersionAlreadyExistsFault;
|
|
636
|
+
}(__BaseException));
|
|
637
|
+
export { CustomDBEngineVersionAlreadyExistsFault };
|
|
638
|
+
var CustomDBEngineVersionQuotaExceededFault = (function (_super) {
|
|
639
|
+
__extends(CustomDBEngineVersionQuotaExceededFault, _super);
|
|
640
|
+
function CustomDBEngineVersionQuotaExceededFault(opts) {
|
|
641
|
+
var _this = _super.call(this, __assign({ name: "CustomDBEngineVersionQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
642
|
+
_this.name = "CustomDBEngineVersionQuotaExceededFault";
|
|
643
|
+
_this.$fault = "client";
|
|
644
|
+
Object.setPrototypeOf(_this, CustomDBEngineVersionQuotaExceededFault.prototype);
|
|
645
|
+
return _this;
|
|
646
|
+
}
|
|
647
|
+
return CustomDBEngineVersionQuotaExceededFault;
|
|
648
|
+
}(__BaseException));
|
|
649
|
+
export { CustomDBEngineVersionQuotaExceededFault };
|
|
193
650
|
export var CharacterSet;
|
|
194
651
|
(function (CharacterSet) {
|
|
195
652
|
CharacterSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -258,6 +715,162 @@ export var CreateDBClusterResult;
|
|
|
258
715
|
(function (CreateDBClusterResult) {
|
|
259
716
|
CreateDBClusterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
717
|
})(CreateDBClusterResult || (CreateDBClusterResult = {}));
|
|
718
|
+
var DBClusterAlreadyExistsFault = (function (_super) {
|
|
719
|
+
__extends(DBClusterAlreadyExistsFault, _super);
|
|
720
|
+
function DBClusterAlreadyExistsFault(opts) {
|
|
721
|
+
var _this = _super.call(this, __assign({ name: "DBClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
722
|
+
_this.name = "DBClusterAlreadyExistsFault";
|
|
723
|
+
_this.$fault = "client";
|
|
724
|
+
Object.setPrototypeOf(_this, DBClusterAlreadyExistsFault.prototype);
|
|
725
|
+
return _this;
|
|
726
|
+
}
|
|
727
|
+
return DBClusterAlreadyExistsFault;
|
|
728
|
+
}(__BaseException));
|
|
729
|
+
export { DBClusterAlreadyExistsFault };
|
|
730
|
+
var DBClusterParameterGroupNotFoundFault = (function (_super) {
|
|
731
|
+
__extends(DBClusterParameterGroupNotFoundFault, _super);
|
|
732
|
+
function DBClusterParameterGroupNotFoundFault(opts) {
|
|
733
|
+
var _this = _super.call(this, __assign({ name: "DBClusterParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
734
|
+
_this.name = "DBClusterParameterGroupNotFoundFault";
|
|
735
|
+
_this.$fault = "client";
|
|
736
|
+
Object.setPrototypeOf(_this, DBClusterParameterGroupNotFoundFault.prototype);
|
|
737
|
+
return _this;
|
|
738
|
+
}
|
|
739
|
+
return DBClusterParameterGroupNotFoundFault;
|
|
740
|
+
}(__BaseException));
|
|
741
|
+
export { DBClusterParameterGroupNotFoundFault };
|
|
742
|
+
var DBClusterQuotaExceededFault = (function (_super) {
|
|
743
|
+
__extends(DBClusterQuotaExceededFault, _super);
|
|
744
|
+
function DBClusterQuotaExceededFault(opts) {
|
|
745
|
+
var _this = _super.call(this, __assign({ name: "DBClusterQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
746
|
+
_this.name = "DBClusterQuotaExceededFault";
|
|
747
|
+
_this.$fault = "client";
|
|
748
|
+
Object.setPrototypeOf(_this, DBClusterQuotaExceededFault.prototype);
|
|
749
|
+
return _this;
|
|
750
|
+
}
|
|
751
|
+
return DBClusterQuotaExceededFault;
|
|
752
|
+
}(__BaseException));
|
|
753
|
+
export { DBClusterQuotaExceededFault };
|
|
754
|
+
var DBSubnetGroupDoesNotCoverEnoughAZs = (function (_super) {
|
|
755
|
+
__extends(DBSubnetGroupDoesNotCoverEnoughAZs, _super);
|
|
756
|
+
function DBSubnetGroupDoesNotCoverEnoughAZs(opts) {
|
|
757
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupDoesNotCoverEnoughAZs", $fault: "client" }, opts)) || this;
|
|
758
|
+
_this.name = "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
759
|
+
_this.$fault = "client";
|
|
760
|
+
Object.setPrototypeOf(_this, DBSubnetGroupDoesNotCoverEnoughAZs.prototype);
|
|
761
|
+
return _this;
|
|
762
|
+
}
|
|
763
|
+
return DBSubnetGroupDoesNotCoverEnoughAZs;
|
|
764
|
+
}(__BaseException));
|
|
765
|
+
export { DBSubnetGroupDoesNotCoverEnoughAZs };
|
|
766
|
+
var DBSubnetGroupNotFoundFault = (function (_super) {
|
|
767
|
+
__extends(DBSubnetGroupNotFoundFault, _super);
|
|
768
|
+
function DBSubnetGroupNotFoundFault(opts) {
|
|
769
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
770
|
+
_this.name = "DBSubnetGroupNotFoundFault";
|
|
771
|
+
_this.$fault = "client";
|
|
772
|
+
Object.setPrototypeOf(_this, DBSubnetGroupNotFoundFault.prototype);
|
|
773
|
+
return _this;
|
|
774
|
+
}
|
|
775
|
+
return DBSubnetGroupNotFoundFault;
|
|
776
|
+
}(__BaseException));
|
|
777
|
+
export { DBSubnetGroupNotFoundFault };
|
|
778
|
+
var DomainNotFoundFault = (function (_super) {
|
|
779
|
+
__extends(DomainNotFoundFault, _super);
|
|
780
|
+
function DomainNotFoundFault(opts) {
|
|
781
|
+
var _this = _super.call(this, __assign({ name: "DomainNotFoundFault", $fault: "client" }, opts)) || this;
|
|
782
|
+
_this.name = "DomainNotFoundFault";
|
|
783
|
+
_this.$fault = "client";
|
|
784
|
+
Object.setPrototypeOf(_this, DomainNotFoundFault.prototype);
|
|
785
|
+
return _this;
|
|
786
|
+
}
|
|
787
|
+
return DomainNotFoundFault;
|
|
788
|
+
}(__BaseException));
|
|
789
|
+
export { DomainNotFoundFault };
|
|
790
|
+
var GlobalClusterNotFoundFault = (function (_super) {
|
|
791
|
+
__extends(GlobalClusterNotFoundFault, _super);
|
|
792
|
+
function GlobalClusterNotFoundFault(opts) {
|
|
793
|
+
var _this = _super.call(this, __assign({ name: "GlobalClusterNotFoundFault", $fault: "client" }, opts)) || this;
|
|
794
|
+
_this.name = "GlobalClusterNotFoundFault";
|
|
795
|
+
_this.$fault = "client";
|
|
796
|
+
Object.setPrototypeOf(_this, GlobalClusterNotFoundFault.prototype);
|
|
797
|
+
return _this;
|
|
798
|
+
}
|
|
799
|
+
return GlobalClusterNotFoundFault;
|
|
800
|
+
}(__BaseException));
|
|
801
|
+
export { GlobalClusterNotFoundFault };
|
|
802
|
+
var InsufficientStorageClusterCapacityFault = (function (_super) {
|
|
803
|
+
__extends(InsufficientStorageClusterCapacityFault, _super);
|
|
804
|
+
function InsufficientStorageClusterCapacityFault(opts) {
|
|
805
|
+
var _this = _super.call(this, __assign({ name: "InsufficientStorageClusterCapacityFault", $fault: "client" }, opts)) || this;
|
|
806
|
+
_this.name = "InsufficientStorageClusterCapacityFault";
|
|
807
|
+
_this.$fault = "client";
|
|
808
|
+
Object.setPrototypeOf(_this, InsufficientStorageClusterCapacityFault.prototype);
|
|
809
|
+
return _this;
|
|
810
|
+
}
|
|
811
|
+
return InsufficientStorageClusterCapacityFault;
|
|
812
|
+
}(__BaseException));
|
|
813
|
+
export { InsufficientStorageClusterCapacityFault };
|
|
814
|
+
var InvalidDBSubnetGroupStateFault = (function (_super) {
|
|
815
|
+
__extends(InvalidDBSubnetGroupStateFault, _super);
|
|
816
|
+
function InvalidDBSubnetGroupStateFault(opts) {
|
|
817
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSubnetGroupStateFault", $fault: "client" }, opts)) || this;
|
|
818
|
+
_this.name = "InvalidDBSubnetGroupStateFault";
|
|
819
|
+
_this.$fault = "client";
|
|
820
|
+
Object.setPrototypeOf(_this, InvalidDBSubnetGroupStateFault.prototype);
|
|
821
|
+
return _this;
|
|
822
|
+
}
|
|
823
|
+
return InvalidDBSubnetGroupStateFault;
|
|
824
|
+
}(__BaseException));
|
|
825
|
+
export { InvalidDBSubnetGroupStateFault };
|
|
826
|
+
var InvalidGlobalClusterStateFault = (function (_super) {
|
|
827
|
+
__extends(InvalidGlobalClusterStateFault, _super);
|
|
828
|
+
function InvalidGlobalClusterStateFault(opts) {
|
|
829
|
+
var _this = _super.call(this, __assign({ name: "InvalidGlobalClusterStateFault", $fault: "client" }, opts)) || this;
|
|
830
|
+
_this.name = "InvalidGlobalClusterStateFault";
|
|
831
|
+
_this.$fault = "client";
|
|
832
|
+
Object.setPrototypeOf(_this, InvalidGlobalClusterStateFault.prototype);
|
|
833
|
+
return _this;
|
|
834
|
+
}
|
|
835
|
+
return InvalidGlobalClusterStateFault;
|
|
836
|
+
}(__BaseException));
|
|
837
|
+
export { InvalidGlobalClusterStateFault };
|
|
838
|
+
var InvalidSubnet = (function (_super) {
|
|
839
|
+
__extends(InvalidSubnet, _super);
|
|
840
|
+
function InvalidSubnet(opts) {
|
|
841
|
+
var _this = _super.call(this, __assign({ name: "InvalidSubnet", $fault: "client" }, opts)) || this;
|
|
842
|
+
_this.name = "InvalidSubnet";
|
|
843
|
+
_this.$fault = "client";
|
|
844
|
+
Object.setPrototypeOf(_this, InvalidSubnet.prototype);
|
|
845
|
+
return _this;
|
|
846
|
+
}
|
|
847
|
+
return InvalidSubnet;
|
|
848
|
+
}(__BaseException));
|
|
849
|
+
export { InvalidSubnet };
|
|
850
|
+
var InvalidVPCNetworkStateFault = (function (_super) {
|
|
851
|
+
__extends(InvalidVPCNetworkStateFault, _super);
|
|
852
|
+
function InvalidVPCNetworkStateFault(opts) {
|
|
853
|
+
var _this = _super.call(this, __assign({ name: "InvalidVPCNetworkStateFault", $fault: "client" }, opts)) || this;
|
|
854
|
+
_this.name = "InvalidVPCNetworkStateFault";
|
|
855
|
+
_this.$fault = "client";
|
|
856
|
+
Object.setPrototypeOf(_this, InvalidVPCNetworkStateFault.prototype);
|
|
857
|
+
return _this;
|
|
858
|
+
}
|
|
859
|
+
return InvalidVPCNetworkStateFault;
|
|
860
|
+
}(__BaseException));
|
|
861
|
+
export { InvalidVPCNetworkStateFault };
|
|
862
|
+
var StorageQuotaExceededFault = (function (_super) {
|
|
863
|
+
__extends(StorageQuotaExceededFault, _super);
|
|
864
|
+
function StorageQuotaExceededFault(opts) {
|
|
865
|
+
var _this = _super.call(this, __assign({ name: "StorageQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
866
|
+
_this.name = "StorageQuotaExceededFault";
|
|
867
|
+
_this.$fault = "client";
|
|
868
|
+
Object.setPrototypeOf(_this, StorageQuotaExceededFault.prototype);
|
|
869
|
+
return _this;
|
|
870
|
+
}
|
|
871
|
+
return StorageQuotaExceededFault;
|
|
872
|
+
}(__BaseException));
|
|
873
|
+
export { StorageQuotaExceededFault };
|
|
261
874
|
export var CreateDBClusterEndpointMessage;
|
|
262
875
|
(function (CreateDBClusterEndpointMessage) {
|
|
263
876
|
CreateDBClusterEndpointMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -266,6 +879,30 @@ export var DBClusterEndpoint;
|
|
|
266
879
|
(function (DBClusterEndpoint) {
|
|
267
880
|
DBClusterEndpoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
881
|
})(DBClusterEndpoint || (DBClusterEndpoint = {}));
|
|
882
|
+
var DBClusterEndpointAlreadyExistsFault = (function (_super) {
|
|
883
|
+
__extends(DBClusterEndpointAlreadyExistsFault, _super);
|
|
884
|
+
function DBClusterEndpointAlreadyExistsFault(opts) {
|
|
885
|
+
var _this = _super.call(this, __assign({ name: "DBClusterEndpointAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
886
|
+
_this.name = "DBClusterEndpointAlreadyExistsFault";
|
|
887
|
+
_this.$fault = "client";
|
|
888
|
+
Object.setPrototypeOf(_this, DBClusterEndpointAlreadyExistsFault.prototype);
|
|
889
|
+
return _this;
|
|
890
|
+
}
|
|
891
|
+
return DBClusterEndpointAlreadyExistsFault;
|
|
892
|
+
}(__BaseException));
|
|
893
|
+
export { DBClusterEndpointAlreadyExistsFault };
|
|
894
|
+
var DBClusterEndpointQuotaExceededFault = (function (_super) {
|
|
895
|
+
__extends(DBClusterEndpointQuotaExceededFault, _super);
|
|
896
|
+
function DBClusterEndpointQuotaExceededFault(opts) {
|
|
897
|
+
var _this = _super.call(this, __assign({ name: "DBClusterEndpointQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
898
|
+
_this.name = "DBClusterEndpointQuotaExceededFault";
|
|
899
|
+
_this.$fault = "client";
|
|
900
|
+
Object.setPrototypeOf(_this, DBClusterEndpointQuotaExceededFault.prototype);
|
|
901
|
+
return _this;
|
|
902
|
+
}
|
|
903
|
+
return DBClusterEndpointQuotaExceededFault;
|
|
904
|
+
}(__BaseException));
|
|
905
|
+
export { DBClusterEndpointQuotaExceededFault };
|
|
269
906
|
export var CreateDBClusterParameterGroupMessage;
|
|
270
907
|
(function (CreateDBClusterParameterGroupMessage) {
|
|
271
908
|
CreateDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -282,6 +919,30 @@ export var CreateDBClusterSnapshotResult;
|
|
|
282
919
|
(function (CreateDBClusterSnapshotResult) {
|
|
283
920
|
CreateDBClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
921
|
})(CreateDBClusterSnapshotResult || (CreateDBClusterSnapshotResult = {}));
|
|
922
|
+
var AuthorizationNotFoundFault = (function (_super) {
|
|
923
|
+
__extends(AuthorizationNotFoundFault, _super);
|
|
924
|
+
function AuthorizationNotFoundFault(opts) {
|
|
925
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationNotFoundFault", $fault: "client" }, opts)) || this;
|
|
926
|
+
_this.name = "AuthorizationNotFoundFault";
|
|
927
|
+
_this.$fault = "client";
|
|
928
|
+
Object.setPrototypeOf(_this, AuthorizationNotFoundFault.prototype);
|
|
929
|
+
return _this;
|
|
930
|
+
}
|
|
931
|
+
return AuthorizationNotFoundFault;
|
|
932
|
+
}(__BaseException));
|
|
933
|
+
export { AuthorizationNotFoundFault };
|
|
934
|
+
var BackupPolicyNotFoundFault = (function (_super) {
|
|
935
|
+
__extends(BackupPolicyNotFoundFault, _super);
|
|
936
|
+
function BackupPolicyNotFoundFault(opts) {
|
|
937
|
+
var _this = _super.call(this, __assign({ name: "BackupPolicyNotFoundFault", $fault: "client" }, opts)) || this;
|
|
938
|
+
_this.name = "BackupPolicyNotFoundFault";
|
|
939
|
+
_this.$fault = "client";
|
|
940
|
+
Object.setPrototypeOf(_this, BackupPolicyNotFoundFault.prototype);
|
|
941
|
+
return _this;
|
|
942
|
+
}
|
|
943
|
+
return BackupPolicyNotFoundFault;
|
|
944
|
+
}(__BaseException));
|
|
945
|
+
export { BackupPolicyNotFoundFault };
|
|
285
946
|
export var CreateDBInstanceMessage;
|
|
286
947
|
(function (CreateDBInstanceMessage) {
|
|
287
948
|
CreateDBInstanceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -348,6 +1009,66 @@ export var CreateDBInstanceResult;
|
|
|
348
1009
|
(function (CreateDBInstanceResult) {
|
|
349
1010
|
CreateDBInstanceResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
1011
|
})(CreateDBInstanceResult || (CreateDBInstanceResult = {}));
|
|
1012
|
+
var DBInstanceAlreadyExistsFault = (function (_super) {
|
|
1013
|
+
__extends(DBInstanceAlreadyExistsFault, _super);
|
|
1014
|
+
function DBInstanceAlreadyExistsFault(opts) {
|
|
1015
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1016
|
+
_this.name = "DBInstanceAlreadyExistsFault";
|
|
1017
|
+
_this.$fault = "client";
|
|
1018
|
+
Object.setPrototypeOf(_this, DBInstanceAlreadyExistsFault.prototype);
|
|
1019
|
+
return _this;
|
|
1020
|
+
}
|
|
1021
|
+
return DBInstanceAlreadyExistsFault;
|
|
1022
|
+
}(__BaseException));
|
|
1023
|
+
export { DBInstanceAlreadyExistsFault };
|
|
1024
|
+
var InstanceQuotaExceededFault = (function (_super) {
|
|
1025
|
+
__extends(InstanceQuotaExceededFault, _super);
|
|
1026
|
+
function InstanceQuotaExceededFault(opts) {
|
|
1027
|
+
var _this = _super.call(this, __assign({ name: "InstanceQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1028
|
+
_this.name = "InstanceQuotaExceededFault";
|
|
1029
|
+
_this.$fault = "client";
|
|
1030
|
+
Object.setPrototypeOf(_this, InstanceQuotaExceededFault.prototype);
|
|
1031
|
+
return _this;
|
|
1032
|
+
}
|
|
1033
|
+
return InstanceQuotaExceededFault;
|
|
1034
|
+
}(__BaseException));
|
|
1035
|
+
export { InstanceQuotaExceededFault };
|
|
1036
|
+
var InsufficientDBInstanceCapacityFault = (function (_super) {
|
|
1037
|
+
__extends(InsufficientDBInstanceCapacityFault, _super);
|
|
1038
|
+
function InsufficientDBInstanceCapacityFault(opts) {
|
|
1039
|
+
var _this = _super.call(this, __assign({ name: "InsufficientDBInstanceCapacityFault", $fault: "client" }, opts)) || this;
|
|
1040
|
+
_this.name = "InsufficientDBInstanceCapacityFault";
|
|
1041
|
+
_this.$fault = "client";
|
|
1042
|
+
Object.setPrototypeOf(_this, InsufficientDBInstanceCapacityFault.prototype);
|
|
1043
|
+
return _this;
|
|
1044
|
+
}
|
|
1045
|
+
return InsufficientDBInstanceCapacityFault;
|
|
1046
|
+
}(__BaseException));
|
|
1047
|
+
export { InsufficientDBInstanceCapacityFault };
|
|
1048
|
+
var ProvisionedIopsNotAvailableInAZFault = (function (_super) {
|
|
1049
|
+
__extends(ProvisionedIopsNotAvailableInAZFault, _super);
|
|
1050
|
+
function ProvisionedIopsNotAvailableInAZFault(opts) {
|
|
1051
|
+
var _this = _super.call(this, __assign({ name: "ProvisionedIopsNotAvailableInAZFault", $fault: "client" }, opts)) || this;
|
|
1052
|
+
_this.name = "ProvisionedIopsNotAvailableInAZFault";
|
|
1053
|
+
_this.$fault = "client";
|
|
1054
|
+
Object.setPrototypeOf(_this, ProvisionedIopsNotAvailableInAZFault.prototype);
|
|
1055
|
+
return _this;
|
|
1056
|
+
}
|
|
1057
|
+
return ProvisionedIopsNotAvailableInAZFault;
|
|
1058
|
+
}(__BaseException));
|
|
1059
|
+
export { ProvisionedIopsNotAvailableInAZFault };
|
|
1060
|
+
var StorageTypeNotSupportedFault = (function (_super) {
|
|
1061
|
+
__extends(StorageTypeNotSupportedFault, _super);
|
|
1062
|
+
function StorageTypeNotSupportedFault(opts) {
|
|
1063
|
+
var _this = _super.call(this, __assign({ name: "StorageTypeNotSupportedFault", $fault: "client" }, opts)) || this;
|
|
1064
|
+
_this.name = "StorageTypeNotSupportedFault";
|
|
1065
|
+
_this.$fault = "client";
|
|
1066
|
+
Object.setPrototypeOf(_this, StorageTypeNotSupportedFault.prototype);
|
|
1067
|
+
return _this;
|
|
1068
|
+
}
|
|
1069
|
+
return StorageTypeNotSupportedFault;
|
|
1070
|
+
}(__BaseException));
|
|
1071
|
+
export { StorageTypeNotSupportedFault };
|
|
351
1072
|
export var CreateDBInstanceReadReplicaMessage;
|
|
352
1073
|
(function (CreateDBInstanceReadReplicaMessage) {
|
|
353
1074
|
CreateDBInstanceReadReplicaMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -356,6 +1077,30 @@ export var CreateDBInstanceReadReplicaResult;
|
|
|
356
1077
|
(function (CreateDBInstanceReadReplicaResult) {
|
|
357
1078
|
CreateDBInstanceReadReplicaResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
1079
|
})(CreateDBInstanceReadReplicaResult || (CreateDBInstanceReadReplicaResult = {}));
|
|
1080
|
+
var DBSubnetGroupNotAllowedFault = (function (_super) {
|
|
1081
|
+
__extends(DBSubnetGroupNotAllowedFault, _super);
|
|
1082
|
+
function DBSubnetGroupNotAllowedFault(opts) {
|
|
1083
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupNotAllowedFault", $fault: "client" }, opts)) || this;
|
|
1084
|
+
_this.name = "DBSubnetGroupNotAllowedFault";
|
|
1085
|
+
_this.$fault = "client";
|
|
1086
|
+
Object.setPrototypeOf(_this, DBSubnetGroupNotAllowedFault.prototype);
|
|
1087
|
+
return _this;
|
|
1088
|
+
}
|
|
1089
|
+
return DBSubnetGroupNotAllowedFault;
|
|
1090
|
+
}(__BaseException));
|
|
1091
|
+
export { DBSubnetGroupNotAllowedFault };
|
|
1092
|
+
var InvalidDBSubnetGroupFault = (function (_super) {
|
|
1093
|
+
__extends(InvalidDBSubnetGroupFault, _super);
|
|
1094
|
+
function InvalidDBSubnetGroupFault(opts) {
|
|
1095
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSubnetGroupFault", $fault: "client" }, opts)) || this;
|
|
1096
|
+
_this.name = "InvalidDBSubnetGroupFault";
|
|
1097
|
+
_this.$fault = "client";
|
|
1098
|
+
Object.setPrototypeOf(_this, InvalidDBSubnetGroupFault.prototype);
|
|
1099
|
+
return _this;
|
|
1100
|
+
}
|
|
1101
|
+
return InvalidDBSubnetGroupFault;
|
|
1102
|
+
}(__BaseException));
|
|
1103
|
+
export { InvalidDBSubnetGroupFault };
|
|
359
1104
|
export var CreateDBParameterGroupMessage;
|
|
360
1105
|
(function (CreateDBParameterGroupMessage) {
|
|
361
1106
|
CreateDBParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -410,6 +1155,30 @@ export var CreateDBProxyResponse;
|
|
|
410
1155
|
(function (CreateDBProxyResponse) {
|
|
411
1156
|
CreateDBProxyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
412
1157
|
})(CreateDBProxyResponse || (CreateDBProxyResponse = {}));
|
|
1158
|
+
var DBProxyAlreadyExistsFault = (function (_super) {
|
|
1159
|
+
__extends(DBProxyAlreadyExistsFault, _super);
|
|
1160
|
+
function DBProxyAlreadyExistsFault(opts) {
|
|
1161
|
+
var _this = _super.call(this, __assign({ name: "DBProxyAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1162
|
+
_this.name = "DBProxyAlreadyExistsFault";
|
|
1163
|
+
_this.$fault = "client";
|
|
1164
|
+
Object.setPrototypeOf(_this, DBProxyAlreadyExistsFault.prototype);
|
|
1165
|
+
return _this;
|
|
1166
|
+
}
|
|
1167
|
+
return DBProxyAlreadyExistsFault;
|
|
1168
|
+
}(__BaseException));
|
|
1169
|
+
export { DBProxyAlreadyExistsFault };
|
|
1170
|
+
var DBProxyQuotaExceededFault = (function (_super) {
|
|
1171
|
+
__extends(DBProxyQuotaExceededFault, _super);
|
|
1172
|
+
function DBProxyQuotaExceededFault(opts) {
|
|
1173
|
+
var _this = _super.call(this, __assign({ name: "DBProxyQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1174
|
+
_this.name = "DBProxyQuotaExceededFault";
|
|
1175
|
+
_this.$fault = "client";
|
|
1176
|
+
Object.setPrototypeOf(_this, DBProxyQuotaExceededFault.prototype);
|
|
1177
|
+
return _this;
|
|
1178
|
+
}
|
|
1179
|
+
return DBProxyQuotaExceededFault;
|
|
1180
|
+
}(__BaseException));
|
|
1181
|
+
export { DBProxyQuotaExceededFault };
|
|
413
1182
|
export var DBProxyEndpointTargetRole;
|
|
414
1183
|
(function (DBProxyEndpointTargetRole) {
|
|
415
1184
|
DBProxyEndpointTargetRole["READ_ONLY"] = "READ_ONLY";
|
|
@@ -436,6 +1205,42 @@ export var CreateDBProxyEndpointResponse;
|
|
|
436
1205
|
(function (CreateDBProxyEndpointResponse) {
|
|
437
1206
|
CreateDBProxyEndpointResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
1207
|
})(CreateDBProxyEndpointResponse || (CreateDBProxyEndpointResponse = {}));
|
|
1208
|
+
var DBProxyEndpointAlreadyExistsFault = (function (_super) {
|
|
1209
|
+
__extends(DBProxyEndpointAlreadyExistsFault, _super);
|
|
1210
|
+
function DBProxyEndpointAlreadyExistsFault(opts) {
|
|
1211
|
+
var _this = _super.call(this, __assign({ name: "DBProxyEndpointAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1212
|
+
_this.name = "DBProxyEndpointAlreadyExistsFault";
|
|
1213
|
+
_this.$fault = "client";
|
|
1214
|
+
Object.setPrototypeOf(_this, DBProxyEndpointAlreadyExistsFault.prototype);
|
|
1215
|
+
return _this;
|
|
1216
|
+
}
|
|
1217
|
+
return DBProxyEndpointAlreadyExistsFault;
|
|
1218
|
+
}(__BaseException));
|
|
1219
|
+
export { DBProxyEndpointAlreadyExistsFault };
|
|
1220
|
+
var DBProxyEndpointQuotaExceededFault = (function (_super) {
|
|
1221
|
+
__extends(DBProxyEndpointQuotaExceededFault, _super);
|
|
1222
|
+
function DBProxyEndpointQuotaExceededFault(opts) {
|
|
1223
|
+
var _this = _super.call(this, __assign({ name: "DBProxyEndpointQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1224
|
+
_this.name = "DBProxyEndpointQuotaExceededFault";
|
|
1225
|
+
_this.$fault = "client";
|
|
1226
|
+
Object.setPrototypeOf(_this, DBProxyEndpointQuotaExceededFault.prototype);
|
|
1227
|
+
return _this;
|
|
1228
|
+
}
|
|
1229
|
+
return DBProxyEndpointQuotaExceededFault;
|
|
1230
|
+
}(__BaseException));
|
|
1231
|
+
export { DBProxyEndpointQuotaExceededFault };
|
|
1232
|
+
var InvalidDBProxyStateFault = (function (_super) {
|
|
1233
|
+
__extends(InvalidDBProxyStateFault, _super);
|
|
1234
|
+
function InvalidDBProxyStateFault(opts) {
|
|
1235
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBProxyStateFault", $fault: "client" }, opts)) || this;
|
|
1236
|
+
_this.name = "InvalidDBProxyStateFault";
|
|
1237
|
+
_this.$fault = "client";
|
|
1238
|
+
Object.setPrototypeOf(_this, InvalidDBProxyStateFault.prototype);
|
|
1239
|
+
return _this;
|
|
1240
|
+
}
|
|
1241
|
+
return InvalidDBProxyStateFault;
|
|
1242
|
+
}(__BaseException));
|
|
1243
|
+
export { InvalidDBProxyStateFault };
|
|
439
1244
|
export var CreateDBSecurityGroupMessage;
|
|
440
1245
|
(function (CreateDBSecurityGroupMessage) {
|
|
441
1246
|
CreateDBSecurityGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -444,6 +1249,42 @@ export var CreateDBSecurityGroupResult;
|
|
|
444
1249
|
(function (CreateDBSecurityGroupResult) {
|
|
445
1250
|
CreateDBSecurityGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
1251
|
})(CreateDBSecurityGroupResult || (CreateDBSecurityGroupResult = {}));
|
|
1252
|
+
var DBSecurityGroupAlreadyExistsFault = (function (_super) {
|
|
1253
|
+
__extends(DBSecurityGroupAlreadyExistsFault, _super);
|
|
1254
|
+
function DBSecurityGroupAlreadyExistsFault(opts) {
|
|
1255
|
+
var _this = _super.call(this, __assign({ name: "DBSecurityGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1256
|
+
_this.name = "DBSecurityGroupAlreadyExistsFault";
|
|
1257
|
+
_this.$fault = "client";
|
|
1258
|
+
Object.setPrototypeOf(_this, DBSecurityGroupAlreadyExistsFault.prototype);
|
|
1259
|
+
return _this;
|
|
1260
|
+
}
|
|
1261
|
+
return DBSecurityGroupAlreadyExistsFault;
|
|
1262
|
+
}(__BaseException));
|
|
1263
|
+
export { DBSecurityGroupAlreadyExistsFault };
|
|
1264
|
+
var DBSecurityGroupNotSupportedFault = (function (_super) {
|
|
1265
|
+
__extends(DBSecurityGroupNotSupportedFault, _super);
|
|
1266
|
+
function DBSecurityGroupNotSupportedFault(opts) {
|
|
1267
|
+
var _this = _super.call(this, __assign({ name: "DBSecurityGroupNotSupportedFault", $fault: "client" }, opts)) || this;
|
|
1268
|
+
_this.name = "DBSecurityGroupNotSupportedFault";
|
|
1269
|
+
_this.$fault = "client";
|
|
1270
|
+
Object.setPrototypeOf(_this, DBSecurityGroupNotSupportedFault.prototype);
|
|
1271
|
+
return _this;
|
|
1272
|
+
}
|
|
1273
|
+
return DBSecurityGroupNotSupportedFault;
|
|
1274
|
+
}(__BaseException));
|
|
1275
|
+
export { DBSecurityGroupNotSupportedFault };
|
|
1276
|
+
var DBSecurityGroupQuotaExceededFault = (function (_super) {
|
|
1277
|
+
__extends(DBSecurityGroupQuotaExceededFault, _super);
|
|
1278
|
+
function DBSecurityGroupQuotaExceededFault(opts) {
|
|
1279
|
+
var _this = _super.call(this, __assign({ name: "DBSecurityGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1280
|
+
_this.name = "DBSecurityGroupQuotaExceededFault";
|
|
1281
|
+
_this.$fault = "client";
|
|
1282
|
+
Object.setPrototypeOf(_this, DBSecurityGroupQuotaExceededFault.prototype);
|
|
1283
|
+
return _this;
|
|
1284
|
+
}
|
|
1285
|
+
return DBSecurityGroupQuotaExceededFault;
|
|
1286
|
+
}(__BaseException));
|
|
1287
|
+
export { DBSecurityGroupQuotaExceededFault };
|
|
447
1288
|
export var CreateDBSnapshotMessage;
|
|
448
1289
|
(function (CreateDBSnapshotMessage) {
|
|
449
1290
|
CreateDBSnapshotMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -460,6 +1301,42 @@ export var CreateDBSubnetGroupResult;
|
|
|
460
1301
|
(function (CreateDBSubnetGroupResult) {
|
|
461
1302
|
CreateDBSubnetGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
462
1303
|
})(CreateDBSubnetGroupResult || (CreateDBSubnetGroupResult = {}));
|
|
1304
|
+
var DBSubnetGroupAlreadyExistsFault = (function (_super) {
|
|
1305
|
+
__extends(DBSubnetGroupAlreadyExistsFault, _super);
|
|
1306
|
+
function DBSubnetGroupAlreadyExistsFault(opts) {
|
|
1307
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1308
|
+
_this.name = "DBSubnetGroupAlreadyExistsFault";
|
|
1309
|
+
_this.$fault = "client";
|
|
1310
|
+
Object.setPrototypeOf(_this, DBSubnetGroupAlreadyExistsFault.prototype);
|
|
1311
|
+
return _this;
|
|
1312
|
+
}
|
|
1313
|
+
return DBSubnetGroupAlreadyExistsFault;
|
|
1314
|
+
}(__BaseException));
|
|
1315
|
+
export { DBSubnetGroupAlreadyExistsFault };
|
|
1316
|
+
var DBSubnetGroupQuotaExceededFault = (function (_super) {
|
|
1317
|
+
__extends(DBSubnetGroupQuotaExceededFault, _super);
|
|
1318
|
+
function DBSubnetGroupQuotaExceededFault(opts) {
|
|
1319
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1320
|
+
_this.name = "DBSubnetGroupQuotaExceededFault";
|
|
1321
|
+
_this.$fault = "client";
|
|
1322
|
+
Object.setPrototypeOf(_this, DBSubnetGroupQuotaExceededFault.prototype);
|
|
1323
|
+
return _this;
|
|
1324
|
+
}
|
|
1325
|
+
return DBSubnetGroupQuotaExceededFault;
|
|
1326
|
+
}(__BaseException));
|
|
1327
|
+
export { DBSubnetGroupQuotaExceededFault };
|
|
1328
|
+
var DBSubnetQuotaExceededFault = (function (_super) {
|
|
1329
|
+
__extends(DBSubnetQuotaExceededFault, _super);
|
|
1330
|
+
function DBSubnetQuotaExceededFault(opts) {
|
|
1331
|
+
var _this = _super.call(this, __assign({ name: "DBSubnetQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1332
|
+
_this.name = "DBSubnetQuotaExceededFault";
|
|
1333
|
+
_this.$fault = "client";
|
|
1334
|
+
Object.setPrototypeOf(_this, DBSubnetQuotaExceededFault.prototype);
|
|
1335
|
+
return _this;
|
|
1336
|
+
}
|
|
1337
|
+
return DBSubnetQuotaExceededFault;
|
|
1338
|
+
}(__BaseException));
|
|
1339
|
+
export { DBSubnetQuotaExceededFault };
|
|
463
1340
|
export var CreateEventSubscriptionMessage;
|
|
464
1341
|
(function (CreateEventSubscriptionMessage) {
|
|
465
1342
|
CreateEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -468,6 +1345,78 @@ export var CreateEventSubscriptionResult;
|
|
|
468
1345
|
(function (CreateEventSubscriptionResult) {
|
|
469
1346
|
CreateEventSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
470
1347
|
})(CreateEventSubscriptionResult || (CreateEventSubscriptionResult = {}));
|
|
1348
|
+
var EventSubscriptionQuotaExceededFault = (function (_super) {
|
|
1349
|
+
__extends(EventSubscriptionQuotaExceededFault, _super);
|
|
1350
|
+
function EventSubscriptionQuotaExceededFault(opts) {
|
|
1351
|
+
var _this = _super.call(this, __assign({ name: "EventSubscriptionQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1352
|
+
_this.name = "EventSubscriptionQuotaExceededFault";
|
|
1353
|
+
_this.$fault = "client";
|
|
1354
|
+
Object.setPrototypeOf(_this, EventSubscriptionQuotaExceededFault.prototype);
|
|
1355
|
+
return _this;
|
|
1356
|
+
}
|
|
1357
|
+
return EventSubscriptionQuotaExceededFault;
|
|
1358
|
+
}(__BaseException));
|
|
1359
|
+
export { EventSubscriptionQuotaExceededFault };
|
|
1360
|
+
var SNSInvalidTopicFault = (function (_super) {
|
|
1361
|
+
__extends(SNSInvalidTopicFault, _super);
|
|
1362
|
+
function SNSInvalidTopicFault(opts) {
|
|
1363
|
+
var _this = _super.call(this, __assign({ name: "SNSInvalidTopicFault", $fault: "client" }, opts)) || this;
|
|
1364
|
+
_this.name = "SNSInvalidTopicFault";
|
|
1365
|
+
_this.$fault = "client";
|
|
1366
|
+
Object.setPrototypeOf(_this, SNSInvalidTopicFault.prototype);
|
|
1367
|
+
return _this;
|
|
1368
|
+
}
|
|
1369
|
+
return SNSInvalidTopicFault;
|
|
1370
|
+
}(__BaseException));
|
|
1371
|
+
export { SNSInvalidTopicFault };
|
|
1372
|
+
var SNSNoAuthorizationFault = (function (_super) {
|
|
1373
|
+
__extends(SNSNoAuthorizationFault, _super);
|
|
1374
|
+
function SNSNoAuthorizationFault(opts) {
|
|
1375
|
+
var _this = _super.call(this, __assign({ name: "SNSNoAuthorizationFault", $fault: "client" }, opts)) || this;
|
|
1376
|
+
_this.name = "SNSNoAuthorizationFault";
|
|
1377
|
+
_this.$fault = "client";
|
|
1378
|
+
Object.setPrototypeOf(_this, SNSNoAuthorizationFault.prototype);
|
|
1379
|
+
return _this;
|
|
1380
|
+
}
|
|
1381
|
+
return SNSNoAuthorizationFault;
|
|
1382
|
+
}(__BaseException));
|
|
1383
|
+
export { SNSNoAuthorizationFault };
|
|
1384
|
+
var SNSTopicArnNotFoundFault = (function (_super) {
|
|
1385
|
+
__extends(SNSTopicArnNotFoundFault, _super);
|
|
1386
|
+
function SNSTopicArnNotFoundFault(opts) {
|
|
1387
|
+
var _this = _super.call(this, __assign({ name: "SNSTopicArnNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1388
|
+
_this.name = "SNSTopicArnNotFoundFault";
|
|
1389
|
+
_this.$fault = "client";
|
|
1390
|
+
Object.setPrototypeOf(_this, SNSTopicArnNotFoundFault.prototype);
|
|
1391
|
+
return _this;
|
|
1392
|
+
}
|
|
1393
|
+
return SNSTopicArnNotFoundFault;
|
|
1394
|
+
}(__BaseException));
|
|
1395
|
+
export { SNSTopicArnNotFoundFault };
|
|
1396
|
+
var SubscriptionAlreadyExistFault = (function (_super) {
|
|
1397
|
+
__extends(SubscriptionAlreadyExistFault, _super);
|
|
1398
|
+
function SubscriptionAlreadyExistFault(opts) {
|
|
1399
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionAlreadyExistFault", $fault: "client" }, opts)) || this;
|
|
1400
|
+
_this.name = "SubscriptionAlreadyExistFault";
|
|
1401
|
+
_this.$fault = "client";
|
|
1402
|
+
Object.setPrototypeOf(_this, SubscriptionAlreadyExistFault.prototype);
|
|
1403
|
+
return _this;
|
|
1404
|
+
}
|
|
1405
|
+
return SubscriptionAlreadyExistFault;
|
|
1406
|
+
}(__BaseException));
|
|
1407
|
+
export { SubscriptionAlreadyExistFault };
|
|
1408
|
+
var SubscriptionCategoryNotFoundFault = (function (_super) {
|
|
1409
|
+
__extends(SubscriptionCategoryNotFoundFault, _super);
|
|
1410
|
+
function SubscriptionCategoryNotFoundFault(opts) {
|
|
1411
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionCategoryNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1412
|
+
_this.name = "SubscriptionCategoryNotFoundFault";
|
|
1413
|
+
_this.$fault = "client";
|
|
1414
|
+
Object.setPrototypeOf(_this, SubscriptionCategoryNotFoundFault.prototype);
|
|
1415
|
+
return _this;
|
|
1416
|
+
}
|
|
1417
|
+
return SubscriptionCategoryNotFoundFault;
|
|
1418
|
+
}(__BaseException));
|
|
1419
|
+
export { SubscriptionCategoryNotFoundFault };
|
|
471
1420
|
export var CreateGlobalClusterMessage;
|
|
472
1421
|
(function (CreateGlobalClusterMessage) {
|
|
473
1422
|
CreateGlobalClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -494,6 +1443,30 @@ export var CreateGlobalClusterResult;
|
|
|
494
1443
|
(function (CreateGlobalClusterResult) {
|
|
495
1444
|
CreateGlobalClusterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
496
1445
|
})(CreateGlobalClusterResult || (CreateGlobalClusterResult = {}));
|
|
1446
|
+
var GlobalClusterAlreadyExistsFault = (function (_super) {
|
|
1447
|
+
__extends(GlobalClusterAlreadyExistsFault, _super);
|
|
1448
|
+
function GlobalClusterAlreadyExistsFault(opts) {
|
|
1449
|
+
var _this = _super.call(this, __assign({ name: "GlobalClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1450
|
+
_this.name = "GlobalClusterAlreadyExistsFault";
|
|
1451
|
+
_this.$fault = "client";
|
|
1452
|
+
Object.setPrototypeOf(_this, GlobalClusterAlreadyExistsFault.prototype);
|
|
1453
|
+
return _this;
|
|
1454
|
+
}
|
|
1455
|
+
return GlobalClusterAlreadyExistsFault;
|
|
1456
|
+
}(__BaseException));
|
|
1457
|
+
export { GlobalClusterAlreadyExistsFault };
|
|
1458
|
+
var GlobalClusterQuotaExceededFault = (function (_super) {
|
|
1459
|
+
__extends(GlobalClusterQuotaExceededFault, _super);
|
|
1460
|
+
function GlobalClusterQuotaExceededFault(opts) {
|
|
1461
|
+
var _this = _super.call(this, __assign({ name: "GlobalClusterQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1462
|
+
_this.name = "GlobalClusterQuotaExceededFault";
|
|
1463
|
+
_this.$fault = "client";
|
|
1464
|
+
Object.setPrototypeOf(_this, GlobalClusterQuotaExceededFault.prototype);
|
|
1465
|
+
return _this;
|
|
1466
|
+
}
|
|
1467
|
+
return GlobalClusterQuotaExceededFault;
|
|
1468
|
+
}(__BaseException));
|
|
1469
|
+
export { GlobalClusterQuotaExceededFault };
|
|
497
1470
|
export var CreateOptionGroupMessage;
|
|
498
1471
|
(function (CreateOptionGroupMessage) {
|
|
499
1472
|
CreateOptionGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -512,10 +1485,34 @@ export var DeleteCustomAvailabilityZoneResult;
|
|
|
512
1485
|
CustomAvailabilityZone: CustomAvailabilityZone.filterSensitiveLog(obj.CustomAvailabilityZone),
|
|
513
1486
|
}))); };
|
|
514
1487
|
})(DeleteCustomAvailabilityZoneResult || (DeleteCustomAvailabilityZoneResult = {}));
|
|
1488
|
+
var CustomDBEngineVersionNotFoundFault = (function (_super) {
|
|
1489
|
+
__extends(CustomDBEngineVersionNotFoundFault, _super);
|
|
1490
|
+
function CustomDBEngineVersionNotFoundFault(opts) {
|
|
1491
|
+
var _this = _super.call(this, __assign({ name: "CustomDBEngineVersionNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1492
|
+
_this.name = "CustomDBEngineVersionNotFoundFault";
|
|
1493
|
+
_this.$fault = "client";
|
|
1494
|
+
Object.setPrototypeOf(_this, CustomDBEngineVersionNotFoundFault.prototype);
|
|
1495
|
+
return _this;
|
|
1496
|
+
}
|
|
1497
|
+
return CustomDBEngineVersionNotFoundFault;
|
|
1498
|
+
}(__BaseException));
|
|
1499
|
+
export { CustomDBEngineVersionNotFoundFault };
|
|
515
1500
|
export var DeleteCustomDBEngineVersionMessage;
|
|
516
1501
|
(function (DeleteCustomDBEngineVersionMessage) {
|
|
517
1502
|
DeleteCustomDBEngineVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
518
1503
|
})(DeleteCustomDBEngineVersionMessage || (DeleteCustomDBEngineVersionMessage = {}));
|
|
1504
|
+
var InvalidCustomDBEngineVersionStateFault = (function (_super) {
|
|
1505
|
+
__extends(InvalidCustomDBEngineVersionStateFault, _super);
|
|
1506
|
+
function InvalidCustomDBEngineVersionStateFault(opts) {
|
|
1507
|
+
var _this = _super.call(this, __assign({ name: "InvalidCustomDBEngineVersionStateFault", $fault: "client" }, opts)) || this;
|
|
1508
|
+
_this.name = "InvalidCustomDBEngineVersionStateFault";
|
|
1509
|
+
_this.$fault = "client";
|
|
1510
|
+
Object.setPrototypeOf(_this, InvalidCustomDBEngineVersionStateFault.prototype);
|
|
1511
|
+
return _this;
|
|
1512
|
+
}
|
|
1513
|
+
return InvalidCustomDBEngineVersionStateFault;
|
|
1514
|
+
}(__BaseException));
|
|
1515
|
+
export { InvalidCustomDBEngineVersionStateFault };
|
|
519
1516
|
export var DeleteDBClusterMessage;
|
|
520
1517
|
(function (DeleteDBClusterMessage) {
|
|
521
1518
|
DeleteDBClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -524,14 +1521,50 @@ export var DeleteDBClusterResult;
|
|
|
524
1521
|
(function (DeleteDBClusterResult) {
|
|
525
1522
|
DeleteDBClusterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
1523
|
})(DeleteDBClusterResult || (DeleteDBClusterResult = {}));
|
|
1524
|
+
var DBClusterEndpointNotFoundFault = (function (_super) {
|
|
1525
|
+
__extends(DBClusterEndpointNotFoundFault, _super);
|
|
1526
|
+
function DBClusterEndpointNotFoundFault(opts) {
|
|
1527
|
+
var _this = _super.call(this, __assign({ name: "DBClusterEndpointNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1528
|
+
_this.name = "DBClusterEndpointNotFoundFault";
|
|
1529
|
+
_this.$fault = "client";
|
|
1530
|
+
Object.setPrototypeOf(_this, DBClusterEndpointNotFoundFault.prototype);
|
|
1531
|
+
return _this;
|
|
1532
|
+
}
|
|
1533
|
+
return DBClusterEndpointNotFoundFault;
|
|
1534
|
+
}(__BaseException));
|
|
1535
|
+
export { DBClusterEndpointNotFoundFault };
|
|
527
1536
|
export var DeleteDBClusterEndpointMessage;
|
|
528
1537
|
(function (DeleteDBClusterEndpointMessage) {
|
|
529
1538
|
DeleteDBClusterEndpointMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
530
1539
|
})(DeleteDBClusterEndpointMessage || (DeleteDBClusterEndpointMessage = {}));
|
|
1540
|
+
var InvalidDBClusterEndpointStateFault = (function (_super) {
|
|
1541
|
+
__extends(InvalidDBClusterEndpointStateFault, _super);
|
|
1542
|
+
function InvalidDBClusterEndpointStateFault(opts) {
|
|
1543
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBClusterEndpointStateFault", $fault: "client" }, opts)) || this;
|
|
1544
|
+
_this.name = "InvalidDBClusterEndpointStateFault";
|
|
1545
|
+
_this.$fault = "client";
|
|
1546
|
+
Object.setPrototypeOf(_this, InvalidDBClusterEndpointStateFault.prototype);
|
|
1547
|
+
return _this;
|
|
1548
|
+
}
|
|
1549
|
+
return InvalidDBClusterEndpointStateFault;
|
|
1550
|
+
}(__BaseException));
|
|
1551
|
+
export { InvalidDBClusterEndpointStateFault };
|
|
531
1552
|
export var DeleteDBClusterParameterGroupMessage;
|
|
532
1553
|
(function (DeleteDBClusterParameterGroupMessage) {
|
|
533
1554
|
DeleteDBClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
534
1555
|
})(DeleteDBClusterParameterGroupMessage || (DeleteDBClusterParameterGroupMessage = {}));
|
|
1556
|
+
var InvalidDBParameterGroupStateFault = (function (_super) {
|
|
1557
|
+
__extends(InvalidDBParameterGroupStateFault, _super);
|
|
1558
|
+
function InvalidDBParameterGroupStateFault(opts) {
|
|
1559
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBParameterGroupStateFault", $fault: "client" }, opts)) || this;
|
|
1560
|
+
_this.name = "InvalidDBParameterGroupStateFault";
|
|
1561
|
+
_this.$fault = "client";
|
|
1562
|
+
Object.setPrototypeOf(_this, InvalidDBParameterGroupStateFault.prototype);
|
|
1563
|
+
return _this;
|
|
1564
|
+
}
|
|
1565
|
+
return InvalidDBParameterGroupStateFault;
|
|
1566
|
+
}(__BaseException));
|
|
1567
|
+
export { InvalidDBParameterGroupStateFault };
|
|
535
1568
|
export var DeleteDBClusterSnapshotMessage;
|
|
536
1569
|
(function (DeleteDBClusterSnapshotMessage) {
|
|
537
1570
|
DeleteDBClusterSnapshotMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -540,6 +1573,18 @@ export var DeleteDBClusterSnapshotResult;
|
|
|
540
1573
|
(function (DeleteDBClusterSnapshotResult) {
|
|
541
1574
|
DeleteDBClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
542
1575
|
})(DeleteDBClusterSnapshotResult || (DeleteDBClusterSnapshotResult = {}));
|
|
1576
|
+
var DBInstanceAutomatedBackupQuotaExceededFault = (function (_super) {
|
|
1577
|
+
__extends(DBInstanceAutomatedBackupQuotaExceededFault, _super);
|
|
1578
|
+
function DBInstanceAutomatedBackupQuotaExceededFault(opts) {
|
|
1579
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceAutomatedBackupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1580
|
+
_this.name = "DBInstanceAutomatedBackupQuotaExceededFault";
|
|
1581
|
+
_this.$fault = "client";
|
|
1582
|
+
Object.setPrototypeOf(_this, DBInstanceAutomatedBackupQuotaExceededFault.prototype);
|
|
1583
|
+
return _this;
|
|
1584
|
+
}
|
|
1585
|
+
return DBInstanceAutomatedBackupQuotaExceededFault;
|
|
1586
|
+
}(__BaseException));
|
|
1587
|
+
export { DBInstanceAutomatedBackupQuotaExceededFault };
|
|
543
1588
|
export var DeleteDBInstanceMessage;
|
|
544
1589
|
(function (DeleteDBInstanceMessage) {
|
|
545
1590
|
DeleteDBInstanceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -548,6 +1593,18 @@ export var DeleteDBInstanceResult;
|
|
|
548
1593
|
(function (DeleteDBInstanceResult) {
|
|
549
1594
|
DeleteDBInstanceResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
550
1595
|
})(DeleteDBInstanceResult || (DeleteDBInstanceResult = {}));
|
|
1596
|
+
var DBInstanceAutomatedBackupNotFoundFault = (function (_super) {
|
|
1597
|
+
__extends(DBInstanceAutomatedBackupNotFoundFault, _super);
|
|
1598
|
+
function DBInstanceAutomatedBackupNotFoundFault(opts) {
|
|
1599
|
+
var _this = _super.call(this, __assign({ name: "DBInstanceAutomatedBackupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1600
|
+
_this.name = "DBInstanceAutomatedBackupNotFoundFault";
|
|
1601
|
+
_this.$fault = "client";
|
|
1602
|
+
Object.setPrototypeOf(_this, DBInstanceAutomatedBackupNotFoundFault.prototype);
|
|
1603
|
+
return _this;
|
|
1604
|
+
}
|
|
1605
|
+
return DBInstanceAutomatedBackupNotFoundFault;
|
|
1606
|
+
}(__BaseException));
|
|
1607
|
+
export { DBInstanceAutomatedBackupNotFoundFault };
|
|
551
1608
|
export var DeleteDBInstanceAutomatedBackupMessage;
|
|
552
1609
|
(function (DeleteDBInstanceAutomatedBackupMessage) {
|
|
553
1610
|
DeleteDBInstanceAutomatedBackupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -564,6 +1621,18 @@ export var DeleteDBInstanceAutomatedBackupResult;
|
|
|
564
1621
|
(function (DeleteDBInstanceAutomatedBackupResult) {
|
|
565
1622
|
DeleteDBInstanceAutomatedBackupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
1623
|
})(DeleteDBInstanceAutomatedBackupResult || (DeleteDBInstanceAutomatedBackupResult = {}));
|
|
1624
|
+
var InvalidDBInstanceAutomatedBackupStateFault = (function (_super) {
|
|
1625
|
+
__extends(InvalidDBInstanceAutomatedBackupStateFault, _super);
|
|
1626
|
+
function InvalidDBInstanceAutomatedBackupStateFault(opts) {
|
|
1627
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBInstanceAutomatedBackupStateFault", $fault: "client" }, opts)) || this;
|
|
1628
|
+
_this.name = "InvalidDBInstanceAutomatedBackupStateFault";
|
|
1629
|
+
_this.$fault = "client";
|
|
1630
|
+
Object.setPrototypeOf(_this, InvalidDBInstanceAutomatedBackupStateFault.prototype);
|
|
1631
|
+
return _this;
|
|
1632
|
+
}
|
|
1633
|
+
return InvalidDBInstanceAutomatedBackupStateFault;
|
|
1634
|
+
}(__BaseException));
|
|
1635
|
+
export { InvalidDBInstanceAutomatedBackupStateFault };
|
|
567
1636
|
export var DeleteDBParameterGroupMessage;
|
|
568
1637
|
(function (DeleteDBParameterGroupMessage) {
|
|
569
1638
|
DeleteDBParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -576,6 +1645,18 @@ export var DeleteDBProxyResponse;
|
|
|
576
1645
|
(function (DeleteDBProxyResponse) {
|
|
577
1646
|
DeleteDBProxyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
578
1647
|
})(DeleteDBProxyResponse || (DeleteDBProxyResponse = {}));
|
|
1648
|
+
var DBProxyEndpointNotFoundFault = (function (_super) {
|
|
1649
|
+
__extends(DBProxyEndpointNotFoundFault, _super);
|
|
1650
|
+
function DBProxyEndpointNotFoundFault(opts) {
|
|
1651
|
+
var _this = _super.call(this, __assign({ name: "DBProxyEndpointNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1652
|
+
_this.name = "DBProxyEndpointNotFoundFault";
|
|
1653
|
+
_this.$fault = "client";
|
|
1654
|
+
Object.setPrototypeOf(_this, DBProxyEndpointNotFoundFault.prototype);
|
|
1655
|
+
return _this;
|
|
1656
|
+
}
|
|
1657
|
+
return DBProxyEndpointNotFoundFault;
|
|
1658
|
+
}(__BaseException));
|
|
1659
|
+
export { DBProxyEndpointNotFoundFault };
|
|
579
1660
|
export var DeleteDBProxyEndpointRequest;
|
|
580
1661
|
(function (DeleteDBProxyEndpointRequest) {
|
|
581
1662
|
DeleteDBProxyEndpointRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -584,6 +1665,18 @@ export var DeleteDBProxyEndpointResponse;
|
|
|
584
1665
|
(function (DeleteDBProxyEndpointResponse) {
|
|
585
1666
|
DeleteDBProxyEndpointResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
586
1667
|
})(DeleteDBProxyEndpointResponse || (DeleteDBProxyEndpointResponse = {}));
|
|
1668
|
+
var InvalidDBProxyEndpointStateFault = (function (_super) {
|
|
1669
|
+
__extends(InvalidDBProxyEndpointStateFault, _super);
|
|
1670
|
+
function InvalidDBProxyEndpointStateFault(opts) {
|
|
1671
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBProxyEndpointStateFault", $fault: "client" }, opts)) || this;
|
|
1672
|
+
_this.name = "InvalidDBProxyEndpointStateFault";
|
|
1673
|
+
_this.$fault = "client";
|
|
1674
|
+
Object.setPrototypeOf(_this, InvalidDBProxyEndpointStateFault.prototype);
|
|
1675
|
+
return _this;
|
|
1676
|
+
}
|
|
1677
|
+
return InvalidDBProxyEndpointStateFault;
|
|
1678
|
+
}(__BaseException));
|
|
1679
|
+
export { InvalidDBProxyEndpointStateFault };
|
|
587
1680
|
export var DeleteDBSecurityGroupMessage;
|
|
588
1681
|
(function (DeleteDBSecurityGroupMessage) {
|
|
589
1682
|
DeleteDBSecurityGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -600,6 +1693,18 @@ export var DeleteDBSubnetGroupMessage;
|
|
|
600
1693
|
(function (DeleteDBSubnetGroupMessage) {
|
|
601
1694
|
DeleteDBSubnetGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
602
1695
|
})(DeleteDBSubnetGroupMessage || (DeleteDBSubnetGroupMessage = {}));
|
|
1696
|
+
var InvalidDBSubnetStateFault = (function (_super) {
|
|
1697
|
+
__extends(InvalidDBSubnetStateFault, _super);
|
|
1698
|
+
function InvalidDBSubnetStateFault(opts) {
|
|
1699
|
+
var _this = _super.call(this, __assign({ name: "InvalidDBSubnetStateFault", $fault: "client" }, opts)) || this;
|
|
1700
|
+
_this.name = "InvalidDBSubnetStateFault";
|
|
1701
|
+
_this.$fault = "client";
|
|
1702
|
+
Object.setPrototypeOf(_this, InvalidDBSubnetStateFault.prototype);
|
|
1703
|
+
return _this;
|
|
1704
|
+
}
|
|
1705
|
+
return InvalidDBSubnetStateFault;
|
|
1706
|
+
}(__BaseException));
|
|
1707
|
+
export { InvalidDBSubnetStateFault };
|
|
603
1708
|
export var DeleteEventSubscriptionMessage;
|
|
604
1709
|
(function (DeleteEventSubscriptionMessage) {
|
|
605
1710
|
DeleteEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -608,6 +1713,18 @@ export var DeleteEventSubscriptionResult;
|
|
|
608
1713
|
(function (DeleteEventSubscriptionResult) {
|
|
609
1714
|
DeleteEventSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
610
1715
|
})(DeleteEventSubscriptionResult || (DeleteEventSubscriptionResult = {}));
|
|
1716
|
+
var InvalidEventSubscriptionStateFault = (function (_super) {
|
|
1717
|
+
__extends(InvalidEventSubscriptionStateFault, _super);
|
|
1718
|
+
function InvalidEventSubscriptionStateFault(opts) {
|
|
1719
|
+
var _this = _super.call(this, __assign({ name: "InvalidEventSubscriptionStateFault", $fault: "client" }, opts)) || this;
|
|
1720
|
+
_this.name = "InvalidEventSubscriptionStateFault";
|
|
1721
|
+
_this.$fault = "client";
|
|
1722
|
+
Object.setPrototypeOf(_this, InvalidEventSubscriptionStateFault.prototype);
|
|
1723
|
+
return _this;
|
|
1724
|
+
}
|
|
1725
|
+
return InvalidEventSubscriptionStateFault;
|
|
1726
|
+
}(__BaseException));
|
|
1727
|
+
export { InvalidEventSubscriptionStateFault };
|
|
611
1728
|
export var DeleteGlobalClusterMessage;
|
|
612
1729
|
(function (DeleteGlobalClusterMessage) {
|
|
613
1730
|
DeleteGlobalClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -628,10 +1745,46 @@ export var InstallationMedia;
|
|
|
628
1745
|
(function (InstallationMedia) {
|
|
629
1746
|
InstallationMedia.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
630
1747
|
})(InstallationMedia || (InstallationMedia = {}));
|
|
1748
|
+
var InstallationMediaNotFoundFault = (function (_super) {
|
|
1749
|
+
__extends(InstallationMediaNotFoundFault, _super);
|
|
1750
|
+
function InstallationMediaNotFoundFault(opts) {
|
|
1751
|
+
var _this = _super.call(this, __assign({ name: "InstallationMediaNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1752
|
+
_this.name = "InstallationMediaNotFoundFault";
|
|
1753
|
+
_this.$fault = "client";
|
|
1754
|
+
Object.setPrototypeOf(_this, InstallationMediaNotFoundFault.prototype);
|
|
1755
|
+
return _this;
|
|
1756
|
+
}
|
|
1757
|
+
return InstallationMediaNotFoundFault;
|
|
1758
|
+
}(__BaseException));
|
|
1759
|
+
export { InstallationMediaNotFoundFault };
|
|
631
1760
|
export var DeleteOptionGroupMessage;
|
|
632
1761
|
(function (DeleteOptionGroupMessage) {
|
|
633
1762
|
DeleteOptionGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
634
1763
|
})(DeleteOptionGroupMessage || (DeleteOptionGroupMessage = {}));
|
|
1764
|
+
var InvalidOptionGroupStateFault = (function (_super) {
|
|
1765
|
+
__extends(InvalidOptionGroupStateFault, _super);
|
|
1766
|
+
function InvalidOptionGroupStateFault(opts) {
|
|
1767
|
+
var _this = _super.call(this, __assign({ name: "InvalidOptionGroupStateFault", $fault: "client" }, opts)) || this;
|
|
1768
|
+
_this.name = "InvalidOptionGroupStateFault";
|
|
1769
|
+
_this.$fault = "client";
|
|
1770
|
+
Object.setPrototypeOf(_this, InvalidOptionGroupStateFault.prototype);
|
|
1771
|
+
return _this;
|
|
1772
|
+
}
|
|
1773
|
+
return InvalidOptionGroupStateFault;
|
|
1774
|
+
}(__BaseException));
|
|
1775
|
+
export { InvalidOptionGroupStateFault };
|
|
1776
|
+
var DBProxyTargetNotFoundFault = (function (_super) {
|
|
1777
|
+
__extends(DBProxyTargetNotFoundFault, _super);
|
|
1778
|
+
function DBProxyTargetNotFoundFault(opts) {
|
|
1779
|
+
var _this = _super.call(this, __assign({ name: "DBProxyTargetNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1780
|
+
_this.name = "DBProxyTargetNotFoundFault";
|
|
1781
|
+
_this.$fault = "client";
|
|
1782
|
+
Object.setPrototypeOf(_this, DBProxyTargetNotFoundFault.prototype);
|
|
1783
|
+
return _this;
|
|
1784
|
+
}
|
|
1785
|
+
return DBProxyTargetNotFoundFault;
|
|
1786
|
+
}(__BaseException));
|
|
1787
|
+
export { DBProxyTargetNotFoundFault };
|
|
635
1788
|
export var DeregisterDBProxyTargetsRequest;
|
|
636
1789
|
(function (DeregisterDBProxyTargetsRequest) {
|
|
637
1790
|
DeregisterDBProxyTargetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -652,6 +1805,18 @@ export var CertificateMessage;
|
|
|
652
1805
|
(function (CertificateMessage) {
|
|
653
1806
|
CertificateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
654
1807
|
})(CertificateMessage || (CertificateMessage = {}));
|
|
1808
|
+
var CertificateNotFoundFault = (function (_super) {
|
|
1809
|
+
__extends(CertificateNotFoundFault, _super);
|
|
1810
|
+
function CertificateNotFoundFault(opts) {
|
|
1811
|
+
var _this = _super.call(this, __assign({ name: "CertificateNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1812
|
+
_this.name = "CertificateNotFoundFault";
|
|
1813
|
+
_this.$fault = "client";
|
|
1814
|
+
Object.setPrototypeOf(_this, CertificateNotFoundFault.prototype);
|
|
1815
|
+
return _this;
|
|
1816
|
+
}
|
|
1817
|
+
return CertificateNotFoundFault;
|
|
1818
|
+
}(__BaseException));
|
|
1819
|
+
export { CertificateNotFoundFault };
|
|
655
1820
|
export var Filter;
|
|
656
1821
|
(function (Filter) {
|
|
657
1822
|
Filter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -676,6 +1841,18 @@ export var DBClusterBacktrackMessage;
|
|
|
676
1841
|
(function (DBClusterBacktrackMessage) {
|
|
677
1842
|
DBClusterBacktrackMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
1843
|
})(DBClusterBacktrackMessage || (DBClusterBacktrackMessage = {}));
|
|
1844
|
+
var DBClusterBacktrackNotFoundFault = (function (_super) {
|
|
1845
|
+
__extends(DBClusterBacktrackNotFoundFault, _super);
|
|
1846
|
+
function DBClusterBacktrackNotFoundFault(opts) {
|
|
1847
|
+
var _this = _super.call(this, __assign({ name: "DBClusterBacktrackNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1848
|
+
_this.name = "DBClusterBacktrackNotFoundFault";
|
|
1849
|
+
_this.$fault = "client";
|
|
1850
|
+
Object.setPrototypeOf(_this, DBClusterBacktrackNotFoundFault.prototype);
|
|
1851
|
+
return _this;
|
|
1852
|
+
}
|
|
1853
|
+
return DBClusterBacktrackNotFoundFault;
|
|
1854
|
+
}(__BaseException));
|
|
1855
|
+
export { DBClusterBacktrackNotFoundFault };
|
|
679
1856
|
export var DescribeDBClusterBacktracksMessage;
|
|
680
1857
|
(function (DescribeDBClusterBacktracksMessage) {
|
|
681
1858
|
DescribeDBClusterBacktracksMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|