@aws-sdk/client-redshift 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/RedshiftServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +1398 -4
- package/dist-cjs/models/models_1.js +251 -3
- package/dist-cjs/protocols/Aws_query.js +1305 -4522
- package/dist-es/index.js +1 -0
- package/dist-es/models/RedshiftServiceException.js +12 -0
- package/dist-es/models/models_0.js +1286 -1
- package/dist-es/models/models_1.js +230 -1
- package/dist-es/protocols/Aws_query.js +2670 -4687
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RedshiftServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +751 -429
- package/dist-types/models/models_1.d.ts +135 -77
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RedshiftServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +537 -429
- package/dist-types/ts3.4/models/models_1.d.ts +97 -77
- package/package.json +26 -26
|
@@ -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 { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
3
4
|
export var AcceptReservedNodeExchangeInputMessage;
|
|
4
5
|
(function (AcceptReservedNodeExchangeInputMessage) {
|
|
5
6
|
AcceptReservedNodeExchangeInputMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -16,6 +17,114 @@ export var AcceptReservedNodeExchangeOutputMessage;
|
|
|
16
17
|
(function (AcceptReservedNodeExchangeOutputMessage) {
|
|
17
18
|
AcceptReservedNodeExchangeOutputMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
19
|
})(AcceptReservedNodeExchangeOutputMessage || (AcceptReservedNodeExchangeOutputMessage = {}));
|
|
20
|
+
var DependentServiceUnavailableFault = (function (_super) {
|
|
21
|
+
__extends(DependentServiceUnavailableFault, _super);
|
|
22
|
+
function DependentServiceUnavailableFault(opts) {
|
|
23
|
+
var _this = _super.call(this, __assign({ name: "DependentServiceUnavailableFault", $fault: "client" }, opts)) || this;
|
|
24
|
+
_this.name = "DependentServiceUnavailableFault";
|
|
25
|
+
_this.$fault = "client";
|
|
26
|
+
Object.setPrototypeOf(_this, DependentServiceUnavailableFault.prototype);
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
return DependentServiceUnavailableFault;
|
|
30
|
+
}(__BaseException));
|
|
31
|
+
export { DependentServiceUnavailableFault };
|
|
32
|
+
var InvalidReservedNodeStateFault = (function (_super) {
|
|
33
|
+
__extends(InvalidReservedNodeStateFault, _super);
|
|
34
|
+
function InvalidReservedNodeStateFault(opts) {
|
|
35
|
+
var _this = _super.call(this, __assign({ name: "InvalidReservedNodeStateFault", $fault: "client" }, opts)) || this;
|
|
36
|
+
_this.name = "InvalidReservedNodeStateFault";
|
|
37
|
+
_this.$fault = "client";
|
|
38
|
+
Object.setPrototypeOf(_this, InvalidReservedNodeStateFault.prototype);
|
|
39
|
+
return _this;
|
|
40
|
+
}
|
|
41
|
+
return InvalidReservedNodeStateFault;
|
|
42
|
+
}(__BaseException));
|
|
43
|
+
export { InvalidReservedNodeStateFault };
|
|
44
|
+
var ReservedNodeAlreadyExistsFault = (function (_super) {
|
|
45
|
+
__extends(ReservedNodeAlreadyExistsFault, _super);
|
|
46
|
+
function ReservedNodeAlreadyExistsFault(opts) {
|
|
47
|
+
var _this = _super.call(this, __assign({ name: "ReservedNodeAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
48
|
+
_this.name = "ReservedNodeAlreadyExistsFault";
|
|
49
|
+
_this.$fault = "client";
|
|
50
|
+
Object.setPrototypeOf(_this, ReservedNodeAlreadyExistsFault.prototype);
|
|
51
|
+
return _this;
|
|
52
|
+
}
|
|
53
|
+
return ReservedNodeAlreadyExistsFault;
|
|
54
|
+
}(__BaseException));
|
|
55
|
+
export { ReservedNodeAlreadyExistsFault };
|
|
56
|
+
var ReservedNodeAlreadyMigratedFault = (function (_super) {
|
|
57
|
+
__extends(ReservedNodeAlreadyMigratedFault, _super);
|
|
58
|
+
function ReservedNodeAlreadyMigratedFault(opts) {
|
|
59
|
+
var _this = _super.call(this, __assign({ name: "ReservedNodeAlreadyMigratedFault", $fault: "client" }, opts)) || this;
|
|
60
|
+
_this.name = "ReservedNodeAlreadyMigratedFault";
|
|
61
|
+
_this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(_this, ReservedNodeAlreadyMigratedFault.prototype);
|
|
63
|
+
return _this;
|
|
64
|
+
}
|
|
65
|
+
return ReservedNodeAlreadyMigratedFault;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ReservedNodeAlreadyMigratedFault };
|
|
68
|
+
var ReservedNodeNotFoundFault = (function (_super) {
|
|
69
|
+
__extends(ReservedNodeNotFoundFault, _super);
|
|
70
|
+
function ReservedNodeNotFoundFault(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ReservedNodeNotFoundFault", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "ReservedNodeNotFoundFault";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, ReservedNodeNotFoundFault.prototype);
|
|
75
|
+
return _this;
|
|
76
|
+
}
|
|
77
|
+
return ReservedNodeNotFoundFault;
|
|
78
|
+
}(__BaseException));
|
|
79
|
+
export { ReservedNodeNotFoundFault };
|
|
80
|
+
var ReservedNodeOfferingNotFoundFault = (function (_super) {
|
|
81
|
+
__extends(ReservedNodeOfferingNotFoundFault, _super);
|
|
82
|
+
function ReservedNodeOfferingNotFoundFault(opts) {
|
|
83
|
+
var _this = _super.call(this, __assign({ name: "ReservedNodeOfferingNotFoundFault", $fault: "client" }, opts)) || this;
|
|
84
|
+
_this.name = "ReservedNodeOfferingNotFoundFault";
|
|
85
|
+
_this.$fault = "client";
|
|
86
|
+
Object.setPrototypeOf(_this, ReservedNodeOfferingNotFoundFault.prototype);
|
|
87
|
+
return _this;
|
|
88
|
+
}
|
|
89
|
+
return ReservedNodeOfferingNotFoundFault;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { ReservedNodeOfferingNotFoundFault };
|
|
92
|
+
var UnsupportedOperationFault = (function (_super) {
|
|
93
|
+
__extends(UnsupportedOperationFault, _super);
|
|
94
|
+
function UnsupportedOperationFault(opts) {
|
|
95
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationFault", $fault: "client" }, opts)) || this;
|
|
96
|
+
_this.name = "UnsupportedOperationFault";
|
|
97
|
+
_this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(_this, UnsupportedOperationFault.prototype);
|
|
99
|
+
return _this;
|
|
100
|
+
}
|
|
101
|
+
return UnsupportedOperationFault;
|
|
102
|
+
}(__BaseException));
|
|
103
|
+
export { UnsupportedOperationFault };
|
|
104
|
+
var AccessToClusterDeniedFault = (function (_super) {
|
|
105
|
+
__extends(AccessToClusterDeniedFault, _super);
|
|
106
|
+
function AccessToClusterDeniedFault(opts) {
|
|
107
|
+
var _this = _super.call(this, __assign({ name: "AccessToClusterDeniedFault", $fault: "client" }, opts)) || this;
|
|
108
|
+
_this.name = "AccessToClusterDeniedFault";
|
|
109
|
+
_this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(_this, AccessToClusterDeniedFault.prototype);
|
|
111
|
+
return _this;
|
|
112
|
+
}
|
|
113
|
+
return AccessToClusterDeniedFault;
|
|
114
|
+
}(__BaseException));
|
|
115
|
+
export { AccessToClusterDeniedFault };
|
|
116
|
+
var AccessToSnapshotDeniedFault = (function (_super) {
|
|
117
|
+
__extends(AccessToSnapshotDeniedFault, _super);
|
|
118
|
+
function AccessToSnapshotDeniedFault(opts) {
|
|
119
|
+
var _this = _super.call(this, __assign({ name: "AccessToSnapshotDeniedFault", $fault: "client" }, opts)) || this;
|
|
120
|
+
_this.name = "AccessToSnapshotDeniedFault";
|
|
121
|
+
_this.$fault = "client";
|
|
122
|
+
Object.setPrototypeOf(_this, AccessToSnapshotDeniedFault.prototype);
|
|
123
|
+
return _this;
|
|
124
|
+
}
|
|
125
|
+
return AccessToSnapshotDeniedFault;
|
|
126
|
+
}(__BaseException));
|
|
127
|
+
export { AccessToSnapshotDeniedFault };
|
|
19
128
|
export var AttributeValueTarget;
|
|
20
129
|
(function (AttributeValueTarget) {
|
|
21
130
|
AttributeValueTarget.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -38,6 +147,18 @@ export var ActionType;
|
|
|
38
147
|
ActionType["RESIZE_CLUSTER"] = "resize-cluster";
|
|
39
148
|
ActionType["RESTORE_CLUSTER"] = "restore-cluster";
|
|
40
149
|
})(ActionType || (ActionType = {}));
|
|
150
|
+
var ClusterNotFoundFault = (function (_super) {
|
|
151
|
+
__extends(ClusterNotFoundFault, _super);
|
|
152
|
+
function ClusterNotFoundFault(opts) {
|
|
153
|
+
var _this = _super.call(this, __assign({ name: "ClusterNotFoundFault", $fault: "client" }, opts)) || this;
|
|
154
|
+
_this.name = "ClusterNotFoundFault";
|
|
155
|
+
_this.$fault = "client";
|
|
156
|
+
Object.setPrototypeOf(_this, ClusterNotFoundFault.prototype);
|
|
157
|
+
return _this;
|
|
158
|
+
}
|
|
159
|
+
return ClusterNotFoundFault;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { ClusterNotFoundFault };
|
|
41
162
|
export var PartnerIntegrationInputMessage;
|
|
42
163
|
(function (PartnerIntegrationInputMessage) {
|
|
43
164
|
PartnerIntegrationInputMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -46,6 +167,30 @@ export var PartnerIntegrationOutputMessage;
|
|
|
46
167
|
(function (PartnerIntegrationOutputMessage) {
|
|
47
168
|
PartnerIntegrationOutputMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
48
169
|
})(PartnerIntegrationOutputMessage || (PartnerIntegrationOutputMessage = {}));
|
|
170
|
+
var PartnerNotFoundFault = (function (_super) {
|
|
171
|
+
__extends(PartnerNotFoundFault, _super);
|
|
172
|
+
function PartnerNotFoundFault(opts) {
|
|
173
|
+
var _this = _super.call(this, __assign({ name: "PartnerNotFoundFault", $fault: "client" }, opts)) || this;
|
|
174
|
+
_this.name = "PartnerNotFoundFault";
|
|
175
|
+
_this.$fault = "client";
|
|
176
|
+
Object.setPrototypeOf(_this, PartnerNotFoundFault.prototype);
|
|
177
|
+
return _this;
|
|
178
|
+
}
|
|
179
|
+
return PartnerNotFoundFault;
|
|
180
|
+
}(__BaseException));
|
|
181
|
+
export { PartnerNotFoundFault };
|
|
182
|
+
var UnauthorizedPartnerIntegrationFault = (function (_super) {
|
|
183
|
+
__extends(UnauthorizedPartnerIntegrationFault, _super);
|
|
184
|
+
function UnauthorizedPartnerIntegrationFault(opts) {
|
|
185
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedPartnerIntegrationFault", $fault: "client" }, opts)) || this;
|
|
186
|
+
_this.name = "UnauthorizedPartnerIntegrationFault";
|
|
187
|
+
_this.$fault = "client";
|
|
188
|
+
Object.setPrototypeOf(_this, UnauthorizedPartnerIntegrationFault.prototype);
|
|
189
|
+
return _this;
|
|
190
|
+
}
|
|
191
|
+
return UnauthorizedPartnerIntegrationFault;
|
|
192
|
+
}(__BaseException));
|
|
193
|
+
export { UnauthorizedPartnerIntegrationFault };
|
|
49
194
|
export var AquaConfigurationStatus;
|
|
50
195
|
(function (AquaConfigurationStatus) {
|
|
51
196
|
AquaConfigurationStatus["AUTO"] = "auto";
|
|
@@ -83,6 +228,30 @@ export var DataShare;
|
|
|
83
228
|
(function (DataShare) {
|
|
84
229
|
DataShare.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
85
230
|
})(DataShare || (DataShare = {}));
|
|
231
|
+
var InvalidDataShareFault = (function (_super) {
|
|
232
|
+
__extends(InvalidDataShareFault, _super);
|
|
233
|
+
function InvalidDataShareFault(opts) {
|
|
234
|
+
var _this = _super.call(this, __assign({ name: "InvalidDataShareFault", $fault: "client" }, opts)) || this;
|
|
235
|
+
_this.name = "InvalidDataShareFault";
|
|
236
|
+
_this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(_this, InvalidDataShareFault.prototype);
|
|
238
|
+
return _this;
|
|
239
|
+
}
|
|
240
|
+
return InvalidDataShareFault;
|
|
241
|
+
}(__BaseException));
|
|
242
|
+
export { InvalidDataShareFault };
|
|
243
|
+
var InvalidNamespaceFault = (function (_super) {
|
|
244
|
+
__extends(InvalidNamespaceFault, _super);
|
|
245
|
+
function InvalidNamespaceFault(opts) {
|
|
246
|
+
var _this = _super.call(this, __assign({ name: "InvalidNamespaceFault", $fault: "client" }, opts)) || this;
|
|
247
|
+
_this.name = "InvalidNamespaceFault";
|
|
248
|
+
_this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(_this, InvalidNamespaceFault.prototype);
|
|
250
|
+
return _this;
|
|
251
|
+
}
|
|
252
|
+
return InvalidNamespaceFault;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { InvalidNamespaceFault };
|
|
86
255
|
export var ClusterAssociatedToSchedule;
|
|
87
256
|
(function (ClusterAssociatedToSchedule) {
|
|
88
257
|
ClusterAssociatedToSchedule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -91,6 +260,78 @@ export var AuthenticationProfile;
|
|
|
91
260
|
(function (AuthenticationProfile) {
|
|
92
261
|
AuthenticationProfile.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
262
|
})(AuthenticationProfile || (AuthenticationProfile = {}));
|
|
263
|
+
var AuthenticationProfileAlreadyExistsFault = (function (_super) {
|
|
264
|
+
__extends(AuthenticationProfileAlreadyExistsFault, _super);
|
|
265
|
+
function AuthenticationProfileAlreadyExistsFault(opts) {
|
|
266
|
+
var _this = _super.call(this, __assign({ name: "AuthenticationProfileAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
267
|
+
_this.name = "AuthenticationProfileAlreadyExistsFault";
|
|
268
|
+
_this.$fault = "client";
|
|
269
|
+
Object.setPrototypeOf(_this, AuthenticationProfileAlreadyExistsFault.prototype);
|
|
270
|
+
return _this;
|
|
271
|
+
}
|
|
272
|
+
return AuthenticationProfileAlreadyExistsFault;
|
|
273
|
+
}(__BaseException));
|
|
274
|
+
export { AuthenticationProfileAlreadyExistsFault };
|
|
275
|
+
var AuthenticationProfileNotFoundFault = (function (_super) {
|
|
276
|
+
__extends(AuthenticationProfileNotFoundFault, _super);
|
|
277
|
+
function AuthenticationProfileNotFoundFault(opts) {
|
|
278
|
+
var _this = _super.call(this, __assign({ name: "AuthenticationProfileNotFoundFault", $fault: "client" }, opts)) || this;
|
|
279
|
+
_this.name = "AuthenticationProfileNotFoundFault";
|
|
280
|
+
_this.$fault = "client";
|
|
281
|
+
Object.setPrototypeOf(_this, AuthenticationProfileNotFoundFault.prototype);
|
|
282
|
+
return _this;
|
|
283
|
+
}
|
|
284
|
+
return AuthenticationProfileNotFoundFault;
|
|
285
|
+
}(__BaseException));
|
|
286
|
+
export { AuthenticationProfileNotFoundFault };
|
|
287
|
+
var AuthenticationProfileQuotaExceededFault = (function (_super) {
|
|
288
|
+
__extends(AuthenticationProfileQuotaExceededFault, _super);
|
|
289
|
+
function AuthenticationProfileQuotaExceededFault(opts) {
|
|
290
|
+
var _this = _super.call(this, __assign({ name: "AuthenticationProfileQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
291
|
+
_this.name = "AuthenticationProfileQuotaExceededFault";
|
|
292
|
+
_this.$fault = "client";
|
|
293
|
+
Object.setPrototypeOf(_this, AuthenticationProfileQuotaExceededFault.prototype);
|
|
294
|
+
return _this;
|
|
295
|
+
}
|
|
296
|
+
return AuthenticationProfileQuotaExceededFault;
|
|
297
|
+
}(__BaseException));
|
|
298
|
+
export { AuthenticationProfileQuotaExceededFault };
|
|
299
|
+
var AuthorizationAlreadyExistsFault = (function (_super) {
|
|
300
|
+
__extends(AuthorizationAlreadyExistsFault, _super);
|
|
301
|
+
function AuthorizationAlreadyExistsFault(opts) {
|
|
302
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
303
|
+
_this.name = "AuthorizationAlreadyExistsFault";
|
|
304
|
+
_this.$fault = "client";
|
|
305
|
+
Object.setPrototypeOf(_this, AuthorizationAlreadyExistsFault.prototype);
|
|
306
|
+
return _this;
|
|
307
|
+
}
|
|
308
|
+
return AuthorizationAlreadyExistsFault;
|
|
309
|
+
}(__BaseException));
|
|
310
|
+
export { AuthorizationAlreadyExistsFault };
|
|
311
|
+
var AuthorizationNotFoundFault = (function (_super) {
|
|
312
|
+
__extends(AuthorizationNotFoundFault, _super);
|
|
313
|
+
function AuthorizationNotFoundFault(opts) {
|
|
314
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationNotFoundFault", $fault: "client" }, opts)) || this;
|
|
315
|
+
_this.name = "AuthorizationNotFoundFault";
|
|
316
|
+
_this.$fault = "client";
|
|
317
|
+
Object.setPrototypeOf(_this, AuthorizationNotFoundFault.prototype);
|
|
318
|
+
return _this;
|
|
319
|
+
}
|
|
320
|
+
return AuthorizationNotFoundFault;
|
|
321
|
+
}(__BaseException));
|
|
322
|
+
export { AuthorizationNotFoundFault };
|
|
323
|
+
var AuthorizationQuotaExceededFault = (function (_super) {
|
|
324
|
+
__extends(AuthorizationQuotaExceededFault, _super);
|
|
325
|
+
function AuthorizationQuotaExceededFault(opts) {
|
|
326
|
+
var _this = _super.call(this, __assign({ name: "AuthorizationQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
327
|
+
_this.name = "AuthorizationQuotaExceededFault";
|
|
328
|
+
_this.$fault = "client";
|
|
329
|
+
Object.setPrototypeOf(_this, AuthorizationQuotaExceededFault.prototype);
|
|
330
|
+
return _this;
|
|
331
|
+
}
|
|
332
|
+
return AuthorizationQuotaExceededFault;
|
|
333
|
+
}(__BaseException));
|
|
334
|
+
export { AuthorizationQuotaExceededFault };
|
|
94
335
|
export var AuthorizationStatus;
|
|
95
336
|
(function (AuthorizationStatus) {
|
|
96
337
|
AuthorizationStatus["AUTHORIZED"] = "Authorized";
|
|
@@ -120,6 +361,30 @@ export var AuthorizeClusterSecurityGroupIngressResult;
|
|
|
120
361
|
(function (AuthorizeClusterSecurityGroupIngressResult) {
|
|
121
362
|
AuthorizeClusterSecurityGroupIngressResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
363
|
})(AuthorizeClusterSecurityGroupIngressResult || (AuthorizeClusterSecurityGroupIngressResult = {}));
|
|
364
|
+
var ClusterSecurityGroupNotFoundFault = (function (_super) {
|
|
365
|
+
__extends(ClusterSecurityGroupNotFoundFault, _super);
|
|
366
|
+
function ClusterSecurityGroupNotFoundFault(opts) {
|
|
367
|
+
var _this = _super.call(this, __assign({ name: "ClusterSecurityGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
368
|
+
_this.name = "ClusterSecurityGroupNotFoundFault";
|
|
369
|
+
_this.$fault = "client";
|
|
370
|
+
Object.setPrototypeOf(_this, ClusterSecurityGroupNotFoundFault.prototype);
|
|
371
|
+
return _this;
|
|
372
|
+
}
|
|
373
|
+
return ClusterSecurityGroupNotFoundFault;
|
|
374
|
+
}(__BaseException));
|
|
375
|
+
export { ClusterSecurityGroupNotFoundFault };
|
|
376
|
+
var InvalidClusterSecurityGroupStateFault = (function (_super) {
|
|
377
|
+
__extends(InvalidClusterSecurityGroupStateFault, _super);
|
|
378
|
+
function InvalidClusterSecurityGroupStateFault(opts) {
|
|
379
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterSecurityGroupStateFault", $fault: "client" }, opts)) || this;
|
|
380
|
+
_this.name = "InvalidClusterSecurityGroupStateFault";
|
|
381
|
+
_this.$fault = "client";
|
|
382
|
+
Object.setPrototypeOf(_this, InvalidClusterSecurityGroupStateFault.prototype);
|
|
383
|
+
return _this;
|
|
384
|
+
}
|
|
385
|
+
return InvalidClusterSecurityGroupStateFault;
|
|
386
|
+
}(__BaseException));
|
|
387
|
+
export { InvalidClusterSecurityGroupStateFault };
|
|
123
388
|
export var AuthorizeDataShareMessage;
|
|
124
389
|
(function (AuthorizeDataShareMessage) {
|
|
125
390
|
AuthorizeDataShareMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -132,6 +397,54 @@ export var EndpointAuthorization;
|
|
|
132
397
|
(function (EndpointAuthorization) {
|
|
133
398
|
EndpointAuthorization.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
399
|
})(EndpointAuthorization || (EndpointAuthorization = {}));
|
|
400
|
+
var EndpointAuthorizationAlreadyExistsFault = (function (_super) {
|
|
401
|
+
__extends(EndpointAuthorizationAlreadyExistsFault, _super);
|
|
402
|
+
function EndpointAuthorizationAlreadyExistsFault(opts) {
|
|
403
|
+
var _this = _super.call(this, __assign({ name: "EndpointAuthorizationAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
404
|
+
_this.name = "EndpointAuthorizationAlreadyExistsFault";
|
|
405
|
+
_this.$fault = "client";
|
|
406
|
+
Object.setPrototypeOf(_this, EndpointAuthorizationAlreadyExistsFault.prototype);
|
|
407
|
+
return _this;
|
|
408
|
+
}
|
|
409
|
+
return EndpointAuthorizationAlreadyExistsFault;
|
|
410
|
+
}(__BaseException));
|
|
411
|
+
export { EndpointAuthorizationAlreadyExistsFault };
|
|
412
|
+
var EndpointAuthorizationsPerClusterLimitExceededFault = (function (_super) {
|
|
413
|
+
__extends(EndpointAuthorizationsPerClusterLimitExceededFault, _super);
|
|
414
|
+
function EndpointAuthorizationsPerClusterLimitExceededFault(opts) {
|
|
415
|
+
var _this = _super.call(this, __assign({ name: "EndpointAuthorizationsPerClusterLimitExceededFault", $fault: "client" }, opts)) || this;
|
|
416
|
+
_this.name = "EndpointAuthorizationsPerClusterLimitExceededFault";
|
|
417
|
+
_this.$fault = "client";
|
|
418
|
+
Object.setPrototypeOf(_this, EndpointAuthorizationsPerClusterLimitExceededFault.prototype);
|
|
419
|
+
return _this;
|
|
420
|
+
}
|
|
421
|
+
return EndpointAuthorizationsPerClusterLimitExceededFault;
|
|
422
|
+
}(__BaseException));
|
|
423
|
+
export { EndpointAuthorizationsPerClusterLimitExceededFault };
|
|
424
|
+
var InvalidAuthorizationStateFault = (function (_super) {
|
|
425
|
+
__extends(InvalidAuthorizationStateFault, _super);
|
|
426
|
+
function InvalidAuthorizationStateFault(opts) {
|
|
427
|
+
var _this = _super.call(this, __assign({ name: "InvalidAuthorizationStateFault", $fault: "client" }, opts)) || this;
|
|
428
|
+
_this.name = "InvalidAuthorizationStateFault";
|
|
429
|
+
_this.$fault = "client";
|
|
430
|
+
Object.setPrototypeOf(_this, InvalidAuthorizationStateFault.prototype);
|
|
431
|
+
return _this;
|
|
432
|
+
}
|
|
433
|
+
return InvalidAuthorizationStateFault;
|
|
434
|
+
}(__BaseException));
|
|
435
|
+
export { InvalidAuthorizationStateFault };
|
|
436
|
+
var InvalidClusterStateFault = (function (_super) {
|
|
437
|
+
__extends(InvalidClusterStateFault, _super);
|
|
438
|
+
function InvalidClusterStateFault(opts) {
|
|
439
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterStateFault", $fault: "client" }, opts)) || this;
|
|
440
|
+
_this.name = "InvalidClusterStateFault";
|
|
441
|
+
_this.$fault = "client";
|
|
442
|
+
Object.setPrototypeOf(_this, InvalidClusterStateFault.prototype);
|
|
443
|
+
return _this;
|
|
444
|
+
}
|
|
445
|
+
return InvalidClusterStateFault;
|
|
446
|
+
}(__BaseException));
|
|
447
|
+
export { InvalidClusterStateFault };
|
|
135
448
|
export var AuthorizeSnapshotAccessMessage;
|
|
136
449
|
(function (AuthorizeSnapshotAccessMessage) {
|
|
137
450
|
AuthorizeSnapshotAccessMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -144,6 +457,54 @@ export var AuthorizeSnapshotAccessResult;
|
|
|
144
457
|
(function (AuthorizeSnapshotAccessResult) {
|
|
145
458
|
AuthorizeSnapshotAccessResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
459
|
})(AuthorizeSnapshotAccessResult || (AuthorizeSnapshotAccessResult = {}));
|
|
460
|
+
var ClusterSnapshotNotFoundFault = (function (_super) {
|
|
461
|
+
__extends(ClusterSnapshotNotFoundFault, _super);
|
|
462
|
+
function ClusterSnapshotNotFoundFault(opts) {
|
|
463
|
+
var _this = _super.call(this, __assign({ name: "ClusterSnapshotNotFoundFault", $fault: "client" }, opts)) || this;
|
|
464
|
+
_this.name = "ClusterSnapshotNotFoundFault";
|
|
465
|
+
_this.$fault = "client";
|
|
466
|
+
Object.setPrototypeOf(_this, ClusterSnapshotNotFoundFault.prototype);
|
|
467
|
+
return _this;
|
|
468
|
+
}
|
|
469
|
+
return ClusterSnapshotNotFoundFault;
|
|
470
|
+
}(__BaseException));
|
|
471
|
+
export { ClusterSnapshotNotFoundFault };
|
|
472
|
+
var DependentServiceRequestThrottlingFault = (function (_super) {
|
|
473
|
+
__extends(DependentServiceRequestThrottlingFault, _super);
|
|
474
|
+
function DependentServiceRequestThrottlingFault(opts) {
|
|
475
|
+
var _this = _super.call(this, __assign({ name: "DependentServiceRequestThrottlingFault", $fault: "client" }, opts)) || this;
|
|
476
|
+
_this.name = "DependentServiceRequestThrottlingFault";
|
|
477
|
+
_this.$fault = "client";
|
|
478
|
+
Object.setPrototypeOf(_this, DependentServiceRequestThrottlingFault.prototype);
|
|
479
|
+
return _this;
|
|
480
|
+
}
|
|
481
|
+
return DependentServiceRequestThrottlingFault;
|
|
482
|
+
}(__BaseException));
|
|
483
|
+
export { DependentServiceRequestThrottlingFault };
|
|
484
|
+
var InvalidClusterSnapshotStateFault = (function (_super) {
|
|
485
|
+
__extends(InvalidClusterSnapshotStateFault, _super);
|
|
486
|
+
function InvalidClusterSnapshotStateFault(opts) {
|
|
487
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterSnapshotStateFault", $fault: "client" }, opts)) || this;
|
|
488
|
+
_this.name = "InvalidClusterSnapshotStateFault";
|
|
489
|
+
_this.$fault = "client";
|
|
490
|
+
Object.setPrototypeOf(_this, InvalidClusterSnapshotStateFault.prototype);
|
|
491
|
+
return _this;
|
|
492
|
+
}
|
|
493
|
+
return InvalidClusterSnapshotStateFault;
|
|
494
|
+
}(__BaseException));
|
|
495
|
+
export { InvalidClusterSnapshotStateFault };
|
|
496
|
+
var LimitExceededFault = (function (_super) {
|
|
497
|
+
__extends(LimitExceededFault, _super);
|
|
498
|
+
function LimitExceededFault(opts) {
|
|
499
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededFault", $fault: "client" }, opts)) || this;
|
|
500
|
+
_this.name = "LimitExceededFault";
|
|
501
|
+
_this.$fault = "client";
|
|
502
|
+
Object.setPrototypeOf(_this, LimitExceededFault.prototype);
|
|
503
|
+
return _this;
|
|
504
|
+
}
|
|
505
|
+
return LimitExceededFault;
|
|
506
|
+
}(__BaseException));
|
|
507
|
+
export { LimitExceededFault };
|
|
147
508
|
export var SupportedPlatform;
|
|
148
509
|
(function (SupportedPlatform) {
|
|
149
510
|
SupportedPlatform.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -168,6 +529,30 @@ export var BatchDeleteClusterSnapshotsResult;
|
|
|
168
529
|
(function (BatchDeleteClusterSnapshotsResult) {
|
|
169
530
|
BatchDeleteClusterSnapshotsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
531
|
})(BatchDeleteClusterSnapshotsResult || (BatchDeleteClusterSnapshotsResult = {}));
|
|
532
|
+
var BatchDeleteRequestSizeExceededFault = (function (_super) {
|
|
533
|
+
__extends(BatchDeleteRequestSizeExceededFault, _super);
|
|
534
|
+
function BatchDeleteRequestSizeExceededFault(opts) {
|
|
535
|
+
var _this = _super.call(this, __assign({ name: "BatchDeleteRequestSizeExceededFault", $fault: "client" }, opts)) || this;
|
|
536
|
+
_this.name = "BatchDeleteRequestSizeExceededFault";
|
|
537
|
+
_this.$fault = "client";
|
|
538
|
+
Object.setPrototypeOf(_this, BatchDeleteRequestSizeExceededFault.prototype);
|
|
539
|
+
return _this;
|
|
540
|
+
}
|
|
541
|
+
return BatchDeleteRequestSizeExceededFault;
|
|
542
|
+
}(__BaseException));
|
|
543
|
+
export { BatchDeleteRequestSizeExceededFault };
|
|
544
|
+
var BatchModifyClusterSnapshotsLimitExceededFault = (function (_super) {
|
|
545
|
+
__extends(BatchModifyClusterSnapshotsLimitExceededFault, _super);
|
|
546
|
+
function BatchModifyClusterSnapshotsLimitExceededFault(opts) {
|
|
547
|
+
var _this = _super.call(this, __assign({ name: "BatchModifyClusterSnapshotsLimitExceededFault", $fault: "client" }, opts)) || this;
|
|
548
|
+
_this.name = "BatchModifyClusterSnapshotsLimitExceededFault";
|
|
549
|
+
_this.$fault = "client";
|
|
550
|
+
Object.setPrototypeOf(_this, BatchModifyClusterSnapshotsLimitExceededFault.prototype);
|
|
551
|
+
return _this;
|
|
552
|
+
}
|
|
553
|
+
return BatchModifyClusterSnapshotsLimitExceededFault;
|
|
554
|
+
}(__BaseException));
|
|
555
|
+
export { BatchModifyClusterSnapshotsLimitExceededFault };
|
|
171
556
|
export var BatchModifyClusterSnapshotsMessage;
|
|
172
557
|
(function (BatchModifyClusterSnapshotsMessage) {
|
|
173
558
|
BatchModifyClusterSnapshotsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -176,10 +561,46 @@ export var BatchModifyClusterSnapshotsOutputMessage;
|
|
|
176
561
|
(function (BatchModifyClusterSnapshotsOutputMessage) {
|
|
177
562
|
BatchModifyClusterSnapshotsOutputMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
563
|
})(BatchModifyClusterSnapshotsOutputMessage || (BatchModifyClusterSnapshotsOutputMessage = {}));
|
|
564
|
+
var InvalidRetentionPeriodFault = (function (_super) {
|
|
565
|
+
__extends(InvalidRetentionPeriodFault, _super);
|
|
566
|
+
function InvalidRetentionPeriodFault(opts) {
|
|
567
|
+
var _this = _super.call(this, __assign({ name: "InvalidRetentionPeriodFault", $fault: "client" }, opts)) || this;
|
|
568
|
+
_this.name = "InvalidRetentionPeriodFault";
|
|
569
|
+
_this.$fault = "client";
|
|
570
|
+
Object.setPrototypeOf(_this, InvalidRetentionPeriodFault.prototype);
|
|
571
|
+
return _this;
|
|
572
|
+
}
|
|
573
|
+
return InvalidRetentionPeriodFault;
|
|
574
|
+
}(__BaseException));
|
|
575
|
+
export { InvalidRetentionPeriodFault };
|
|
576
|
+
var BucketNotFoundFault = (function (_super) {
|
|
577
|
+
__extends(BucketNotFoundFault, _super);
|
|
578
|
+
function BucketNotFoundFault(opts) {
|
|
579
|
+
var _this = _super.call(this, __assign({ name: "BucketNotFoundFault", $fault: "client" }, opts)) || this;
|
|
580
|
+
_this.name = "BucketNotFoundFault";
|
|
581
|
+
_this.$fault = "client";
|
|
582
|
+
Object.setPrototypeOf(_this, BucketNotFoundFault.prototype);
|
|
583
|
+
return _this;
|
|
584
|
+
}
|
|
585
|
+
return BucketNotFoundFault;
|
|
586
|
+
}(__BaseException));
|
|
587
|
+
export { BucketNotFoundFault };
|
|
179
588
|
export var CancelResizeMessage;
|
|
180
589
|
(function (CancelResizeMessage) {
|
|
181
590
|
CancelResizeMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
591
|
})(CancelResizeMessage || (CancelResizeMessage = {}));
|
|
592
|
+
var ResizeNotFoundFault = (function (_super) {
|
|
593
|
+
__extends(ResizeNotFoundFault, _super);
|
|
594
|
+
function ResizeNotFoundFault(opts) {
|
|
595
|
+
var _this = _super.call(this, __assign({ name: "ResizeNotFoundFault", $fault: "client" }, opts)) || this;
|
|
596
|
+
_this.name = "ResizeNotFoundFault";
|
|
597
|
+
_this.$fault = "client";
|
|
598
|
+
Object.setPrototypeOf(_this, ResizeNotFoundFault.prototype);
|
|
599
|
+
return _this;
|
|
600
|
+
}
|
|
601
|
+
return ResizeNotFoundFault;
|
|
602
|
+
}(__BaseException));
|
|
603
|
+
export { ResizeNotFoundFault };
|
|
183
604
|
export var ResizeProgressMessage;
|
|
184
605
|
(function (ResizeProgressMessage) {
|
|
185
606
|
ResizeProgressMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -269,6 +690,18 @@ export var Cluster;
|
|
|
269
690
|
(function (Cluster) {
|
|
270
691
|
Cluster.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
692
|
})(Cluster || (Cluster = {}));
|
|
693
|
+
var ClusterAlreadyExistsFault = (function (_super) {
|
|
694
|
+
__extends(ClusterAlreadyExistsFault, _super);
|
|
695
|
+
function ClusterAlreadyExistsFault(opts) {
|
|
696
|
+
var _this = _super.call(this, __assign({ name: "ClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
697
|
+
_this.name = "ClusterAlreadyExistsFault";
|
|
698
|
+
_this.$fault = "client";
|
|
699
|
+
Object.setPrototypeOf(_this, ClusterAlreadyExistsFault.prototype);
|
|
700
|
+
return _this;
|
|
701
|
+
}
|
|
702
|
+
return ClusterAlreadyExistsFault;
|
|
703
|
+
}(__BaseException));
|
|
704
|
+
export { ClusterAlreadyExistsFault };
|
|
272
705
|
export var ClusterCredentials;
|
|
273
706
|
(function (ClusterCredentials) {
|
|
274
707
|
ClusterCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DbPassword && { DbPassword: SENSITIVE_STRING }))); };
|
|
@@ -285,10 +718,34 @@ export var ClusterDbRevisionsMessage;
|
|
|
285
718
|
(function (ClusterDbRevisionsMessage) {
|
|
286
719
|
ClusterDbRevisionsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
720
|
})(ClusterDbRevisionsMessage || (ClusterDbRevisionsMessage = {}));
|
|
721
|
+
var ClusterOnLatestRevisionFault = (function (_super) {
|
|
722
|
+
__extends(ClusterOnLatestRevisionFault, _super);
|
|
723
|
+
function ClusterOnLatestRevisionFault(opts) {
|
|
724
|
+
var _this = _super.call(this, __assign({ name: "ClusterOnLatestRevisionFault", $fault: "client" }, opts)) || this;
|
|
725
|
+
_this.name = "ClusterOnLatestRevisionFault";
|
|
726
|
+
_this.$fault = "client";
|
|
727
|
+
Object.setPrototypeOf(_this, ClusterOnLatestRevisionFault.prototype);
|
|
728
|
+
return _this;
|
|
729
|
+
}
|
|
730
|
+
return ClusterOnLatestRevisionFault;
|
|
731
|
+
}(__BaseException));
|
|
732
|
+
export { ClusterOnLatestRevisionFault };
|
|
288
733
|
export var ClusterParameterGroup;
|
|
289
734
|
(function (ClusterParameterGroup) {
|
|
290
735
|
ClusterParameterGroup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
736
|
})(ClusterParameterGroup || (ClusterParameterGroup = {}));
|
|
737
|
+
var ClusterParameterGroupAlreadyExistsFault = (function (_super) {
|
|
738
|
+
__extends(ClusterParameterGroupAlreadyExistsFault, _super);
|
|
739
|
+
function ClusterParameterGroupAlreadyExistsFault(opts) {
|
|
740
|
+
var _this = _super.call(this, __assign({ name: "ClusterParameterGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
741
|
+
_this.name = "ClusterParameterGroupAlreadyExistsFault";
|
|
742
|
+
_this.$fault = "client";
|
|
743
|
+
Object.setPrototypeOf(_this, ClusterParameterGroupAlreadyExistsFault.prototype);
|
|
744
|
+
return _this;
|
|
745
|
+
}
|
|
746
|
+
return ClusterParameterGroupAlreadyExistsFault;
|
|
747
|
+
}(__BaseException));
|
|
748
|
+
export { ClusterParameterGroupAlreadyExistsFault };
|
|
292
749
|
export var Parameter;
|
|
293
750
|
(function (Parameter) {
|
|
294
751
|
Parameter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -301,18 +758,102 @@ export var ClusterParameterGroupNameMessage;
|
|
|
301
758
|
(function (ClusterParameterGroupNameMessage) {
|
|
302
759
|
ClusterParameterGroupNameMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
760
|
})(ClusterParameterGroupNameMessage || (ClusterParameterGroupNameMessage = {}));
|
|
761
|
+
var ClusterParameterGroupNotFoundFault = (function (_super) {
|
|
762
|
+
__extends(ClusterParameterGroupNotFoundFault, _super);
|
|
763
|
+
function ClusterParameterGroupNotFoundFault(opts) {
|
|
764
|
+
var _this = _super.call(this, __assign({ name: "ClusterParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
765
|
+
_this.name = "ClusterParameterGroupNotFoundFault";
|
|
766
|
+
_this.$fault = "client";
|
|
767
|
+
Object.setPrototypeOf(_this, ClusterParameterGroupNotFoundFault.prototype);
|
|
768
|
+
return _this;
|
|
769
|
+
}
|
|
770
|
+
return ClusterParameterGroupNotFoundFault;
|
|
771
|
+
}(__BaseException));
|
|
772
|
+
export { ClusterParameterGroupNotFoundFault };
|
|
773
|
+
var ClusterParameterGroupQuotaExceededFault = (function (_super) {
|
|
774
|
+
__extends(ClusterParameterGroupQuotaExceededFault, _super);
|
|
775
|
+
function ClusterParameterGroupQuotaExceededFault(opts) {
|
|
776
|
+
var _this = _super.call(this, __assign({ name: "ClusterParameterGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
777
|
+
_this.name = "ClusterParameterGroupQuotaExceededFault";
|
|
778
|
+
_this.$fault = "client";
|
|
779
|
+
Object.setPrototypeOf(_this, ClusterParameterGroupQuotaExceededFault.prototype);
|
|
780
|
+
return _this;
|
|
781
|
+
}
|
|
782
|
+
return ClusterParameterGroupQuotaExceededFault;
|
|
783
|
+
}(__BaseException));
|
|
784
|
+
export { ClusterParameterGroupQuotaExceededFault };
|
|
304
785
|
export var ClusterParameterGroupsMessage;
|
|
305
786
|
(function (ClusterParameterGroupsMessage) {
|
|
306
787
|
ClusterParameterGroupsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
788
|
})(ClusterParameterGroupsMessage || (ClusterParameterGroupsMessage = {}));
|
|
789
|
+
var ClusterQuotaExceededFault = (function (_super) {
|
|
790
|
+
__extends(ClusterQuotaExceededFault, _super);
|
|
791
|
+
function ClusterQuotaExceededFault(opts) {
|
|
792
|
+
var _this = _super.call(this, __assign({ name: "ClusterQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
793
|
+
_this.name = "ClusterQuotaExceededFault";
|
|
794
|
+
_this.$fault = "client";
|
|
795
|
+
Object.setPrototypeOf(_this, ClusterQuotaExceededFault.prototype);
|
|
796
|
+
return _this;
|
|
797
|
+
}
|
|
798
|
+
return ClusterQuotaExceededFault;
|
|
799
|
+
}(__BaseException));
|
|
800
|
+
export { ClusterQuotaExceededFault };
|
|
801
|
+
var ClusterSecurityGroupAlreadyExistsFault = (function (_super) {
|
|
802
|
+
__extends(ClusterSecurityGroupAlreadyExistsFault, _super);
|
|
803
|
+
function ClusterSecurityGroupAlreadyExistsFault(opts) {
|
|
804
|
+
var _this = _super.call(this, __assign({ name: "ClusterSecurityGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
805
|
+
_this.name = "ClusterSecurityGroupAlreadyExistsFault";
|
|
806
|
+
_this.$fault = "client";
|
|
807
|
+
Object.setPrototypeOf(_this, ClusterSecurityGroupAlreadyExistsFault.prototype);
|
|
808
|
+
return _this;
|
|
809
|
+
}
|
|
810
|
+
return ClusterSecurityGroupAlreadyExistsFault;
|
|
811
|
+
}(__BaseException));
|
|
812
|
+
export { ClusterSecurityGroupAlreadyExistsFault };
|
|
308
813
|
export var ClusterSecurityGroupMessage;
|
|
309
814
|
(function (ClusterSecurityGroupMessage) {
|
|
310
815
|
ClusterSecurityGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
816
|
})(ClusterSecurityGroupMessage || (ClusterSecurityGroupMessage = {}));
|
|
817
|
+
var ClusterSecurityGroupQuotaExceededFault = (function (_super) {
|
|
818
|
+
__extends(ClusterSecurityGroupQuotaExceededFault, _super);
|
|
819
|
+
function ClusterSecurityGroupQuotaExceededFault(opts) {
|
|
820
|
+
var _this = _super.call(this, __assign({ name: "ClusterSecurityGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
821
|
+
_this.name = "ClusterSecurityGroupQuotaExceededFault";
|
|
822
|
+
_this.$fault = "client";
|
|
823
|
+
Object.setPrototypeOf(_this, ClusterSecurityGroupQuotaExceededFault.prototype);
|
|
824
|
+
return _this;
|
|
825
|
+
}
|
|
826
|
+
return ClusterSecurityGroupQuotaExceededFault;
|
|
827
|
+
}(__BaseException));
|
|
828
|
+
export { ClusterSecurityGroupQuotaExceededFault };
|
|
312
829
|
export var ClustersMessage;
|
|
313
830
|
(function (ClustersMessage) {
|
|
314
831
|
ClustersMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
832
|
})(ClustersMessage || (ClustersMessage = {}));
|
|
833
|
+
var ClusterSnapshotAlreadyExistsFault = (function (_super) {
|
|
834
|
+
__extends(ClusterSnapshotAlreadyExistsFault, _super);
|
|
835
|
+
function ClusterSnapshotAlreadyExistsFault(opts) {
|
|
836
|
+
var _this = _super.call(this, __assign({ name: "ClusterSnapshotAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
837
|
+
_this.name = "ClusterSnapshotAlreadyExistsFault";
|
|
838
|
+
_this.$fault = "client";
|
|
839
|
+
Object.setPrototypeOf(_this, ClusterSnapshotAlreadyExistsFault.prototype);
|
|
840
|
+
return _this;
|
|
841
|
+
}
|
|
842
|
+
return ClusterSnapshotAlreadyExistsFault;
|
|
843
|
+
}(__BaseException));
|
|
844
|
+
export { ClusterSnapshotAlreadyExistsFault };
|
|
845
|
+
var ClusterSnapshotQuotaExceededFault = (function (_super) {
|
|
846
|
+
__extends(ClusterSnapshotQuotaExceededFault, _super);
|
|
847
|
+
function ClusterSnapshotQuotaExceededFault(opts) {
|
|
848
|
+
var _this = _super.call(this, __assign({ name: "ClusterSnapshotQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
849
|
+
_this.name = "ClusterSnapshotQuotaExceededFault";
|
|
850
|
+
_this.$fault = "client";
|
|
851
|
+
Object.setPrototypeOf(_this, ClusterSnapshotQuotaExceededFault.prototype);
|
|
852
|
+
return _this;
|
|
853
|
+
}
|
|
854
|
+
return ClusterSnapshotQuotaExceededFault;
|
|
855
|
+
}(__BaseException));
|
|
856
|
+
export { ClusterSnapshotQuotaExceededFault };
|
|
316
857
|
export var Subnet;
|
|
317
858
|
(function (Subnet) {
|
|
318
859
|
Subnet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -321,10 +862,58 @@ export var ClusterSubnetGroup;
|
|
|
321
862
|
(function (ClusterSubnetGroup) {
|
|
322
863
|
ClusterSubnetGroup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
864
|
})(ClusterSubnetGroup || (ClusterSubnetGroup = {}));
|
|
865
|
+
var ClusterSubnetGroupAlreadyExistsFault = (function (_super) {
|
|
866
|
+
__extends(ClusterSubnetGroupAlreadyExistsFault, _super);
|
|
867
|
+
function ClusterSubnetGroupAlreadyExistsFault(opts) {
|
|
868
|
+
var _this = _super.call(this, __assign({ name: "ClusterSubnetGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
869
|
+
_this.name = "ClusterSubnetGroupAlreadyExistsFault";
|
|
870
|
+
_this.$fault = "client";
|
|
871
|
+
Object.setPrototypeOf(_this, ClusterSubnetGroupAlreadyExistsFault.prototype);
|
|
872
|
+
return _this;
|
|
873
|
+
}
|
|
874
|
+
return ClusterSubnetGroupAlreadyExistsFault;
|
|
875
|
+
}(__BaseException));
|
|
876
|
+
export { ClusterSubnetGroupAlreadyExistsFault };
|
|
324
877
|
export var ClusterSubnetGroupMessage;
|
|
325
878
|
(function (ClusterSubnetGroupMessage) {
|
|
326
879
|
ClusterSubnetGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
880
|
})(ClusterSubnetGroupMessage || (ClusterSubnetGroupMessage = {}));
|
|
881
|
+
var ClusterSubnetGroupNotFoundFault = (function (_super) {
|
|
882
|
+
__extends(ClusterSubnetGroupNotFoundFault, _super);
|
|
883
|
+
function ClusterSubnetGroupNotFoundFault(opts) {
|
|
884
|
+
var _this = _super.call(this, __assign({ name: "ClusterSubnetGroupNotFoundFault", $fault: "client" }, opts)) || this;
|
|
885
|
+
_this.name = "ClusterSubnetGroupNotFoundFault";
|
|
886
|
+
_this.$fault = "client";
|
|
887
|
+
Object.setPrototypeOf(_this, ClusterSubnetGroupNotFoundFault.prototype);
|
|
888
|
+
return _this;
|
|
889
|
+
}
|
|
890
|
+
return ClusterSubnetGroupNotFoundFault;
|
|
891
|
+
}(__BaseException));
|
|
892
|
+
export { ClusterSubnetGroupNotFoundFault };
|
|
893
|
+
var ClusterSubnetGroupQuotaExceededFault = (function (_super) {
|
|
894
|
+
__extends(ClusterSubnetGroupQuotaExceededFault, _super);
|
|
895
|
+
function ClusterSubnetGroupQuotaExceededFault(opts) {
|
|
896
|
+
var _this = _super.call(this, __assign({ name: "ClusterSubnetGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
897
|
+
_this.name = "ClusterSubnetGroupQuotaExceededFault";
|
|
898
|
+
_this.$fault = "client";
|
|
899
|
+
Object.setPrototypeOf(_this, ClusterSubnetGroupQuotaExceededFault.prototype);
|
|
900
|
+
return _this;
|
|
901
|
+
}
|
|
902
|
+
return ClusterSubnetGroupQuotaExceededFault;
|
|
903
|
+
}(__BaseException));
|
|
904
|
+
export { ClusterSubnetGroupQuotaExceededFault };
|
|
905
|
+
var ClusterSubnetQuotaExceededFault = (function (_super) {
|
|
906
|
+
__extends(ClusterSubnetQuotaExceededFault, _super);
|
|
907
|
+
function ClusterSubnetQuotaExceededFault(opts) {
|
|
908
|
+
var _this = _super.call(this, __assign({ name: "ClusterSubnetQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
909
|
+
_this.name = "ClusterSubnetQuotaExceededFault";
|
|
910
|
+
_this.$fault = "client";
|
|
911
|
+
Object.setPrototypeOf(_this, ClusterSubnetQuotaExceededFault.prototype);
|
|
912
|
+
return _this;
|
|
913
|
+
}
|
|
914
|
+
return ClusterSubnetQuotaExceededFault;
|
|
915
|
+
}(__BaseException));
|
|
916
|
+
export { ClusterSubnetQuotaExceededFault };
|
|
328
917
|
export var ClusterVersion;
|
|
329
918
|
(function (ClusterVersion) {
|
|
330
919
|
ClusterVersion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -341,6 +930,18 @@ export var CopyClusterSnapshotResult;
|
|
|
341
930
|
(function (CopyClusterSnapshotResult) {
|
|
342
931
|
CopyClusterSnapshotResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
932
|
})(CopyClusterSnapshotResult || (CopyClusterSnapshotResult = {}));
|
|
933
|
+
var CopyToRegionDisabledFault = (function (_super) {
|
|
934
|
+
__extends(CopyToRegionDisabledFault, _super);
|
|
935
|
+
function CopyToRegionDisabledFault(opts) {
|
|
936
|
+
var _this = _super.call(this, __assign({ name: "CopyToRegionDisabledFault", $fault: "client" }, opts)) || this;
|
|
937
|
+
_this.name = "CopyToRegionDisabledFault";
|
|
938
|
+
_this.$fault = "client";
|
|
939
|
+
Object.setPrototypeOf(_this, CopyToRegionDisabledFault.prototype);
|
|
940
|
+
return _this;
|
|
941
|
+
}
|
|
942
|
+
return CopyToRegionDisabledFault;
|
|
943
|
+
}(__BaseException));
|
|
944
|
+
export { CopyToRegionDisabledFault };
|
|
344
945
|
export var CreateAuthenticationProfileMessage;
|
|
345
946
|
(function (CreateAuthenticationProfileMessage) {
|
|
346
947
|
CreateAuthenticationProfileMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -349,6 +950,18 @@ export var CreateAuthenticationProfileResult;
|
|
|
349
950
|
(function (CreateAuthenticationProfileResult) {
|
|
350
951
|
CreateAuthenticationProfileResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
952
|
})(CreateAuthenticationProfileResult || (CreateAuthenticationProfileResult = {}));
|
|
953
|
+
var InvalidAuthenticationProfileRequestFault = (function (_super) {
|
|
954
|
+
__extends(InvalidAuthenticationProfileRequestFault, _super);
|
|
955
|
+
function InvalidAuthenticationProfileRequestFault(opts) {
|
|
956
|
+
var _this = _super.call(this, __assign({ name: "InvalidAuthenticationProfileRequestFault", $fault: "client" }, opts)) || this;
|
|
957
|
+
_this.name = "InvalidAuthenticationProfileRequestFault";
|
|
958
|
+
_this.$fault = "client";
|
|
959
|
+
Object.setPrototypeOf(_this, InvalidAuthenticationProfileRequestFault.prototype);
|
|
960
|
+
return _this;
|
|
961
|
+
}
|
|
962
|
+
return InvalidAuthenticationProfileRequestFault;
|
|
963
|
+
}(__BaseException));
|
|
964
|
+
export { InvalidAuthenticationProfileRequestFault };
|
|
352
965
|
export var CreateClusterMessage;
|
|
353
966
|
(function (CreateClusterMessage) {
|
|
354
967
|
CreateClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -357,6 +970,174 @@ export var CreateClusterResult;
|
|
|
357
970
|
(function (CreateClusterResult) {
|
|
358
971
|
CreateClusterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
972
|
})(CreateClusterResult || (CreateClusterResult = {}));
|
|
973
|
+
var HsmClientCertificateNotFoundFault = (function (_super) {
|
|
974
|
+
__extends(HsmClientCertificateNotFoundFault, _super);
|
|
975
|
+
function HsmClientCertificateNotFoundFault(opts) {
|
|
976
|
+
var _this = _super.call(this, __assign({ name: "HsmClientCertificateNotFoundFault", $fault: "client" }, opts)) || this;
|
|
977
|
+
_this.name = "HsmClientCertificateNotFoundFault";
|
|
978
|
+
_this.$fault = "client";
|
|
979
|
+
Object.setPrototypeOf(_this, HsmClientCertificateNotFoundFault.prototype);
|
|
980
|
+
return _this;
|
|
981
|
+
}
|
|
982
|
+
return HsmClientCertificateNotFoundFault;
|
|
983
|
+
}(__BaseException));
|
|
984
|
+
export { HsmClientCertificateNotFoundFault };
|
|
985
|
+
var HsmConfigurationNotFoundFault = (function (_super) {
|
|
986
|
+
__extends(HsmConfigurationNotFoundFault, _super);
|
|
987
|
+
function HsmConfigurationNotFoundFault(opts) {
|
|
988
|
+
var _this = _super.call(this, __assign({ name: "HsmConfigurationNotFoundFault", $fault: "client" }, opts)) || this;
|
|
989
|
+
_this.name = "HsmConfigurationNotFoundFault";
|
|
990
|
+
_this.$fault = "client";
|
|
991
|
+
Object.setPrototypeOf(_this, HsmConfigurationNotFoundFault.prototype);
|
|
992
|
+
return _this;
|
|
993
|
+
}
|
|
994
|
+
return HsmConfigurationNotFoundFault;
|
|
995
|
+
}(__BaseException));
|
|
996
|
+
export { HsmConfigurationNotFoundFault };
|
|
997
|
+
var InsufficientClusterCapacityFault = (function (_super) {
|
|
998
|
+
__extends(InsufficientClusterCapacityFault, _super);
|
|
999
|
+
function InsufficientClusterCapacityFault(opts) {
|
|
1000
|
+
var _this = _super.call(this, __assign({ name: "InsufficientClusterCapacityFault", $fault: "client" }, opts)) || this;
|
|
1001
|
+
_this.name = "InsufficientClusterCapacityFault";
|
|
1002
|
+
_this.$fault = "client";
|
|
1003
|
+
Object.setPrototypeOf(_this, InsufficientClusterCapacityFault.prototype);
|
|
1004
|
+
return _this;
|
|
1005
|
+
}
|
|
1006
|
+
return InsufficientClusterCapacityFault;
|
|
1007
|
+
}(__BaseException));
|
|
1008
|
+
export { InsufficientClusterCapacityFault };
|
|
1009
|
+
var InvalidClusterSubnetGroupStateFault = (function (_super) {
|
|
1010
|
+
__extends(InvalidClusterSubnetGroupStateFault, _super);
|
|
1011
|
+
function InvalidClusterSubnetGroupStateFault(opts) {
|
|
1012
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterSubnetGroupStateFault", $fault: "client" }, opts)) || this;
|
|
1013
|
+
_this.name = "InvalidClusterSubnetGroupStateFault";
|
|
1014
|
+
_this.$fault = "client";
|
|
1015
|
+
Object.setPrototypeOf(_this, InvalidClusterSubnetGroupStateFault.prototype);
|
|
1016
|
+
return _this;
|
|
1017
|
+
}
|
|
1018
|
+
return InvalidClusterSubnetGroupStateFault;
|
|
1019
|
+
}(__BaseException));
|
|
1020
|
+
export { InvalidClusterSubnetGroupStateFault };
|
|
1021
|
+
var InvalidClusterTrackFault = (function (_super) {
|
|
1022
|
+
__extends(InvalidClusterTrackFault, _super);
|
|
1023
|
+
function InvalidClusterTrackFault(opts) {
|
|
1024
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterTrackFault", $fault: "client" }, opts)) || this;
|
|
1025
|
+
_this.name = "InvalidClusterTrackFault";
|
|
1026
|
+
_this.$fault = "client";
|
|
1027
|
+
Object.setPrototypeOf(_this, InvalidClusterTrackFault.prototype);
|
|
1028
|
+
return _this;
|
|
1029
|
+
}
|
|
1030
|
+
return InvalidClusterTrackFault;
|
|
1031
|
+
}(__BaseException));
|
|
1032
|
+
export { InvalidClusterTrackFault };
|
|
1033
|
+
var InvalidElasticIpFault = (function (_super) {
|
|
1034
|
+
__extends(InvalidElasticIpFault, _super);
|
|
1035
|
+
function InvalidElasticIpFault(opts) {
|
|
1036
|
+
var _this = _super.call(this, __assign({ name: "InvalidElasticIpFault", $fault: "client" }, opts)) || this;
|
|
1037
|
+
_this.name = "InvalidElasticIpFault";
|
|
1038
|
+
_this.$fault = "client";
|
|
1039
|
+
Object.setPrototypeOf(_this, InvalidElasticIpFault.prototype);
|
|
1040
|
+
return _this;
|
|
1041
|
+
}
|
|
1042
|
+
return InvalidElasticIpFault;
|
|
1043
|
+
}(__BaseException));
|
|
1044
|
+
export { InvalidElasticIpFault };
|
|
1045
|
+
var InvalidSubnet = (function (_super) {
|
|
1046
|
+
__extends(InvalidSubnet, _super);
|
|
1047
|
+
function InvalidSubnet(opts) {
|
|
1048
|
+
var _this = _super.call(this, __assign({ name: "InvalidSubnet", $fault: "client" }, opts)) || this;
|
|
1049
|
+
_this.name = "InvalidSubnet";
|
|
1050
|
+
_this.$fault = "client";
|
|
1051
|
+
Object.setPrototypeOf(_this, InvalidSubnet.prototype);
|
|
1052
|
+
return _this;
|
|
1053
|
+
}
|
|
1054
|
+
return InvalidSubnet;
|
|
1055
|
+
}(__BaseException));
|
|
1056
|
+
export { InvalidSubnet };
|
|
1057
|
+
var InvalidTagFault = (function (_super) {
|
|
1058
|
+
__extends(InvalidTagFault, _super);
|
|
1059
|
+
function InvalidTagFault(opts) {
|
|
1060
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagFault", $fault: "client" }, opts)) || this;
|
|
1061
|
+
_this.name = "InvalidTagFault";
|
|
1062
|
+
_this.$fault = "client";
|
|
1063
|
+
Object.setPrototypeOf(_this, InvalidTagFault.prototype);
|
|
1064
|
+
return _this;
|
|
1065
|
+
}
|
|
1066
|
+
return InvalidTagFault;
|
|
1067
|
+
}(__BaseException));
|
|
1068
|
+
export { InvalidTagFault };
|
|
1069
|
+
var InvalidVPCNetworkStateFault = (function (_super) {
|
|
1070
|
+
__extends(InvalidVPCNetworkStateFault, _super);
|
|
1071
|
+
function InvalidVPCNetworkStateFault(opts) {
|
|
1072
|
+
var _this = _super.call(this, __assign({ name: "InvalidVPCNetworkStateFault", $fault: "client" }, opts)) || this;
|
|
1073
|
+
_this.name = "InvalidVPCNetworkStateFault";
|
|
1074
|
+
_this.$fault = "client";
|
|
1075
|
+
Object.setPrototypeOf(_this, InvalidVPCNetworkStateFault.prototype);
|
|
1076
|
+
return _this;
|
|
1077
|
+
}
|
|
1078
|
+
return InvalidVPCNetworkStateFault;
|
|
1079
|
+
}(__BaseException));
|
|
1080
|
+
export { InvalidVPCNetworkStateFault };
|
|
1081
|
+
var NumberOfNodesPerClusterLimitExceededFault = (function (_super) {
|
|
1082
|
+
__extends(NumberOfNodesPerClusterLimitExceededFault, _super);
|
|
1083
|
+
function NumberOfNodesPerClusterLimitExceededFault(opts) {
|
|
1084
|
+
var _this = _super.call(this, __assign({ name: "NumberOfNodesPerClusterLimitExceededFault", $fault: "client" }, opts)) || this;
|
|
1085
|
+
_this.name = "NumberOfNodesPerClusterLimitExceededFault";
|
|
1086
|
+
_this.$fault = "client";
|
|
1087
|
+
Object.setPrototypeOf(_this, NumberOfNodesPerClusterLimitExceededFault.prototype);
|
|
1088
|
+
return _this;
|
|
1089
|
+
}
|
|
1090
|
+
return NumberOfNodesPerClusterLimitExceededFault;
|
|
1091
|
+
}(__BaseException));
|
|
1092
|
+
export { NumberOfNodesPerClusterLimitExceededFault };
|
|
1093
|
+
var NumberOfNodesQuotaExceededFault = (function (_super) {
|
|
1094
|
+
__extends(NumberOfNodesQuotaExceededFault, _super);
|
|
1095
|
+
function NumberOfNodesQuotaExceededFault(opts) {
|
|
1096
|
+
var _this = _super.call(this, __assign({ name: "NumberOfNodesQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1097
|
+
_this.name = "NumberOfNodesQuotaExceededFault";
|
|
1098
|
+
_this.$fault = "client";
|
|
1099
|
+
Object.setPrototypeOf(_this, NumberOfNodesQuotaExceededFault.prototype);
|
|
1100
|
+
return _this;
|
|
1101
|
+
}
|
|
1102
|
+
return NumberOfNodesQuotaExceededFault;
|
|
1103
|
+
}(__BaseException));
|
|
1104
|
+
export { NumberOfNodesQuotaExceededFault };
|
|
1105
|
+
var SnapshotScheduleNotFoundFault = (function (_super) {
|
|
1106
|
+
__extends(SnapshotScheduleNotFoundFault, _super);
|
|
1107
|
+
function SnapshotScheduleNotFoundFault(opts) {
|
|
1108
|
+
var _this = _super.call(this, __assign({ name: "SnapshotScheduleNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1109
|
+
_this.name = "SnapshotScheduleNotFoundFault";
|
|
1110
|
+
_this.$fault = "client";
|
|
1111
|
+
Object.setPrototypeOf(_this, SnapshotScheduleNotFoundFault.prototype);
|
|
1112
|
+
return _this;
|
|
1113
|
+
}
|
|
1114
|
+
return SnapshotScheduleNotFoundFault;
|
|
1115
|
+
}(__BaseException));
|
|
1116
|
+
export { SnapshotScheduleNotFoundFault };
|
|
1117
|
+
var TagLimitExceededFault = (function (_super) {
|
|
1118
|
+
__extends(TagLimitExceededFault, _super);
|
|
1119
|
+
function TagLimitExceededFault(opts) {
|
|
1120
|
+
var _this = _super.call(this, __assign({ name: "TagLimitExceededFault", $fault: "client" }, opts)) || this;
|
|
1121
|
+
_this.name = "TagLimitExceededFault";
|
|
1122
|
+
_this.$fault = "client";
|
|
1123
|
+
Object.setPrototypeOf(_this, TagLimitExceededFault.prototype);
|
|
1124
|
+
return _this;
|
|
1125
|
+
}
|
|
1126
|
+
return TagLimitExceededFault;
|
|
1127
|
+
}(__BaseException));
|
|
1128
|
+
export { TagLimitExceededFault };
|
|
1129
|
+
var UnauthorizedOperation = (function (_super) {
|
|
1130
|
+
__extends(UnauthorizedOperation, _super);
|
|
1131
|
+
function UnauthorizedOperation(opts) {
|
|
1132
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedOperation", $fault: "client" }, opts)) || this;
|
|
1133
|
+
_this.name = "UnauthorizedOperation";
|
|
1134
|
+
_this.$fault = "client";
|
|
1135
|
+
Object.setPrototypeOf(_this, UnauthorizedOperation.prototype);
|
|
1136
|
+
return _this;
|
|
1137
|
+
}
|
|
1138
|
+
return UnauthorizedOperation;
|
|
1139
|
+
}(__BaseException));
|
|
1140
|
+
export { UnauthorizedOperation };
|
|
360
1141
|
export var CreateClusterParameterGroupMessage;
|
|
361
1142
|
(function (CreateClusterParameterGroupMessage) {
|
|
362
1143
|
CreateClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -397,6 +1178,42 @@ export var EndpointAccess;
|
|
|
397
1178
|
(function (EndpointAccess) {
|
|
398
1179
|
EndpointAccess.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
399
1180
|
})(EndpointAccess || (EndpointAccess = {}));
|
|
1181
|
+
var EndpointAlreadyExistsFault = (function (_super) {
|
|
1182
|
+
__extends(EndpointAlreadyExistsFault, _super);
|
|
1183
|
+
function EndpointAlreadyExistsFault(opts) {
|
|
1184
|
+
var _this = _super.call(this, __assign({ name: "EndpointAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1185
|
+
_this.name = "EndpointAlreadyExistsFault";
|
|
1186
|
+
_this.$fault = "client";
|
|
1187
|
+
Object.setPrototypeOf(_this, EndpointAlreadyExistsFault.prototype);
|
|
1188
|
+
return _this;
|
|
1189
|
+
}
|
|
1190
|
+
return EndpointAlreadyExistsFault;
|
|
1191
|
+
}(__BaseException));
|
|
1192
|
+
export { EndpointAlreadyExistsFault };
|
|
1193
|
+
var EndpointsPerAuthorizationLimitExceededFault = (function (_super) {
|
|
1194
|
+
__extends(EndpointsPerAuthorizationLimitExceededFault, _super);
|
|
1195
|
+
function EndpointsPerAuthorizationLimitExceededFault(opts) {
|
|
1196
|
+
var _this = _super.call(this, __assign({ name: "EndpointsPerAuthorizationLimitExceededFault", $fault: "client" }, opts)) || this;
|
|
1197
|
+
_this.name = "EndpointsPerAuthorizationLimitExceededFault";
|
|
1198
|
+
_this.$fault = "client";
|
|
1199
|
+
Object.setPrototypeOf(_this, EndpointsPerAuthorizationLimitExceededFault.prototype);
|
|
1200
|
+
return _this;
|
|
1201
|
+
}
|
|
1202
|
+
return EndpointsPerAuthorizationLimitExceededFault;
|
|
1203
|
+
}(__BaseException));
|
|
1204
|
+
export { EndpointsPerAuthorizationLimitExceededFault };
|
|
1205
|
+
var EndpointsPerClusterLimitExceededFault = (function (_super) {
|
|
1206
|
+
__extends(EndpointsPerClusterLimitExceededFault, _super);
|
|
1207
|
+
function EndpointsPerClusterLimitExceededFault(opts) {
|
|
1208
|
+
var _this = _super.call(this, __assign({ name: "EndpointsPerClusterLimitExceededFault", $fault: "client" }, opts)) || this;
|
|
1209
|
+
_this.name = "EndpointsPerClusterLimitExceededFault";
|
|
1210
|
+
_this.$fault = "client";
|
|
1211
|
+
Object.setPrototypeOf(_this, EndpointsPerClusterLimitExceededFault.prototype);
|
|
1212
|
+
return _this;
|
|
1213
|
+
}
|
|
1214
|
+
return EndpointsPerClusterLimitExceededFault;
|
|
1215
|
+
}(__BaseException));
|
|
1216
|
+
export { EndpointsPerClusterLimitExceededFault };
|
|
400
1217
|
export var CreateEventSubscriptionMessage;
|
|
401
1218
|
(function (CreateEventSubscriptionMessage) {
|
|
402
1219
|
CreateEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -409,6 +1226,114 @@ export var CreateEventSubscriptionResult;
|
|
|
409
1226
|
(function (CreateEventSubscriptionResult) {
|
|
410
1227
|
CreateEventSubscriptionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
411
1228
|
})(CreateEventSubscriptionResult || (CreateEventSubscriptionResult = {}));
|
|
1229
|
+
var EventSubscriptionQuotaExceededFault = (function (_super) {
|
|
1230
|
+
__extends(EventSubscriptionQuotaExceededFault, _super);
|
|
1231
|
+
function EventSubscriptionQuotaExceededFault(opts) {
|
|
1232
|
+
var _this = _super.call(this, __assign({ name: "EventSubscriptionQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1233
|
+
_this.name = "EventSubscriptionQuotaExceededFault";
|
|
1234
|
+
_this.$fault = "client";
|
|
1235
|
+
Object.setPrototypeOf(_this, EventSubscriptionQuotaExceededFault.prototype);
|
|
1236
|
+
return _this;
|
|
1237
|
+
}
|
|
1238
|
+
return EventSubscriptionQuotaExceededFault;
|
|
1239
|
+
}(__BaseException));
|
|
1240
|
+
export { EventSubscriptionQuotaExceededFault };
|
|
1241
|
+
var SNSInvalidTopicFault = (function (_super) {
|
|
1242
|
+
__extends(SNSInvalidTopicFault, _super);
|
|
1243
|
+
function SNSInvalidTopicFault(opts) {
|
|
1244
|
+
var _this = _super.call(this, __assign({ name: "SNSInvalidTopicFault", $fault: "client" }, opts)) || this;
|
|
1245
|
+
_this.name = "SNSInvalidTopicFault";
|
|
1246
|
+
_this.$fault = "client";
|
|
1247
|
+
Object.setPrototypeOf(_this, SNSInvalidTopicFault.prototype);
|
|
1248
|
+
return _this;
|
|
1249
|
+
}
|
|
1250
|
+
return SNSInvalidTopicFault;
|
|
1251
|
+
}(__BaseException));
|
|
1252
|
+
export { SNSInvalidTopicFault };
|
|
1253
|
+
var SNSNoAuthorizationFault = (function (_super) {
|
|
1254
|
+
__extends(SNSNoAuthorizationFault, _super);
|
|
1255
|
+
function SNSNoAuthorizationFault(opts) {
|
|
1256
|
+
var _this = _super.call(this, __assign({ name: "SNSNoAuthorizationFault", $fault: "client" }, opts)) || this;
|
|
1257
|
+
_this.name = "SNSNoAuthorizationFault";
|
|
1258
|
+
_this.$fault = "client";
|
|
1259
|
+
Object.setPrototypeOf(_this, SNSNoAuthorizationFault.prototype);
|
|
1260
|
+
return _this;
|
|
1261
|
+
}
|
|
1262
|
+
return SNSNoAuthorizationFault;
|
|
1263
|
+
}(__BaseException));
|
|
1264
|
+
export { SNSNoAuthorizationFault };
|
|
1265
|
+
var SNSTopicArnNotFoundFault = (function (_super) {
|
|
1266
|
+
__extends(SNSTopicArnNotFoundFault, _super);
|
|
1267
|
+
function SNSTopicArnNotFoundFault(opts) {
|
|
1268
|
+
var _this = _super.call(this, __assign({ name: "SNSTopicArnNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1269
|
+
_this.name = "SNSTopicArnNotFoundFault";
|
|
1270
|
+
_this.$fault = "client";
|
|
1271
|
+
Object.setPrototypeOf(_this, SNSTopicArnNotFoundFault.prototype);
|
|
1272
|
+
return _this;
|
|
1273
|
+
}
|
|
1274
|
+
return SNSTopicArnNotFoundFault;
|
|
1275
|
+
}(__BaseException));
|
|
1276
|
+
export { SNSTopicArnNotFoundFault };
|
|
1277
|
+
var SourceNotFoundFault = (function (_super) {
|
|
1278
|
+
__extends(SourceNotFoundFault, _super);
|
|
1279
|
+
function SourceNotFoundFault(opts) {
|
|
1280
|
+
var _this = _super.call(this, __assign({ name: "SourceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1281
|
+
_this.name = "SourceNotFoundFault";
|
|
1282
|
+
_this.$fault = "client";
|
|
1283
|
+
Object.setPrototypeOf(_this, SourceNotFoundFault.prototype);
|
|
1284
|
+
return _this;
|
|
1285
|
+
}
|
|
1286
|
+
return SourceNotFoundFault;
|
|
1287
|
+
}(__BaseException));
|
|
1288
|
+
export { SourceNotFoundFault };
|
|
1289
|
+
var SubscriptionAlreadyExistFault = (function (_super) {
|
|
1290
|
+
__extends(SubscriptionAlreadyExistFault, _super);
|
|
1291
|
+
function SubscriptionAlreadyExistFault(opts) {
|
|
1292
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionAlreadyExistFault", $fault: "client" }, opts)) || this;
|
|
1293
|
+
_this.name = "SubscriptionAlreadyExistFault";
|
|
1294
|
+
_this.$fault = "client";
|
|
1295
|
+
Object.setPrototypeOf(_this, SubscriptionAlreadyExistFault.prototype);
|
|
1296
|
+
return _this;
|
|
1297
|
+
}
|
|
1298
|
+
return SubscriptionAlreadyExistFault;
|
|
1299
|
+
}(__BaseException));
|
|
1300
|
+
export { SubscriptionAlreadyExistFault };
|
|
1301
|
+
var SubscriptionCategoryNotFoundFault = (function (_super) {
|
|
1302
|
+
__extends(SubscriptionCategoryNotFoundFault, _super);
|
|
1303
|
+
function SubscriptionCategoryNotFoundFault(opts) {
|
|
1304
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionCategoryNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1305
|
+
_this.name = "SubscriptionCategoryNotFoundFault";
|
|
1306
|
+
_this.$fault = "client";
|
|
1307
|
+
Object.setPrototypeOf(_this, SubscriptionCategoryNotFoundFault.prototype);
|
|
1308
|
+
return _this;
|
|
1309
|
+
}
|
|
1310
|
+
return SubscriptionCategoryNotFoundFault;
|
|
1311
|
+
}(__BaseException));
|
|
1312
|
+
export { SubscriptionCategoryNotFoundFault };
|
|
1313
|
+
var SubscriptionEventIdNotFoundFault = (function (_super) {
|
|
1314
|
+
__extends(SubscriptionEventIdNotFoundFault, _super);
|
|
1315
|
+
function SubscriptionEventIdNotFoundFault(opts) {
|
|
1316
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionEventIdNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1317
|
+
_this.name = "SubscriptionEventIdNotFoundFault";
|
|
1318
|
+
_this.$fault = "client";
|
|
1319
|
+
Object.setPrototypeOf(_this, SubscriptionEventIdNotFoundFault.prototype);
|
|
1320
|
+
return _this;
|
|
1321
|
+
}
|
|
1322
|
+
return SubscriptionEventIdNotFoundFault;
|
|
1323
|
+
}(__BaseException));
|
|
1324
|
+
export { SubscriptionEventIdNotFoundFault };
|
|
1325
|
+
var SubscriptionSeverityNotFoundFault = (function (_super) {
|
|
1326
|
+
__extends(SubscriptionSeverityNotFoundFault, _super);
|
|
1327
|
+
function SubscriptionSeverityNotFoundFault(opts) {
|
|
1328
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionSeverityNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1329
|
+
_this.name = "SubscriptionSeverityNotFoundFault";
|
|
1330
|
+
_this.$fault = "client";
|
|
1331
|
+
Object.setPrototypeOf(_this, SubscriptionSeverityNotFoundFault.prototype);
|
|
1332
|
+
return _this;
|
|
1333
|
+
}
|
|
1334
|
+
return SubscriptionSeverityNotFoundFault;
|
|
1335
|
+
}(__BaseException));
|
|
1336
|
+
export { SubscriptionSeverityNotFoundFault };
|
|
412
1337
|
export var CreateHsmClientCertificateMessage;
|
|
413
1338
|
(function (CreateHsmClientCertificateMessage) {
|
|
414
1339
|
CreateHsmClientCertificateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -421,6 +1346,30 @@ export var CreateHsmClientCertificateResult;
|
|
|
421
1346
|
(function (CreateHsmClientCertificateResult) {
|
|
422
1347
|
CreateHsmClientCertificateResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
423
1348
|
})(CreateHsmClientCertificateResult || (CreateHsmClientCertificateResult = {}));
|
|
1349
|
+
var HsmClientCertificateAlreadyExistsFault = (function (_super) {
|
|
1350
|
+
__extends(HsmClientCertificateAlreadyExistsFault, _super);
|
|
1351
|
+
function HsmClientCertificateAlreadyExistsFault(opts) {
|
|
1352
|
+
var _this = _super.call(this, __assign({ name: "HsmClientCertificateAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1353
|
+
_this.name = "HsmClientCertificateAlreadyExistsFault";
|
|
1354
|
+
_this.$fault = "client";
|
|
1355
|
+
Object.setPrototypeOf(_this, HsmClientCertificateAlreadyExistsFault.prototype);
|
|
1356
|
+
return _this;
|
|
1357
|
+
}
|
|
1358
|
+
return HsmClientCertificateAlreadyExistsFault;
|
|
1359
|
+
}(__BaseException));
|
|
1360
|
+
export { HsmClientCertificateAlreadyExistsFault };
|
|
1361
|
+
var HsmClientCertificateQuotaExceededFault = (function (_super) {
|
|
1362
|
+
__extends(HsmClientCertificateQuotaExceededFault, _super);
|
|
1363
|
+
function HsmClientCertificateQuotaExceededFault(opts) {
|
|
1364
|
+
var _this = _super.call(this, __assign({ name: "HsmClientCertificateQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1365
|
+
_this.name = "HsmClientCertificateQuotaExceededFault";
|
|
1366
|
+
_this.$fault = "client";
|
|
1367
|
+
Object.setPrototypeOf(_this, HsmClientCertificateQuotaExceededFault.prototype);
|
|
1368
|
+
return _this;
|
|
1369
|
+
}
|
|
1370
|
+
return HsmClientCertificateQuotaExceededFault;
|
|
1371
|
+
}(__BaseException));
|
|
1372
|
+
export { HsmClientCertificateQuotaExceededFault };
|
|
424
1373
|
export var CreateHsmConfigurationMessage;
|
|
425
1374
|
(function (CreateHsmConfigurationMessage) {
|
|
426
1375
|
CreateHsmConfigurationMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -433,6 +1382,30 @@ export var CreateHsmConfigurationResult;
|
|
|
433
1382
|
(function (CreateHsmConfigurationResult) {
|
|
434
1383
|
CreateHsmConfigurationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
435
1384
|
})(CreateHsmConfigurationResult || (CreateHsmConfigurationResult = {}));
|
|
1385
|
+
var HsmConfigurationAlreadyExistsFault = (function (_super) {
|
|
1386
|
+
__extends(HsmConfigurationAlreadyExistsFault, _super);
|
|
1387
|
+
function HsmConfigurationAlreadyExistsFault(opts) {
|
|
1388
|
+
var _this = _super.call(this, __assign({ name: "HsmConfigurationAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1389
|
+
_this.name = "HsmConfigurationAlreadyExistsFault";
|
|
1390
|
+
_this.$fault = "client";
|
|
1391
|
+
Object.setPrototypeOf(_this, HsmConfigurationAlreadyExistsFault.prototype);
|
|
1392
|
+
return _this;
|
|
1393
|
+
}
|
|
1394
|
+
return HsmConfigurationAlreadyExistsFault;
|
|
1395
|
+
}(__BaseException));
|
|
1396
|
+
export { HsmConfigurationAlreadyExistsFault };
|
|
1397
|
+
var HsmConfigurationQuotaExceededFault = (function (_super) {
|
|
1398
|
+
__extends(HsmConfigurationQuotaExceededFault, _super);
|
|
1399
|
+
function HsmConfigurationQuotaExceededFault(opts) {
|
|
1400
|
+
var _this = _super.call(this, __assign({ name: "HsmConfigurationQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1401
|
+
_this.name = "HsmConfigurationQuotaExceededFault";
|
|
1402
|
+
_this.$fault = "client";
|
|
1403
|
+
Object.setPrototypeOf(_this, HsmConfigurationQuotaExceededFault.prototype);
|
|
1404
|
+
return _this;
|
|
1405
|
+
}
|
|
1406
|
+
return HsmConfigurationQuotaExceededFault;
|
|
1407
|
+
}(__BaseException));
|
|
1408
|
+
export { HsmConfigurationQuotaExceededFault };
|
|
436
1409
|
export var PauseClusterMessage;
|
|
437
1410
|
(function (PauseClusterMessage) {
|
|
438
1411
|
PauseClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -453,6 +1426,30 @@ export var CreateScheduledActionMessage;
|
|
|
453
1426
|
(function (CreateScheduledActionMessage) {
|
|
454
1427
|
CreateScheduledActionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
455
1428
|
})(CreateScheduledActionMessage || (CreateScheduledActionMessage = {}));
|
|
1429
|
+
var InvalidScheduledActionFault = (function (_super) {
|
|
1430
|
+
__extends(InvalidScheduledActionFault, _super);
|
|
1431
|
+
function InvalidScheduledActionFault(opts) {
|
|
1432
|
+
var _this = _super.call(this, __assign({ name: "InvalidScheduledActionFault", $fault: "client" }, opts)) || this;
|
|
1433
|
+
_this.name = "InvalidScheduledActionFault";
|
|
1434
|
+
_this.$fault = "client";
|
|
1435
|
+
Object.setPrototypeOf(_this, InvalidScheduledActionFault.prototype);
|
|
1436
|
+
return _this;
|
|
1437
|
+
}
|
|
1438
|
+
return InvalidScheduledActionFault;
|
|
1439
|
+
}(__BaseException));
|
|
1440
|
+
export { InvalidScheduledActionFault };
|
|
1441
|
+
var InvalidScheduleFault = (function (_super) {
|
|
1442
|
+
__extends(InvalidScheduleFault, _super);
|
|
1443
|
+
function InvalidScheduleFault(opts) {
|
|
1444
|
+
var _this = _super.call(this, __assign({ name: "InvalidScheduleFault", $fault: "client" }, opts)) || this;
|
|
1445
|
+
_this.name = "InvalidScheduleFault";
|
|
1446
|
+
_this.$fault = "client";
|
|
1447
|
+
Object.setPrototypeOf(_this, InvalidScheduleFault.prototype);
|
|
1448
|
+
return _this;
|
|
1449
|
+
}
|
|
1450
|
+
return InvalidScheduleFault;
|
|
1451
|
+
}(__BaseException));
|
|
1452
|
+
export { InvalidScheduleFault };
|
|
456
1453
|
export var ScheduledActionState;
|
|
457
1454
|
(function (ScheduledActionState) {
|
|
458
1455
|
ScheduledActionState["ACTIVE"] = "ACTIVE";
|
|
@@ -462,6 +1459,42 @@ export var ScheduledAction;
|
|
|
462
1459
|
(function (ScheduledAction) {
|
|
463
1460
|
ScheduledAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
464
1461
|
})(ScheduledAction || (ScheduledAction = {}));
|
|
1462
|
+
var ScheduledActionAlreadyExistsFault = (function (_super) {
|
|
1463
|
+
__extends(ScheduledActionAlreadyExistsFault, _super);
|
|
1464
|
+
function ScheduledActionAlreadyExistsFault(opts) {
|
|
1465
|
+
var _this = _super.call(this, __assign({ name: "ScheduledActionAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1466
|
+
_this.name = "ScheduledActionAlreadyExistsFault";
|
|
1467
|
+
_this.$fault = "client";
|
|
1468
|
+
Object.setPrototypeOf(_this, ScheduledActionAlreadyExistsFault.prototype);
|
|
1469
|
+
return _this;
|
|
1470
|
+
}
|
|
1471
|
+
return ScheduledActionAlreadyExistsFault;
|
|
1472
|
+
}(__BaseException));
|
|
1473
|
+
export { ScheduledActionAlreadyExistsFault };
|
|
1474
|
+
var ScheduledActionQuotaExceededFault = (function (_super) {
|
|
1475
|
+
__extends(ScheduledActionQuotaExceededFault, _super);
|
|
1476
|
+
function ScheduledActionQuotaExceededFault(opts) {
|
|
1477
|
+
var _this = _super.call(this, __assign({ name: "ScheduledActionQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1478
|
+
_this.name = "ScheduledActionQuotaExceededFault";
|
|
1479
|
+
_this.$fault = "client";
|
|
1480
|
+
Object.setPrototypeOf(_this, ScheduledActionQuotaExceededFault.prototype);
|
|
1481
|
+
return _this;
|
|
1482
|
+
}
|
|
1483
|
+
return ScheduledActionQuotaExceededFault;
|
|
1484
|
+
}(__BaseException));
|
|
1485
|
+
export { ScheduledActionQuotaExceededFault };
|
|
1486
|
+
var ScheduledActionTypeUnsupportedFault = (function (_super) {
|
|
1487
|
+
__extends(ScheduledActionTypeUnsupportedFault, _super);
|
|
1488
|
+
function ScheduledActionTypeUnsupportedFault(opts) {
|
|
1489
|
+
var _this = _super.call(this, __assign({ name: "ScheduledActionTypeUnsupportedFault", $fault: "client" }, opts)) || this;
|
|
1490
|
+
_this.name = "ScheduledActionTypeUnsupportedFault";
|
|
1491
|
+
_this.$fault = "client";
|
|
1492
|
+
Object.setPrototypeOf(_this, ScheduledActionTypeUnsupportedFault.prototype);
|
|
1493
|
+
return _this;
|
|
1494
|
+
}
|
|
1495
|
+
return ScheduledActionTypeUnsupportedFault;
|
|
1496
|
+
}(__BaseException));
|
|
1497
|
+
export { ScheduledActionTypeUnsupportedFault };
|
|
465
1498
|
export var CreateSnapshotCopyGrantMessage;
|
|
466
1499
|
(function (CreateSnapshotCopyGrantMessage) {
|
|
467
1500
|
CreateSnapshotCopyGrantMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -474,18 +1507,90 @@ export var CreateSnapshotCopyGrantResult;
|
|
|
474
1507
|
(function (CreateSnapshotCopyGrantResult) {
|
|
475
1508
|
CreateSnapshotCopyGrantResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
476
1509
|
})(CreateSnapshotCopyGrantResult || (CreateSnapshotCopyGrantResult = {}));
|
|
1510
|
+
var SnapshotCopyGrantAlreadyExistsFault = (function (_super) {
|
|
1511
|
+
__extends(SnapshotCopyGrantAlreadyExistsFault, _super);
|
|
1512
|
+
function SnapshotCopyGrantAlreadyExistsFault(opts) {
|
|
1513
|
+
var _this = _super.call(this, __assign({ name: "SnapshotCopyGrantAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1514
|
+
_this.name = "SnapshotCopyGrantAlreadyExistsFault";
|
|
1515
|
+
_this.$fault = "client";
|
|
1516
|
+
Object.setPrototypeOf(_this, SnapshotCopyGrantAlreadyExistsFault.prototype);
|
|
1517
|
+
return _this;
|
|
1518
|
+
}
|
|
1519
|
+
return SnapshotCopyGrantAlreadyExistsFault;
|
|
1520
|
+
}(__BaseException));
|
|
1521
|
+
export { SnapshotCopyGrantAlreadyExistsFault };
|
|
1522
|
+
var SnapshotCopyGrantQuotaExceededFault = (function (_super) {
|
|
1523
|
+
__extends(SnapshotCopyGrantQuotaExceededFault, _super);
|
|
1524
|
+
function SnapshotCopyGrantQuotaExceededFault(opts) {
|
|
1525
|
+
var _this = _super.call(this, __assign({ name: "SnapshotCopyGrantQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1526
|
+
_this.name = "SnapshotCopyGrantQuotaExceededFault";
|
|
1527
|
+
_this.$fault = "client";
|
|
1528
|
+
Object.setPrototypeOf(_this, SnapshotCopyGrantQuotaExceededFault.prototype);
|
|
1529
|
+
return _this;
|
|
1530
|
+
}
|
|
1531
|
+
return SnapshotCopyGrantQuotaExceededFault;
|
|
1532
|
+
}(__BaseException));
|
|
1533
|
+
export { SnapshotCopyGrantQuotaExceededFault };
|
|
477
1534
|
export var CreateSnapshotScheduleMessage;
|
|
478
1535
|
(function (CreateSnapshotScheduleMessage) {
|
|
479
1536
|
CreateSnapshotScheduleMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
480
1537
|
})(CreateSnapshotScheduleMessage || (CreateSnapshotScheduleMessage = {}));
|
|
1538
|
+
var ScheduleDefinitionTypeUnsupportedFault = (function (_super) {
|
|
1539
|
+
__extends(ScheduleDefinitionTypeUnsupportedFault, _super);
|
|
1540
|
+
function ScheduleDefinitionTypeUnsupportedFault(opts) {
|
|
1541
|
+
var _this = _super.call(this, __assign({ name: "ScheduleDefinitionTypeUnsupportedFault", $fault: "client" }, opts)) || this;
|
|
1542
|
+
_this.name = "ScheduleDefinitionTypeUnsupportedFault";
|
|
1543
|
+
_this.$fault = "client";
|
|
1544
|
+
Object.setPrototypeOf(_this, ScheduleDefinitionTypeUnsupportedFault.prototype);
|
|
1545
|
+
return _this;
|
|
1546
|
+
}
|
|
1547
|
+
return ScheduleDefinitionTypeUnsupportedFault;
|
|
1548
|
+
}(__BaseException));
|
|
1549
|
+
export { ScheduleDefinitionTypeUnsupportedFault };
|
|
481
1550
|
export var SnapshotSchedule;
|
|
482
1551
|
(function (SnapshotSchedule) {
|
|
483
1552
|
SnapshotSchedule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
484
1553
|
})(SnapshotSchedule || (SnapshotSchedule = {}));
|
|
1554
|
+
var SnapshotScheduleAlreadyExistsFault = (function (_super) {
|
|
1555
|
+
__extends(SnapshotScheduleAlreadyExistsFault, _super);
|
|
1556
|
+
function SnapshotScheduleAlreadyExistsFault(opts) {
|
|
1557
|
+
var _this = _super.call(this, __assign({ name: "SnapshotScheduleAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1558
|
+
_this.name = "SnapshotScheduleAlreadyExistsFault";
|
|
1559
|
+
_this.$fault = "client";
|
|
1560
|
+
Object.setPrototypeOf(_this, SnapshotScheduleAlreadyExistsFault.prototype);
|
|
1561
|
+
return _this;
|
|
1562
|
+
}
|
|
1563
|
+
return SnapshotScheduleAlreadyExistsFault;
|
|
1564
|
+
}(__BaseException));
|
|
1565
|
+
export { SnapshotScheduleAlreadyExistsFault };
|
|
1566
|
+
var SnapshotScheduleQuotaExceededFault = (function (_super) {
|
|
1567
|
+
__extends(SnapshotScheduleQuotaExceededFault, _super);
|
|
1568
|
+
function SnapshotScheduleQuotaExceededFault(opts) {
|
|
1569
|
+
var _this = _super.call(this, __assign({ name: "SnapshotScheduleQuotaExceededFault", $fault: "client" }, opts)) || this;
|
|
1570
|
+
_this.name = "SnapshotScheduleQuotaExceededFault";
|
|
1571
|
+
_this.$fault = "client";
|
|
1572
|
+
Object.setPrototypeOf(_this, SnapshotScheduleQuotaExceededFault.prototype);
|
|
1573
|
+
return _this;
|
|
1574
|
+
}
|
|
1575
|
+
return SnapshotScheduleQuotaExceededFault;
|
|
1576
|
+
}(__BaseException));
|
|
1577
|
+
export { SnapshotScheduleQuotaExceededFault };
|
|
485
1578
|
export var CreateTagsMessage;
|
|
486
1579
|
(function (CreateTagsMessage) {
|
|
487
1580
|
CreateTagsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
488
1581
|
})(CreateTagsMessage || (CreateTagsMessage = {}));
|
|
1582
|
+
var ResourceNotFoundFault = (function (_super) {
|
|
1583
|
+
__extends(ResourceNotFoundFault, _super);
|
|
1584
|
+
function ResourceNotFoundFault(opts) {
|
|
1585
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1586
|
+
_this.name = "ResourceNotFoundFault";
|
|
1587
|
+
_this.$fault = "client";
|
|
1588
|
+
Object.setPrototypeOf(_this, ResourceNotFoundFault.prototype);
|
|
1589
|
+
return _this;
|
|
1590
|
+
}
|
|
1591
|
+
return ResourceNotFoundFault;
|
|
1592
|
+
}(__BaseException));
|
|
1593
|
+
export { ResourceNotFoundFault };
|
|
489
1594
|
export var UsageLimitBreachAction;
|
|
490
1595
|
(function (UsageLimitBreachAction) {
|
|
491
1596
|
UsageLimitBreachAction["DISABLE"] = "disable";
|
|
@@ -513,10 +1618,34 @@ export var CreateUsageLimitMessage;
|
|
|
513
1618
|
(function (CreateUsageLimitMessage) {
|
|
514
1619
|
CreateUsageLimitMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
515
1620
|
})(CreateUsageLimitMessage || (CreateUsageLimitMessage = {}));
|
|
1621
|
+
var InvalidUsageLimitFault = (function (_super) {
|
|
1622
|
+
__extends(InvalidUsageLimitFault, _super);
|
|
1623
|
+
function InvalidUsageLimitFault(opts) {
|
|
1624
|
+
var _this = _super.call(this, __assign({ name: "InvalidUsageLimitFault", $fault: "client" }, opts)) || this;
|
|
1625
|
+
_this.name = "InvalidUsageLimitFault";
|
|
1626
|
+
_this.$fault = "client";
|
|
1627
|
+
Object.setPrototypeOf(_this, InvalidUsageLimitFault.prototype);
|
|
1628
|
+
return _this;
|
|
1629
|
+
}
|
|
1630
|
+
return InvalidUsageLimitFault;
|
|
1631
|
+
}(__BaseException));
|
|
1632
|
+
export { InvalidUsageLimitFault };
|
|
516
1633
|
export var UsageLimit;
|
|
517
1634
|
(function (UsageLimit) {
|
|
518
1635
|
UsageLimit.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
519
1636
|
})(UsageLimit || (UsageLimit = {}));
|
|
1637
|
+
var UsageLimitAlreadyExistsFault = (function (_super) {
|
|
1638
|
+
__extends(UsageLimitAlreadyExistsFault, _super);
|
|
1639
|
+
function UsageLimitAlreadyExistsFault(opts) {
|
|
1640
|
+
var _this = _super.call(this, __assign({ name: "UsageLimitAlreadyExistsFault", $fault: "client" }, opts)) || this;
|
|
1641
|
+
_this.name = "UsageLimitAlreadyExistsFault";
|
|
1642
|
+
_this.$fault = "client";
|
|
1643
|
+
Object.setPrototypeOf(_this, UsageLimitAlreadyExistsFault.prototype);
|
|
1644
|
+
return _this;
|
|
1645
|
+
}
|
|
1646
|
+
return UsageLimitAlreadyExistsFault;
|
|
1647
|
+
}(__BaseException));
|
|
1648
|
+
export { UsageLimitAlreadyExistsFault };
|
|
520
1649
|
export var CustomerStorageMessage;
|
|
521
1650
|
(function (CustomerStorageMessage) {
|
|
522
1651
|
CustomerStorageMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -562,6 +1691,18 @@ export var DeleteClusterParameterGroupMessage;
|
|
|
562
1691
|
(function (DeleteClusterParameterGroupMessage) {
|
|
563
1692
|
DeleteClusterParameterGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
1693
|
})(DeleteClusterParameterGroupMessage || (DeleteClusterParameterGroupMessage = {}));
|
|
1694
|
+
var InvalidClusterParameterGroupStateFault = (function (_super) {
|
|
1695
|
+
__extends(InvalidClusterParameterGroupStateFault, _super);
|
|
1696
|
+
function InvalidClusterParameterGroupStateFault(opts) {
|
|
1697
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterParameterGroupStateFault", $fault: "client" }, opts)) || this;
|
|
1698
|
+
_this.name = "InvalidClusterParameterGroupStateFault";
|
|
1699
|
+
_this.$fault = "client";
|
|
1700
|
+
Object.setPrototypeOf(_this, InvalidClusterParameterGroupStateFault.prototype);
|
|
1701
|
+
return _this;
|
|
1702
|
+
}
|
|
1703
|
+
return InvalidClusterParameterGroupStateFault;
|
|
1704
|
+
}(__BaseException));
|
|
1705
|
+
export { InvalidClusterParameterGroupStateFault };
|
|
565
1706
|
export var DeleteClusterSecurityGroupMessage;
|
|
566
1707
|
(function (DeleteClusterSecurityGroupMessage) {
|
|
567
1708
|
DeleteClusterSecurityGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -574,34 +1715,166 @@ export var DeleteClusterSubnetGroupMessage;
|
|
|
574
1715
|
(function (DeleteClusterSubnetGroupMessage) {
|
|
575
1716
|
DeleteClusterSubnetGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
576
1717
|
})(DeleteClusterSubnetGroupMessage || (DeleteClusterSubnetGroupMessage = {}));
|
|
1718
|
+
var InvalidClusterSubnetStateFault = (function (_super) {
|
|
1719
|
+
__extends(InvalidClusterSubnetStateFault, _super);
|
|
1720
|
+
function InvalidClusterSubnetStateFault(opts) {
|
|
1721
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterSubnetStateFault", $fault: "client" }, opts)) || this;
|
|
1722
|
+
_this.name = "InvalidClusterSubnetStateFault";
|
|
1723
|
+
_this.$fault = "client";
|
|
1724
|
+
Object.setPrototypeOf(_this, InvalidClusterSubnetStateFault.prototype);
|
|
1725
|
+
return _this;
|
|
1726
|
+
}
|
|
1727
|
+
return InvalidClusterSubnetStateFault;
|
|
1728
|
+
}(__BaseException));
|
|
1729
|
+
export { InvalidClusterSubnetStateFault };
|
|
577
1730
|
export var DeleteEndpointAccessMessage;
|
|
578
1731
|
(function (DeleteEndpointAccessMessage) {
|
|
579
1732
|
DeleteEndpointAccessMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
580
1733
|
})(DeleteEndpointAccessMessage || (DeleteEndpointAccessMessage = {}));
|
|
1734
|
+
var EndpointNotFoundFault = (function (_super) {
|
|
1735
|
+
__extends(EndpointNotFoundFault, _super);
|
|
1736
|
+
function EndpointNotFoundFault(opts) {
|
|
1737
|
+
var _this = _super.call(this, __assign({ name: "EndpointNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1738
|
+
_this.name = "EndpointNotFoundFault";
|
|
1739
|
+
_this.$fault = "client";
|
|
1740
|
+
Object.setPrototypeOf(_this, EndpointNotFoundFault.prototype);
|
|
1741
|
+
return _this;
|
|
1742
|
+
}
|
|
1743
|
+
return EndpointNotFoundFault;
|
|
1744
|
+
}(__BaseException));
|
|
1745
|
+
export { EndpointNotFoundFault };
|
|
1746
|
+
var InvalidEndpointStateFault = (function (_super) {
|
|
1747
|
+
__extends(InvalidEndpointStateFault, _super);
|
|
1748
|
+
function InvalidEndpointStateFault(opts) {
|
|
1749
|
+
var _this = _super.call(this, __assign({ name: "InvalidEndpointStateFault", $fault: "client" }, opts)) || this;
|
|
1750
|
+
_this.name = "InvalidEndpointStateFault";
|
|
1751
|
+
_this.$fault = "client";
|
|
1752
|
+
Object.setPrototypeOf(_this, InvalidEndpointStateFault.prototype);
|
|
1753
|
+
return _this;
|
|
1754
|
+
}
|
|
1755
|
+
return InvalidEndpointStateFault;
|
|
1756
|
+
}(__BaseException));
|
|
1757
|
+
export { InvalidEndpointStateFault };
|
|
581
1758
|
export var DeleteEventSubscriptionMessage;
|
|
582
1759
|
(function (DeleteEventSubscriptionMessage) {
|
|
583
1760
|
DeleteEventSubscriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
584
1761
|
})(DeleteEventSubscriptionMessage || (DeleteEventSubscriptionMessage = {}));
|
|
1762
|
+
var InvalidSubscriptionStateFault = (function (_super) {
|
|
1763
|
+
__extends(InvalidSubscriptionStateFault, _super);
|
|
1764
|
+
function InvalidSubscriptionStateFault(opts) {
|
|
1765
|
+
var _this = _super.call(this, __assign({ name: "InvalidSubscriptionStateFault", $fault: "client" }, opts)) || this;
|
|
1766
|
+
_this.name = "InvalidSubscriptionStateFault";
|
|
1767
|
+
_this.$fault = "client";
|
|
1768
|
+
Object.setPrototypeOf(_this, InvalidSubscriptionStateFault.prototype);
|
|
1769
|
+
return _this;
|
|
1770
|
+
}
|
|
1771
|
+
return InvalidSubscriptionStateFault;
|
|
1772
|
+
}(__BaseException));
|
|
1773
|
+
export { InvalidSubscriptionStateFault };
|
|
1774
|
+
var SubscriptionNotFoundFault = (function (_super) {
|
|
1775
|
+
__extends(SubscriptionNotFoundFault, _super);
|
|
1776
|
+
function SubscriptionNotFoundFault(opts) {
|
|
1777
|
+
var _this = _super.call(this, __assign({ name: "SubscriptionNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1778
|
+
_this.name = "SubscriptionNotFoundFault";
|
|
1779
|
+
_this.$fault = "client";
|
|
1780
|
+
Object.setPrototypeOf(_this, SubscriptionNotFoundFault.prototype);
|
|
1781
|
+
return _this;
|
|
1782
|
+
}
|
|
1783
|
+
return SubscriptionNotFoundFault;
|
|
1784
|
+
}(__BaseException));
|
|
1785
|
+
export { SubscriptionNotFoundFault };
|
|
585
1786
|
export var DeleteHsmClientCertificateMessage;
|
|
586
1787
|
(function (DeleteHsmClientCertificateMessage) {
|
|
587
1788
|
DeleteHsmClientCertificateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
588
1789
|
})(DeleteHsmClientCertificateMessage || (DeleteHsmClientCertificateMessage = {}));
|
|
1790
|
+
var InvalidHsmClientCertificateStateFault = (function (_super) {
|
|
1791
|
+
__extends(InvalidHsmClientCertificateStateFault, _super);
|
|
1792
|
+
function InvalidHsmClientCertificateStateFault(opts) {
|
|
1793
|
+
var _this = _super.call(this, __assign({ name: "InvalidHsmClientCertificateStateFault", $fault: "client" }, opts)) || this;
|
|
1794
|
+
_this.name = "InvalidHsmClientCertificateStateFault";
|
|
1795
|
+
_this.$fault = "client";
|
|
1796
|
+
Object.setPrototypeOf(_this, InvalidHsmClientCertificateStateFault.prototype);
|
|
1797
|
+
return _this;
|
|
1798
|
+
}
|
|
1799
|
+
return InvalidHsmClientCertificateStateFault;
|
|
1800
|
+
}(__BaseException));
|
|
1801
|
+
export { InvalidHsmClientCertificateStateFault };
|
|
589
1802
|
export var DeleteHsmConfigurationMessage;
|
|
590
1803
|
(function (DeleteHsmConfigurationMessage) {
|
|
591
1804
|
DeleteHsmConfigurationMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
592
1805
|
})(DeleteHsmConfigurationMessage || (DeleteHsmConfigurationMessage = {}));
|
|
1806
|
+
var InvalidHsmConfigurationStateFault = (function (_super) {
|
|
1807
|
+
__extends(InvalidHsmConfigurationStateFault, _super);
|
|
1808
|
+
function InvalidHsmConfigurationStateFault(opts) {
|
|
1809
|
+
var _this = _super.call(this, __assign({ name: "InvalidHsmConfigurationStateFault", $fault: "client" }, opts)) || this;
|
|
1810
|
+
_this.name = "InvalidHsmConfigurationStateFault";
|
|
1811
|
+
_this.$fault = "client";
|
|
1812
|
+
Object.setPrototypeOf(_this, InvalidHsmConfigurationStateFault.prototype);
|
|
1813
|
+
return _this;
|
|
1814
|
+
}
|
|
1815
|
+
return InvalidHsmConfigurationStateFault;
|
|
1816
|
+
}(__BaseException));
|
|
1817
|
+
export { InvalidHsmConfigurationStateFault };
|
|
593
1818
|
export var DeleteScheduledActionMessage;
|
|
594
1819
|
(function (DeleteScheduledActionMessage) {
|
|
595
1820
|
DeleteScheduledActionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
596
1821
|
})(DeleteScheduledActionMessage || (DeleteScheduledActionMessage = {}));
|
|
1822
|
+
var ScheduledActionNotFoundFault = (function (_super) {
|
|
1823
|
+
__extends(ScheduledActionNotFoundFault, _super);
|
|
1824
|
+
function ScheduledActionNotFoundFault(opts) {
|
|
1825
|
+
var _this = _super.call(this, __assign({ name: "ScheduledActionNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1826
|
+
_this.name = "ScheduledActionNotFoundFault";
|
|
1827
|
+
_this.$fault = "client";
|
|
1828
|
+
Object.setPrototypeOf(_this, ScheduledActionNotFoundFault.prototype);
|
|
1829
|
+
return _this;
|
|
1830
|
+
}
|
|
1831
|
+
return ScheduledActionNotFoundFault;
|
|
1832
|
+
}(__BaseException));
|
|
1833
|
+
export { ScheduledActionNotFoundFault };
|
|
597
1834
|
export var DeleteSnapshotCopyGrantMessage;
|
|
598
1835
|
(function (DeleteSnapshotCopyGrantMessage) {
|
|
599
1836
|
DeleteSnapshotCopyGrantMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
600
1837
|
})(DeleteSnapshotCopyGrantMessage || (DeleteSnapshotCopyGrantMessage = {}));
|
|
1838
|
+
var InvalidSnapshotCopyGrantStateFault = (function (_super) {
|
|
1839
|
+
__extends(InvalidSnapshotCopyGrantStateFault, _super);
|
|
1840
|
+
function InvalidSnapshotCopyGrantStateFault(opts) {
|
|
1841
|
+
var _this = _super.call(this, __assign({ name: "InvalidSnapshotCopyGrantStateFault", $fault: "client" }, opts)) || this;
|
|
1842
|
+
_this.name = "InvalidSnapshotCopyGrantStateFault";
|
|
1843
|
+
_this.$fault = "client";
|
|
1844
|
+
Object.setPrototypeOf(_this, InvalidSnapshotCopyGrantStateFault.prototype);
|
|
1845
|
+
return _this;
|
|
1846
|
+
}
|
|
1847
|
+
return InvalidSnapshotCopyGrantStateFault;
|
|
1848
|
+
}(__BaseException));
|
|
1849
|
+
export { InvalidSnapshotCopyGrantStateFault };
|
|
1850
|
+
var SnapshotCopyGrantNotFoundFault = (function (_super) {
|
|
1851
|
+
__extends(SnapshotCopyGrantNotFoundFault, _super);
|
|
1852
|
+
function SnapshotCopyGrantNotFoundFault(opts) {
|
|
1853
|
+
var _this = _super.call(this, __assign({ name: "SnapshotCopyGrantNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1854
|
+
_this.name = "SnapshotCopyGrantNotFoundFault";
|
|
1855
|
+
_this.$fault = "client";
|
|
1856
|
+
Object.setPrototypeOf(_this, SnapshotCopyGrantNotFoundFault.prototype);
|
|
1857
|
+
return _this;
|
|
1858
|
+
}
|
|
1859
|
+
return SnapshotCopyGrantNotFoundFault;
|
|
1860
|
+
}(__BaseException));
|
|
1861
|
+
export { SnapshotCopyGrantNotFoundFault };
|
|
601
1862
|
export var DeleteSnapshotScheduleMessage;
|
|
602
1863
|
(function (DeleteSnapshotScheduleMessage) {
|
|
603
1864
|
DeleteSnapshotScheduleMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
604
1865
|
})(DeleteSnapshotScheduleMessage || (DeleteSnapshotScheduleMessage = {}));
|
|
1866
|
+
var InvalidClusterSnapshotScheduleStateFault = (function (_super) {
|
|
1867
|
+
__extends(InvalidClusterSnapshotScheduleStateFault, _super);
|
|
1868
|
+
function InvalidClusterSnapshotScheduleStateFault(opts) {
|
|
1869
|
+
var _this = _super.call(this, __assign({ name: "InvalidClusterSnapshotScheduleStateFault", $fault: "client" }, opts)) || this;
|
|
1870
|
+
_this.name = "InvalidClusterSnapshotScheduleStateFault";
|
|
1871
|
+
_this.$fault = "client";
|
|
1872
|
+
Object.setPrototypeOf(_this, InvalidClusterSnapshotScheduleStateFault.prototype);
|
|
1873
|
+
return _this;
|
|
1874
|
+
}
|
|
1875
|
+
return InvalidClusterSnapshotScheduleStateFault;
|
|
1876
|
+
}(__BaseException));
|
|
1877
|
+
export { InvalidClusterSnapshotScheduleStateFault };
|
|
605
1878
|
export var DeleteTagsMessage;
|
|
606
1879
|
(function (DeleteTagsMessage) {
|
|
607
1880
|
DeleteTagsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -610,6 +1883,18 @@ export var DeleteUsageLimitMessage;
|
|
|
610
1883
|
(function (DeleteUsageLimitMessage) {
|
|
611
1884
|
DeleteUsageLimitMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
612
1885
|
})(DeleteUsageLimitMessage || (DeleteUsageLimitMessage = {}));
|
|
1886
|
+
var UsageLimitNotFoundFault = (function (_super) {
|
|
1887
|
+
__extends(UsageLimitNotFoundFault, _super);
|
|
1888
|
+
function UsageLimitNotFoundFault(opts) {
|
|
1889
|
+
var _this = _super.call(this, __assign({ name: "UsageLimitNotFoundFault", $fault: "client" }, opts)) || this;
|
|
1890
|
+
_this.name = "UsageLimitNotFoundFault";
|
|
1891
|
+
_this.$fault = "client";
|
|
1892
|
+
Object.setPrototypeOf(_this, UsageLimitNotFoundFault.prototype);
|
|
1893
|
+
return _this;
|
|
1894
|
+
}
|
|
1895
|
+
return UsageLimitNotFoundFault;
|
|
1896
|
+
}(__BaseException));
|
|
1897
|
+
export { UsageLimitNotFoundFault };
|
|
613
1898
|
export var DescribeAccountAttributesMessage;
|
|
614
1899
|
(function (DescribeAccountAttributesMessage) {
|
|
615
1900
|
DescribeAccountAttributesMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|