@aws-sdk/client-redshift 3.721.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1509 -1276
- package/dist-es/RedshiftClient.js +1 -0
- package/dist-es/models/models_0.js +244 -244
- package/dist-es/models/models_1.js +40 -40
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
|
@@ -5,110 +5,110 @@ export const ReservedNodeOfferingType = {
|
|
|
5
5
|
Upgradable: "Upgradable",
|
|
6
6
|
};
|
|
7
7
|
export class DependentServiceUnavailableFault extends __BaseException {
|
|
8
|
+
name = "DependentServiceUnavailableFault";
|
|
9
|
+
$fault = "client";
|
|
8
10
|
constructor(opts) {
|
|
9
11
|
super({
|
|
10
12
|
name: "DependentServiceUnavailableFault",
|
|
11
13
|
$fault: "client",
|
|
12
14
|
...opts,
|
|
13
15
|
});
|
|
14
|
-
this.name = "DependentServiceUnavailableFault";
|
|
15
|
-
this.$fault = "client";
|
|
16
16
|
Object.setPrototypeOf(this, DependentServiceUnavailableFault.prototype);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
export class InvalidReservedNodeStateFault extends __BaseException {
|
|
20
|
+
name = "InvalidReservedNodeStateFault";
|
|
21
|
+
$fault = "client";
|
|
20
22
|
constructor(opts) {
|
|
21
23
|
super({
|
|
22
24
|
name: "InvalidReservedNodeStateFault",
|
|
23
25
|
$fault: "client",
|
|
24
26
|
...opts,
|
|
25
27
|
});
|
|
26
|
-
this.name = "InvalidReservedNodeStateFault";
|
|
27
|
-
this.$fault = "client";
|
|
28
28
|
Object.setPrototypeOf(this, InvalidReservedNodeStateFault.prototype);
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
export class ReservedNodeAlreadyExistsFault extends __BaseException {
|
|
32
|
+
name = "ReservedNodeAlreadyExistsFault";
|
|
33
|
+
$fault = "client";
|
|
32
34
|
constructor(opts) {
|
|
33
35
|
super({
|
|
34
36
|
name: "ReservedNodeAlreadyExistsFault",
|
|
35
37
|
$fault: "client",
|
|
36
38
|
...opts,
|
|
37
39
|
});
|
|
38
|
-
this.name = "ReservedNodeAlreadyExistsFault";
|
|
39
|
-
this.$fault = "client";
|
|
40
40
|
Object.setPrototypeOf(this, ReservedNodeAlreadyExistsFault.prototype);
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
export class ReservedNodeAlreadyMigratedFault extends __BaseException {
|
|
44
|
+
name = "ReservedNodeAlreadyMigratedFault";
|
|
45
|
+
$fault = "client";
|
|
44
46
|
constructor(opts) {
|
|
45
47
|
super({
|
|
46
48
|
name: "ReservedNodeAlreadyMigratedFault",
|
|
47
49
|
$fault: "client",
|
|
48
50
|
...opts,
|
|
49
51
|
});
|
|
50
|
-
this.name = "ReservedNodeAlreadyMigratedFault";
|
|
51
|
-
this.$fault = "client";
|
|
52
52
|
Object.setPrototypeOf(this, ReservedNodeAlreadyMigratedFault.prototype);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
export class ReservedNodeNotFoundFault extends __BaseException {
|
|
56
|
+
name = "ReservedNodeNotFoundFault";
|
|
57
|
+
$fault = "client";
|
|
56
58
|
constructor(opts) {
|
|
57
59
|
super({
|
|
58
60
|
name: "ReservedNodeNotFoundFault",
|
|
59
61
|
$fault: "client",
|
|
60
62
|
...opts,
|
|
61
63
|
});
|
|
62
|
-
this.name = "ReservedNodeNotFoundFault";
|
|
63
|
-
this.$fault = "client";
|
|
64
64
|
Object.setPrototypeOf(this, ReservedNodeNotFoundFault.prototype);
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
export class ReservedNodeOfferingNotFoundFault extends __BaseException {
|
|
68
|
+
name = "ReservedNodeOfferingNotFoundFault";
|
|
69
|
+
$fault = "client";
|
|
68
70
|
constructor(opts) {
|
|
69
71
|
super({
|
|
70
72
|
name: "ReservedNodeOfferingNotFoundFault",
|
|
71
73
|
$fault: "client",
|
|
72
74
|
...opts,
|
|
73
75
|
});
|
|
74
|
-
this.name = "ReservedNodeOfferingNotFoundFault";
|
|
75
|
-
this.$fault = "client";
|
|
76
76
|
Object.setPrototypeOf(this, ReservedNodeOfferingNotFoundFault.prototype);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
export class UnsupportedOperationFault extends __BaseException {
|
|
80
|
+
name = "UnsupportedOperationFault";
|
|
81
|
+
$fault = "client";
|
|
80
82
|
constructor(opts) {
|
|
81
83
|
super({
|
|
82
84
|
name: "UnsupportedOperationFault",
|
|
83
85
|
$fault: "client",
|
|
84
86
|
...opts,
|
|
85
87
|
});
|
|
86
|
-
this.name = "UnsupportedOperationFault";
|
|
87
|
-
this.$fault = "client";
|
|
88
88
|
Object.setPrototypeOf(this, UnsupportedOperationFault.prototype);
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
export class AccessToClusterDeniedFault extends __BaseException {
|
|
92
|
+
name = "AccessToClusterDeniedFault";
|
|
93
|
+
$fault = "client";
|
|
92
94
|
constructor(opts) {
|
|
93
95
|
super({
|
|
94
96
|
name: "AccessToClusterDeniedFault",
|
|
95
97
|
$fault: "client",
|
|
96
98
|
...opts,
|
|
97
99
|
});
|
|
98
|
-
this.name = "AccessToClusterDeniedFault";
|
|
99
|
-
this.$fault = "client";
|
|
100
100
|
Object.setPrototypeOf(this, AccessToClusterDeniedFault.prototype);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
export class AccessToSnapshotDeniedFault extends __BaseException {
|
|
104
|
+
name = "AccessToSnapshotDeniedFault";
|
|
105
|
+
$fault = "client";
|
|
104
106
|
constructor(opts) {
|
|
105
107
|
super({
|
|
106
108
|
name: "AccessToSnapshotDeniedFault",
|
|
107
109
|
$fault: "client",
|
|
108
110
|
...opts,
|
|
109
111
|
});
|
|
110
|
-
this.name = "AccessToSnapshotDeniedFault";
|
|
111
|
-
this.$fault = "client";
|
|
112
112
|
Object.setPrototypeOf(this, AccessToSnapshotDeniedFault.prototype);
|
|
113
113
|
}
|
|
114
114
|
}
|
|
@@ -118,38 +118,38 @@ export const ActionType = {
|
|
|
118
118
|
RESTORE_CLUSTER: "restore-cluster",
|
|
119
119
|
};
|
|
120
120
|
export class ClusterNotFoundFault extends __BaseException {
|
|
121
|
+
name = "ClusterNotFoundFault";
|
|
122
|
+
$fault = "client";
|
|
121
123
|
constructor(opts) {
|
|
122
124
|
super({
|
|
123
125
|
name: "ClusterNotFoundFault",
|
|
124
126
|
$fault: "client",
|
|
125
127
|
...opts,
|
|
126
128
|
});
|
|
127
|
-
this.name = "ClusterNotFoundFault";
|
|
128
|
-
this.$fault = "client";
|
|
129
129
|
Object.setPrototypeOf(this, ClusterNotFoundFault.prototype);
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
export class PartnerNotFoundFault extends __BaseException {
|
|
133
|
+
name = "PartnerNotFoundFault";
|
|
134
|
+
$fault = "client";
|
|
133
135
|
constructor(opts) {
|
|
134
136
|
super({
|
|
135
137
|
name: "PartnerNotFoundFault",
|
|
136
138
|
$fault: "client",
|
|
137
139
|
...opts,
|
|
138
140
|
});
|
|
139
|
-
this.name = "PartnerNotFoundFault";
|
|
140
|
-
this.$fault = "client";
|
|
141
141
|
Object.setPrototypeOf(this, PartnerNotFoundFault.prototype);
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
144
|
export class UnauthorizedPartnerIntegrationFault extends __BaseException {
|
|
145
|
+
name = "UnauthorizedPartnerIntegrationFault";
|
|
146
|
+
$fault = "client";
|
|
145
147
|
constructor(opts) {
|
|
146
148
|
super({
|
|
147
149
|
name: "UnauthorizedPartnerIntegrationFault",
|
|
148
150
|
$fault: "client",
|
|
149
151
|
...opts,
|
|
150
152
|
});
|
|
151
|
-
this.name = "UnauthorizedPartnerIntegrationFault";
|
|
152
|
-
this.$fault = "client";
|
|
153
153
|
Object.setPrototypeOf(this, UnauthorizedPartnerIntegrationFault.prototype);
|
|
154
154
|
}
|
|
155
155
|
}
|
|
@@ -175,26 +175,26 @@ export const DataShareType = {
|
|
|
175
175
|
INTERNAL: "INTERNAL",
|
|
176
176
|
};
|
|
177
177
|
export class InvalidDataShareFault extends __BaseException {
|
|
178
|
+
name = "InvalidDataShareFault";
|
|
179
|
+
$fault = "client";
|
|
178
180
|
constructor(opts) {
|
|
179
181
|
super({
|
|
180
182
|
name: "InvalidDataShareFault",
|
|
181
183
|
$fault: "client",
|
|
182
184
|
...opts,
|
|
183
185
|
});
|
|
184
|
-
this.name = "InvalidDataShareFault";
|
|
185
|
-
this.$fault = "client";
|
|
186
186
|
Object.setPrototypeOf(this, InvalidDataShareFault.prototype);
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
export class InvalidNamespaceFault extends __BaseException {
|
|
190
|
+
name = "InvalidNamespaceFault";
|
|
191
|
+
$fault = "client";
|
|
190
192
|
constructor(opts) {
|
|
191
193
|
super({
|
|
192
194
|
name: "InvalidNamespaceFault",
|
|
193
195
|
$fault: "client",
|
|
194
196
|
...opts,
|
|
195
197
|
});
|
|
196
|
-
this.name = "InvalidNamespaceFault";
|
|
197
|
-
this.$fault = "client";
|
|
198
198
|
Object.setPrototypeOf(this, InvalidNamespaceFault.prototype);
|
|
199
199
|
}
|
|
200
200
|
}
|
|
@@ -204,74 +204,74 @@ export const ScheduleState = {
|
|
|
204
204
|
MODIFYING: "MODIFYING",
|
|
205
205
|
};
|
|
206
206
|
export class AuthenticationProfileAlreadyExistsFault extends __BaseException {
|
|
207
|
+
name = "AuthenticationProfileAlreadyExistsFault";
|
|
208
|
+
$fault = "client";
|
|
207
209
|
constructor(opts) {
|
|
208
210
|
super({
|
|
209
211
|
name: "AuthenticationProfileAlreadyExistsFault",
|
|
210
212
|
$fault: "client",
|
|
211
213
|
...opts,
|
|
212
214
|
});
|
|
213
|
-
this.name = "AuthenticationProfileAlreadyExistsFault";
|
|
214
|
-
this.$fault = "client";
|
|
215
215
|
Object.setPrototypeOf(this, AuthenticationProfileAlreadyExistsFault.prototype);
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
218
|
export class AuthenticationProfileNotFoundFault extends __BaseException {
|
|
219
|
+
name = "AuthenticationProfileNotFoundFault";
|
|
220
|
+
$fault = "client";
|
|
219
221
|
constructor(opts) {
|
|
220
222
|
super({
|
|
221
223
|
name: "AuthenticationProfileNotFoundFault",
|
|
222
224
|
$fault: "client",
|
|
223
225
|
...opts,
|
|
224
226
|
});
|
|
225
|
-
this.name = "AuthenticationProfileNotFoundFault";
|
|
226
|
-
this.$fault = "client";
|
|
227
227
|
Object.setPrototypeOf(this, AuthenticationProfileNotFoundFault.prototype);
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
export class AuthenticationProfileQuotaExceededFault extends __BaseException {
|
|
231
|
+
name = "AuthenticationProfileQuotaExceededFault";
|
|
232
|
+
$fault = "client";
|
|
231
233
|
constructor(opts) {
|
|
232
234
|
super({
|
|
233
235
|
name: "AuthenticationProfileQuotaExceededFault",
|
|
234
236
|
$fault: "client",
|
|
235
237
|
...opts,
|
|
236
238
|
});
|
|
237
|
-
this.name = "AuthenticationProfileQuotaExceededFault";
|
|
238
|
-
this.$fault = "client";
|
|
239
239
|
Object.setPrototypeOf(this, AuthenticationProfileQuotaExceededFault.prototype);
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
242
|
export class AuthorizationAlreadyExistsFault extends __BaseException {
|
|
243
|
+
name = "AuthorizationAlreadyExistsFault";
|
|
244
|
+
$fault = "client";
|
|
243
245
|
constructor(opts) {
|
|
244
246
|
super({
|
|
245
247
|
name: "AuthorizationAlreadyExistsFault",
|
|
246
248
|
$fault: "client",
|
|
247
249
|
...opts,
|
|
248
250
|
});
|
|
249
|
-
this.name = "AuthorizationAlreadyExistsFault";
|
|
250
|
-
this.$fault = "client";
|
|
251
251
|
Object.setPrototypeOf(this, AuthorizationAlreadyExistsFault.prototype);
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
export class AuthorizationNotFoundFault extends __BaseException {
|
|
255
|
+
name = "AuthorizationNotFoundFault";
|
|
256
|
+
$fault = "client";
|
|
255
257
|
constructor(opts) {
|
|
256
258
|
super({
|
|
257
259
|
name: "AuthorizationNotFoundFault",
|
|
258
260
|
$fault: "client",
|
|
259
261
|
...opts,
|
|
260
262
|
});
|
|
261
|
-
this.name = "AuthorizationNotFoundFault";
|
|
262
|
-
this.$fault = "client";
|
|
263
263
|
Object.setPrototypeOf(this, AuthorizationNotFoundFault.prototype);
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
export class AuthorizationQuotaExceededFault extends __BaseException {
|
|
267
|
+
name = "AuthorizationQuotaExceededFault";
|
|
268
|
+
$fault = "client";
|
|
267
269
|
constructor(opts) {
|
|
268
270
|
super({
|
|
269
271
|
name: "AuthorizationQuotaExceededFault",
|
|
270
272
|
$fault: "client",
|
|
271
273
|
...opts,
|
|
272
274
|
});
|
|
273
|
-
this.name = "AuthorizationQuotaExceededFault";
|
|
274
|
-
this.$fault = "client";
|
|
275
275
|
Object.setPrototypeOf(this, AuthorizationQuotaExceededFault.prototype);
|
|
276
276
|
}
|
|
277
277
|
}
|
|
@@ -280,182 +280,182 @@ export const AuthorizationStatus = {
|
|
|
280
280
|
REVOKING: "Revoking",
|
|
281
281
|
};
|
|
282
282
|
export class ClusterSecurityGroupNotFoundFault extends __BaseException {
|
|
283
|
+
name = "ClusterSecurityGroupNotFoundFault";
|
|
284
|
+
$fault = "client";
|
|
283
285
|
constructor(opts) {
|
|
284
286
|
super({
|
|
285
287
|
name: "ClusterSecurityGroupNotFoundFault",
|
|
286
288
|
$fault: "client",
|
|
287
289
|
...opts,
|
|
288
290
|
});
|
|
289
|
-
this.name = "ClusterSecurityGroupNotFoundFault";
|
|
290
|
-
this.$fault = "client";
|
|
291
291
|
Object.setPrototypeOf(this, ClusterSecurityGroupNotFoundFault.prototype);
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
294
|
export class InvalidClusterSecurityGroupStateFault extends __BaseException {
|
|
295
|
+
name = "InvalidClusterSecurityGroupStateFault";
|
|
296
|
+
$fault = "client";
|
|
295
297
|
constructor(opts) {
|
|
296
298
|
super({
|
|
297
299
|
name: "InvalidClusterSecurityGroupStateFault",
|
|
298
300
|
$fault: "client",
|
|
299
301
|
...opts,
|
|
300
302
|
});
|
|
301
|
-
this.name = "InvalidClusterSecurityGroupStateFault";
|
|
302
|
-
this.$fault = "client";
|
|
303
303
|
Object.setPrototypeOf(this, InvalidClusterSecurityGroupStateFault.prototype);
|
|
304
304
|
}
|
|
305
305
|
}
|
|
306
306
|
export class EndpointAuthorizationAlreadyExistsFault extends __BaseException {
|
|
307
|
+
name = "EndpointAuthorizationAlreadyExistsFault";
|
|
308
|
+
$fault = "client";
|
|
307
309
|
constructor(opts) {
|
|
308
310
|
super({
|
|
309
311
|
name: "EndpointAuthorizationAlreadyExistsFault",
|
|
310
312
|
$fault: "client",
|
|
311
313
|
...opts,
|
|
312
314
|
});
|
|
313
|
-
this.name = "EndpointAuthorizationAlreadyExistsFault";
|
|
314
|
-
this.$fault = "client";
|
|
315
315
|
Object.setPrototypeOf(this, EndpointAuthorizationAlreadyExistsFault.prototype);
|
|
316
316
|
}
|
|
317
317
|
}
|
|
318
318
|
export class EndpointAuthorizationsPerClusterLimitExceededFault extends __BaseException {
|
|
319
|
+
name = "EndpointAuthorizationsPerClusterLimitExceededFault";
|
|
320
|
+
$fault = "client";
|
|
319
321
|
constructor(opts) {
|
|
320
322
|
super({
|
|
321
323
|
name: "EndpointAuthorizationsPerClusterLimitExceededFault",
|
|
322
324
|
$fault: "client",
|
|
323
325
|
...opts,
|
|
324
326
|
});
|
|
325
|
-
this.name = "EndpointAuthorizationsPerClusterLimitExceededFault";
|
|
326
|
-
this.$fault = "client";
|
|
327
327
|
Object.setPrototypeOf(this, EndpointAuthorizationsPerClusterLimitExceededFault.prototype);
|
|
328
328
|
}
|
|
329
329
|
}
|
|
330
330
|
export class InvalidAuthorizationStateFault extends __BaseException {
|
|
331
|
+
name = "InvalidAuthorizationStateFault";
|
|
332
|
+
$fault = "client";
|
|
331
333
|
constructor(opts) {
|
|
332
334
|
super({
|
|
333
335
|
name: "InvalidAuthorizationStateFault",
|
|
334
336
|
$fault: "client",
|
|
335
337
|
...opts,
|
|
336
338
|
});
|
|
337
|
-
this.name = "InvalidAuthorizationStateFault";
|
|
338
|
-
this.$fault = "client";
|
|
339
339
|
Object.setPrototypeOf(this, InvalidAuthorizationStateFault.prototype);
|
|
340
340
|
}
|
|
341
341
|
}
|
|
342
342
|
export class InvalidClusterStateFault extends __BaseException {
|
|
343
|
+
name = "InvalidClusterStateFault";
|
|
344
|
+
$fault = "client";
|
|
343
345
|
constructor(opts) {
|
|
344
346
|
super({
|
|
345
347
|
name: "InvalidClusterStateFault",
|
|
346
348
|
$fault: "client",
|
|
347
349
|
...opts,
|
|
348
350
|
});
|
|
349
|
-
this.name = "InvalidClusterStateFault";
|
|
350
|
-
this.$fault = "client";
|
|
351
351
|
Object.setPrototypeOf(this, InvalidClusterStateFault.prototype);
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
export class ClusterSnapshotNotFoundFault extends __BaseException {
|
|
355
|
+
name = "ClusterSnapshotNotFoundFault";
|
|
356
|
+
$fault = "client";
|
|
355
357
|
constructor(opts) {
|
|
356
358
|
super({
|
|
357
359
|
name: "ClusterSnapshotNotFoundFault",
|
|
358
360
|
$fault: "client",
|
|
359
361
|
...opts,
|
|
360
362
|
});
|
|
361
|
-
this.name = "ClusterSnapshotNotFoundFault";
|
|
362
|
-
this.$fault = "client";
|
|
363
363
|
Object.setPrototypeOf(this, ClusterSnapshotNotFoundFault.prototype);
|
|
364
364
|
}
|
|
365
365
|
}
|
|
366
366
|
export class DependentServiceRequestThrottlingFault extends __BaseException {
|
|
367
|
+
name = "DependentServiceRequestThrottlingFault";
|
|
368
|
+
$fault = "client";
|
|
367
369
|
constructor(opts) {
|
|
368
370
|
super({
|
|
369
371
|
name: "DependentServiceRequestThrottlingFault",
|
|
370
372
|
$fault: "client",
|
|
371
373
|
...opts,
|
|
372
374
|
});
|
|
373
|
-
this.name = "DependentServiceRequestThrottlingFault";
|
|
374
|
-
this.$fault = "client";
|
|
375
375
|
Object.setPrototypeOf(this, DependentServiceRequestThrottlingFault.prototype);
|
|
376
376
|
}
|
|
377
377
|
}
|
|
378
378
|
export class InvalidClusterSnapshotStateFault extends __BaseException {
|
|
379
|
+
name = "InvalidClusterSnapshotStateFault";
|
|
380
|
+
$fault = "client";
|
|
379
381
|
constructor(opts) {
|
|
380
382
|
super({
|
|
381
383
|
name: "InvalidClusterSnapshotStateFault",
|
|
382
384
|
$fault: "client",
|
|
383
385
|
...opts,
|
|
384
386
|
});
|
|
385
|
-
this.name = "InvalidClusterSnapshotStateFault";
|
|
386
|
-
this.$fault = "client";
|
|
387
387
|
Object.setPrototypeOf(this, InvalidClusterSnapshotStateFault.prototype);
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
export class LimitExceededFault extends __BaseException {
|
|
391
|
+
name = "LimitExceededFault";
|
|
392
|
+
$fault = "client";
|
|
391
393
|
constructor(opts) {
|
|
392
394
|
super({
|
|
393
395
|
name: "LimitExceededFault",
|
|
394
396
|
$fault: "client",
|
|
395
397
|
...opts,
|
|
396
398
|
});
|
|
397
|
-
this.name = "LimitExceededFault";
|
|
398
|
-
this.$fault = "client";
|
|
399
399
|
Object.setPrototypeOf(this, LimitExceededFault.prototype);
|
|
400
400
|
}
|
|
401
401
|
}
|
|
402
402
|
export class BatchDeleteRequestSizeExceededFault extends __BaseException {
|
|
403
|
+
name = "BatchDeleteRequestSizeExceededFault";
|
|
404
|
+
$fault = "client";
|
|
403
405
|
constructor(opts) {
|
|
404
406
|
super({
|
|
405
407
|
name: "BatchDeleteRequestSizeExceededFault",
|
|
406
408
|
$fault: "client",
|
|
407
409
|
...opts,
|
|
408
410
|
});
|
|
409
|
-
this.name = "BatchDeleteRequestSizeExceededFault";
|
|
410
|
-
this.$fault = "client";
|
|
411
411
|
Object.setPrototypeOf(this, BatchDeleteRequestSizeExceededFault.prototype);
|
|
412
412
|
}
|
|
413
413
|
}
|
|
414
414
|
export class BatchModifyClusterSnapshotsLimitExceededFault extends __BaseException {
|
|
415
|
+
name = "BatchModifyClusterSnapshotsLimitExceededFault";
|
|
416
|
+
$fault = "client";
|
|
415
417
|
constructor(opts) {
|
|
416
418
|
super({
|
|
417
419
|
name: "BatchModifyClusterSnapshotsLimitExceededFault",
|
|
418
420
|
$fault: "client",
|
|
419
421
|
...opts,
|
|
420
422
|
});
|
|
421
|
-
this.name = "BatchModifyClusterSnapshotsLimitExceededFault";
|
|
422
|
-
this.$fault = "client";
|
|
423
423
|
Object.setPrototypeOf(this, BatchModifyClusterSnapshotsLimitExceededFault.prototype);
|
|
424
424
|
}
|
|
425
425
|
}
|
|
426
426
|
export class InvalidRetentionPeriodFault extends __BaseException {
|
|
427
|
+
name = "InvalidRetentionPeriodFault";
|
|
428
|
+
$fault = "client";
|
|
427
429
|
constructor(opts) {
|
|
428
430
|
super({
|
|
429
431
|
name: "InvalidRetentionPeriodFault",
|
|
430
432
|
$fault: "client",
|
|
431
433
|
...opts,
|
|
432
434
|
});
|
|
433
|
-
this.name = "InvalidRetentionPeriodFault";
|
|
434
|
-
this.$fault = "client";
|
|
435
435
|
Object.setPrototypeOf(this, InvalidRetentionPeriodFault.prototype);
|
|
436
436
|
}
|
|
437
437
|
}
|
|
438
438
|
export class BucketNotFoundFault extends __BaseException {
|
|
439
|
+
name = "BucketNotFoundFault";
|
|
440
|
+
$fault = "client";
|
|
439
441
|
constructor(opts) {
|
|
440
442
|
super({
|
|
441
443
|
name: "BucketNotFoundFault",
|
|
442
444
|
$fault: "client",
|
|
443
445
|
...opts,
|
|
444
446
|
});
|
|
445
|
-
this.name = "BucketNotFoundFault";
|
|
446
|
-
this.$fault = "client";
|
|
447
447
|
Object.setPrototypeOf(this, BucketNotFoundFault.prototype);
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
450
|
export class ResizeNotFoundFault extends __BaseException {
|
|
451
|
+
name = "ResizeNotFoundFault";
|
|
452
|
+
$fault = "client";
|
|
451
453
|
constructor(opts) {
|
|
452
454
|
super({
|
|
453
455
|
name: "ResizeNotFoundFault",
|
|
454
456
|
$fault: "client",
|
|
455
457
|
...opts,
|
|
456
458
|
});
|
|
457
|
-
this.name = "ResizeNotFoundFault";
|
|
458
|
-
this.$fault = "client";
|
|
459
459
|
Object.setPrototypeOf(this, ResizeNotFoundFault.prototype);
|
|
460
460
|
}
|
|
461
461
|
}
|
|
@@ -468,38 +468,38 @@ export const ReservedNodeExchangeStatusType = {
|
|
|
468
468
|
SUCCEEDED: "SUCCEEDED",
|
|
469
469
|
};
|
|
470
470
|
export class ClusterAlreadyExistsFault extends __BaseException {
|
|
471
|
+
name = "ClusterAlreadyExistsFault";
|
|
472
|
+
$fault = "client";
|
|
471
473
|
constructor(opts) {
|
|
472
474
|
super({
|
|
473
475
|
name: "ClusterAlreadyExistsFault",
|
|
474
476
|
$fault: "client",
|
|
475
477
|
...opts,
|
|
476
478
|
});
|
|
477
|
-
this.name = "ClusterAlreadyExistsFault";
|
|
478
|
-
this.$fault = "client";
|
|
479
479
|
Object.setPrototypeOf(this, ClusterAlreadyExistsFault.prototype);
|
|
480
480
|
}
|
|
481
481
|
}
|
|
482
482
|
export class ClusterOnLatestRevisionFault extends __BaseException {
|
|
483
|
+
name = "ClusterOnLatestRevisionFault";
|
|
484
|
+
$fault = "client";
|
|
483
485
|
constructor(opts) {
|
|
484
486
|
super({
|
|
485
487
|
name: "ClusterOnLatestRevisionFault",
|
|
486
488
|
$fault: "client",
|
|
487
489
|
...opts,
|
|
488
490
|
});
|
|
489
|
-
this.name = "ClusterOnLatestRevisionFault";
|
|
490
|
-
this.$fault = "client";
|
|
491
491
|
Object.setPrototypeOf(this, ClusterOnLatestRevisionFault.prototype);
|
|
492
492
|
}
|
|
493
493
|
}
|
|
494
494
|
export class ClusterParameterGroupAlreadyExistsFault extends __BaseException {
|
|
495
|
+
name = "ClusterParameterGroupAlreadyExistsFault";
|
|
496
|
+
$fault = "client";
|
|
495
497
|
constructor(opts) {
|
|
496
498
|
super({
|
|
497
499
|
name: "ClusterParameterGroupAlreadyExistsFault",
|
|
498
500
|
$fault: "client",
|
|
499
501
|
...opts,
|
|
500
502
|
});
|
|
501
|
-
this.name = "ClusterParameterGroupAlreadyExistsFault";
|
|
502
|
-
this.$fault = "client";
|
|
503
503
|
Object.setPrototypeOf(this, ClusterParameterGroupAlreadyExistsFault.prototype);
|
|
504
504
|
}
|
|
505
505
|
}
|
|
@@ -508,566 +508,566 @@ export const ParameterApplyType = {
|
|
|
508
508
|
static: "static",
|
|
509
509
|
};
|
|
510
510
|
export class ClusterParameterGroupNotFoundFault extends __BaseException {
|
|
511
|
+
name = "ClusterParameterGroupNotFoundFault";
|
|
512
|
+
$fault = "client";
|
|
511
513
|
constructor(opts) {
|
|
512
514
|
super({
|
|
513
515
|
name: "ClusterParameterGroupNotFoundFault",
|
|
514
516
|
$fault: "client",
|
|
515
517
|
...opts,
|
|
516
518
|
});
|
|
517
|
-
this.name = "ClusterParameterGroupNotFoundFault";
|
|
518
|
-
this.$fault = "client";
|
|
519
519
|
Object.setPrototypeOf(this, ClusterParameterGroupNotFoundFault.prototype);
|
|
520
520
|
}
|
|
521
521
|
}
|
|
522
522
|
export class ClusterParameterGroupQuotaExceededFault extends __BaseException {
|
|
523
|
+
name = "ClusterParameterGroupQuotaExceededFault";
|
|
524
|
+
$fault = "client";
|
|
523
525
|
constructor(opts) {
|
|
524
526
|
super({
|
|
525
527
|
name: "ClusterParameterGroupQuotaExceededFault",
|
|
526
528
|
$fault: "client",
|
|
527
529
|
...opts,
|
|
528
530
|
});
|
|
529
|
-
this.name = "ClusterParameterGroupQuotaExceededFault";
|
|
530
|
-
this.$fault = "client";
|
|
531
531
|
Object.setPrototypeOf(this, ClusterParameterGroupQuotaExceededFault.prototype);
|
|
532
532
|
}
|
|
533
533
|
}
|
|
534
534
|
export class ClusterQuotaExceededFault extends __BaseException {
|
|
535
|
+
name = "ClusterQuotaExceededFault";
|
|
536
|
+
$fault = "client";
|
|
535
537
|
constructor(opts) {
|
|
536
538
|
super({
|
|
537
539
|
name: "ClusterQuotaExceededFault",
|
|
538
540
|
$fault: "client",
|
|
539
541
|
...opts,
|
|
540
542
|
});
|
|
541
|
-
this.name = "ClusterQuotaExceededFault";
|
|
542
|
-
this.$fault = "client";
|
|
543
543
|
Object.setPrototypeOf(this, ClusterQuotaExceededFault.prototype);
|
|
544
544
|
}
|
|
545
545
|
}
|
|
546
546
|
export class ClusterSecurityGroupAlreadyExistsFault extends __BaseException {
|
|
547
|
+
name = "ClusterSecurityGroupAlreadyExistsFault";
|
|
548
|
+
$fault = "client";
|
|
547
549
|
constructor(opts) {
|
|
548
550
|
super({
|
|
549
551
|
name: "ClusterSecurityGroupAlreadyExistsFault",
|
|
550
552
|
$fault: "client",
|
|
551
553
|
...opts,
|
|
552
554
|
});
|
|
553
|
-
this.name = "ClusterSecurityGroupAlreadyExistsFault";
|
|
554
|
-
this.$fault = "client";
|
|
555
555
|
Object.setPrototypeOf(this, ClusterSecurityGroupAlreadyExistsFault.prototype);
|
|
556
556
|
}
|
|
557
557
|
}
|
|
558
558
|
export class ClusterSecurityGroupQuotaExceededFault extends __BaseException {
|
|
559
|
+
name = "ClusterSecurityGroupQuotaExceededFault";
|
|
560
|
+
$fault = "client";
|
|
559
561
|
constructor(opts) {
|
|
560
562
|
super({
|
|
561
563
|
name: "ClusterSecurityGroupQuotaExceededFault",
|
|
562
564
|
$fault: "client",
|
|
563
565
|
...opts,
|
|
564
566
|
});
|
|
565
|
-
this.name = "ClusterSecurityGroupQuotaExceededFault";
|
|
566
|
-
this.$fault = "client";
|
|
567
567
|
Object.setPrototypeOf(this, ClusterSecurityGroupQuotaExceededFault.prototype);
|
|
568
568
|
}
|
|
569
569
|
}
|
|
570
570
|
export class ClusterSnapshotAlreadyExistsFault extends __BaseException {
|
|
571
|
+
name = "ClusterSnapshotAlreadyExistsFault";
|
|
572
|
+
$fault = "client";
|
|
571
573
|
constructor(opts) {
|
|
572
574
|
super({
|
|
573
575
|
name: "ClusterSnapshotAlreadyExistsFault",
|
|
574
576
|
$fault: "client",
|
|
575
577
|
...opts,
|
|
576
578
|
});
|
|
577
|
-
this.name = "ClusterSnapshotAlreadyExistsFault";
|
|
578
|
-
this.$fault = "client";
|
|
579
579
|
Object.setPrototypeOf(this, ClusterSnapshotAlreadyExistsFault.prototype);
|
|
580
580
|
}
|
|
581
581
|
}
|
|
582
582
|
export class ClusterSnapshotQuotaExceededFault extends __BaseException {
|
|
583
|
+
name = "ClusterSnapshotQuotaExceededFault";
|
|
584
|
+
$fault = "client";
|
|
583
585
|
constructor(opts) {
|
|
584
586
|
super({
|
|
585
587
|
name: "ClusterSnapshotQuotaExceededFault",
|
|
586
588
|
$fault: "client",
|
|
587
589
|
...opts,
|
|
588
590
|
});
|
|
589
|
-
this.name = "ClusterSnapshotQuotaExceededFault";
|
|
590
|
-
this.$fault = "client";
|
|
591
591
|
Object.setPrototypeOf(this, ClusterSnapshotQuotaExceededFault.prototype);
|
|
592
592
|
}
|
|
593
593
|
}
|
|
594
594
|
export class ClusterSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
595
|
+
name = "ClusterSubnetGroupAlreadyExistsFault";
|
|
596
|
+
$fault = "client";
|
|
595
597
|
constructor(opts) {
|
|
596
598
|
super({
|
|
597
599
|
name: "ClusterSubnetGroupAlreadyExistsFault",
|
|
598
600
|
$fault: "client",
|
|
599
601
|
...opts,
|
|
600
602
|
});
|
|
601
|
-
this.name = "ClusterSubnetGroupAlreadyExistsFault";
|
|
602
|
-
this.$fault = "client";
|
|
603
603
|
Object.setPrototypeOf(this, ClusterSubnetGroupAlreadyExistsFault.prototype);
|
|
604
604
|
}
|
|
605
605
|
}
|
|
606
606
|
export class ClusterSubnetGroupNotFoundFault extends __BaseException {
|
|
607
|
+
name = "ClusterSubnetGroupNotFoundFault";
|
|
608
|
+
$fault = "client";
|
|
607
609
|
constructor(opts) {
|
|
608
610
|
super({
|
|
609
611
|
name: "ClusterSubnetGroupNotFoundFault",
|
|
610
612
|
$fault: "client",
|
|
611
613
|
...opts,
|
|
612
614
|
});
|
|
613
|
-
this.name = "ClusterSubnetGroupNotFoundFault";
|
|
614
|
-
this.$fault = "client";
|
|
615
615
|
Object.setPrototypeOf(this, ClusterSubnetGroupNotFoundFault.prototype);
|
|
616
616
|
}
|
|
617
617
|
}
|
|
618
618
|
export class ClusterSubnetGroupQuotaExceededFault extends __BaseException {
|
|
619
|
+
name = "ClusterSubnetGroupQuotaExceededFault";
|
|
620
|
+
$fault = "client";
|
|
619
621
|
constructor(opts) {
|
|
620
622
|
super({
|
|
621
623
|
name: "ClusterSubnetGroupQuotaExceededFault",
|
|
622
624
|
$fault: "client",
|
|
623
625
|
...opts,
|
|
624
626
|
});
|
|
625
|
-
this.name = "ClusterSubnetGroupQuotaExceededFault";
|
|
626
|
-
this.$fault = "client";
|
|
627
627
|
Object.setPrototypeOf(this, ClusterSubnetGroupQuotaExceededFault.prototype);
|
|
628
628
|
}
|
|
629
629
|
}
|
|
630
630
|
export class ClusterSubnetQuotaExceededFault extends __BaseException {
|
|
631
|
+
name = "ClusterSubnetQuotaExceededFault";
|
|
632
|
+
$fault = "client";
|
|
631
633
|
constructor(opts) {
|
|
632
634
|
super({
|
|
633
635
|
name: "ClusterSubnetQuotaExceededFault",
|
|
634
636
|
$fault: "client",
|
|
635
637
|
...opts,
|
|
636
638
|
});
|
|
637
|
-
this.name = "ClusterSubnetQuotaExceededFault";
|
|
638
|
-
this.$fault = "client";
|
|
639
639
|
Object.setPrototypeOf(this, ClusterSubnetQuotaExceededFault.prototype);
|
|
640
640
|
}
|
|
641
641
|
}
|
|
642
642
|
export class ConflictPolicyUpdateFault extends __BaseException {
|
|
643
|
+
name = "ConflictPolicyUpdateFault";
|
|
644
|
+
$fault = "client";
|
|
643
645
|
constructor(opts) {
|
|
644
646
|
super({
|
|
645
647
|
name: "ConflictPolicyUpdateFault",
|
|
646
648
|
$fault: "client",
|
|
647
649
|
...opts,
|
|
648
650
|
});
|
|
649
|
-
this.name = "ConflictPolicyUpdateFault";
|
|
650
|
-
this.$fault = "client";
|
|
651
651
|
Object.setPrototypeOf(this, ConflictPolicyUpdateFault.prototype);
|
|
652
652
|
}
|
|
653
653
|
}
|
|
654
654
|
export class CopyToRegionDisabledFault extends __BaseException {
|
|
655
|
+
name = "CopyToRegionDisabledFault";
|
|
656
|
+
$fault = "client";
|
|
655
657
|
constructor(opts) {
|
|
656
658
|
super({
|
|
657
659
|
name: "CopyToRegionDisabledFault",
|
|
658
660
|
$fault: "client",
|
|
659
661
|
...opts,
|
|
660
662
|
});
|
|
661
|
-
this.name = "CopyToRegionDisabledFault";
|
|
662
|
-
this.$fault = "client";
|
|
663
663
|
Object.setPrototypeOf(this, CopyToRegionDisabledFault.prototype);
|
|
664
664
|
}
|
|
665
665
|
}
|
|
666
666
|
export class InvalidAuthenticationProfileRequestFault extends __BaseException {
|
|
667
|
+
name = "InvalidAuthenticationProfileRequestFault";
|
|
668
|
+
$fault = "client";
|
|
667
669
|
constructor(opts) {
|
|
668
670
|
super({
|
|
669
671
|
name: "InvalidAuthenticationProfileRequestFault",
|
|
670
672
|
$fault: "client",
|
|
671
673
|
...opts,
|
|
672
674
|
});
|
|
673
|
-
this.name = "InvalidAuthenticationProfileRequestFault";
|
|
674
|
-
this.$fault = "client";
|
|
675
675
|
Object.setPrototypeOf(this, InvalidAuthenticationProfileRequestFault.prototype);
|
|
676
676
|
}
|
|
677
677
|
}
|
|
678
678
|
export class HsmClientCertificateNotFoundFault extends __BaseException {
|
|
679
|
+
name = "HsmClientCertificateNotFoundFault";
|
|
680
|
+
$fault = "client";
|
|
679
681
|
constructor(opts) {
|
|
680
682
|
super({
|
|
681
683
|
name: "HsmClientCertificateNotFoundFault",
|
|
682
684
|
$fault: "client",
|
|
683
685
|
...opts,
|
|
684
686
|
});
|
|
685
|
-
this.name = "HsmClientCertificateNotFoundFault";
|
|
686
|
-
this.$fault = "client";
|
|
687
687
|
Object.setPrototypeOf(this, HsmClientCertificateNotFoundFault.prototype);
|
|
688
688
|
}
|
|
689
689
|
}
|
|
690
690
|
export class HsmConfigurationNotFoundFault extends __BaseException {
|
|
691
|
+
name = "HsmConfigurationNotFoundFault";
|
|
692
|
+
$fault = "client";
|
|
691
693
|
constructor(opts) {
|
|
692
694
|
super({
|
|
693
695
|
name: "HsmConfigurationNotFoundFault",
|
|
694
696
|
$fault: "client",
|
|
695
697
|
...opts,
|
|
696
698
|
});
|
|
697
|
-
this.name = "HsmConfigurationNotFoundFault";
|
|
698
|
-
this.$fault = "client";
|
|
699
699
|
Object.setPrototypeOf(this, HsmConfigurationNotFoundFault.prototype);
|
|
700
700
|
}
|
|
701
701
|
}
|
|
702
702
|
export class InsufficientClusterCapacityFault extends __BaseException {
|
|
703
|
+
name = "InsufficientClusterCapacityFault";
|
|
704
|
+
$fault = "client";
|
|
703
705
|
constructor(opts) {
|
|
704
706
|
super({
|
|
705
707
|
name: "InsufficientClusterCapacityFault",
|
|
706
708
|
$fault: "client",
|
|
707
709
|
...opts,
|
|
708
710
|
});
|
|
709
|
-
this.name = "InsufficientClusterCapacityFault";
|
|
710
|
-
this.$fault = "client";
|
|
711
711
|
Object.setPrototypeOf(this, InsufficientClusterCapacityFault.prototype);
|
|
712
712
|
}
|
|
713
713
|
}
|
|
714
714
|
export class InvalidClusterSubnetGroupStateFault extends __BaseException {
|
|
715
|
+
name = "InvalidClusterSubnetGroupStateFault";
|
|
716
|
+
$fault = "client";
|
|
715
717
|
constructor(opts) {
|
|
716
718
|
super({
|
|
717
719
|
name: "InvalidClusterSubnetGroupStateFault",
|
|
718
720
|
$fault: "client",
|
|
719
721
|
...opts,
|
|
720
722
|
});
|
|
721
|
-
this.name = "InvalidClusterSubnetGroupStateFault";
|
|
722
|
-
this.$fault = "client";
|
|
723
723
|
Object.setPrototypeOf(this, InvalidClusterSubnetGroupStateFault.prototype);
|
|
724
724
|
}
|
|
725
725
|
}
|
|
726
726
|
export class InvalidClusterTrackFault extends __BaseException {
|
|
727
|
+
name = "InvalidClusterTrackFault";
|
|
728
|
+
$fault = "client";
|
|
727
729
|
constructor(opts) {
|
|
728
730
|
super({
|
|
729
731
|
name: "InvalidClusterTrackFault",
|
|
730
732
|
$fault: "client",
|
|
731
733
|
...opts,
|
|
732
734
|
});
|
|
733
|
-
this.name = "InvalidClusterTrackFault";
|
|
734
|
-
this.$fault = "client";
|
|
735
735
|
Object.setPrototypeOf(this, InvalidClusterTrackFault.prototype);
|
|
736
736
|
}
|
|
737
737
|
}
|
|
738
738
|
export class InvalidElasticIpFault extends __BaseException {
|
|
739
|
+
name = "InvalidElasticIpFault";
|
|
740
|
+
$fault = "client";
|
|
739
741
|
constructor(opts) {
|
|
740
742
|
super({
|
|
741
743
|
name: "InvalidElasticIpFault",
|
|
742
744
|
$fault: "client",
|
|
743
745
|
...opts,
|
|
744
746
|
});
|
|
745
|
-
this.name = "InvalidElasticIpFault";
|
|
746
|
-
this.$fault = "client";
|
|
747
747
|
Object.setPrototypeOf(this, InvalidElasticIpFault.prototype);
|
|
748
748
|
}
|
|
749
749
|
}
|
|
750
750
|
export class InvalidSubnet extends __BaseException {
|
|
751
|
+
name = "InvalidSubnet";
|
|
752
|
+
$fault = "client";
|
|
751
753
|
constructor(opts) {
|
|
752
754
|
super({
|
|
753
755
|
name: "InvalidSubnet",
|
|
754
756
|
$fault: "client",
|
|
755
757
|
...opts,
|
|
756
758
|
});
|
|
757
|
-
this.name = "InvalidSubnet";
|
|
758
|
-
this.$fault = "client";
|
|
759
759
|
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
760
760
|
}
|
|
761
761
|
}
|
|
762
762
|
export class InvalidTagFault extends __BaseException {
|
|
763
|
+
name = "InvalidTagFault";
|
|
764
|
+
$fault = "client";
|
|
763
765
|
constructor(opts) {
|
|
764
766
|
super({
|
|
765
767
|
name: "InvalidTagFault",
|
|
766
768
|
$fault: "client",
|
|
767
769
|
...opts,
|
|
768
770
|
});
|
|
769
|
-
this.name = "InvalidTagFault";
|
|
770
|
-
this.$fault = "client";
|
|
771
771
|
Object.setPrototypeOf(this, InvalidTagFault.prototype);
|
|
772
772
|
}
|
|
773
773
|
}
|
|
774
774
|
export class InvalidVPCNetworkStateFault extends __BaseException {
|
|
775
|
+
name = "InvalidVPCNetworkStateFault";
|
|
776
|
+
$fault = "client";
|
|
775
777
|
constructor(opts) {
|
|
776
778
|
super({
|
|
777
779
|
name: "InvalidVPCNetworkStateFault",
|
|
778
780
|
$fault: "client",
|
|
779
781
|
...opts,
|
|
780
782
|
});
|
|
781
|
-
this.name = "InvalidVPCNetworkStateFault";
|
|
782
|
-
this.$fault = "client";
|
|
783
783
|
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
784
784
|
}
|
|
785
785
|
}
|
|
786
786
|
export class Ipv6CidrBlockNotFoundFault extends __BaseException {
|
|
787
|
+
name = "Ipv6CidrBlockNotFoundFault";
|
|
788
|
+
$fault = "client";
|
|
787
789
|
constructor(opts) {
|
|
788
790
|
super({
|
|
789
791
|
name: "Ipv6CidrBlockNotFoundFault",
|
|
790
792
|
$fault: "client",
|
|
791
793
|
...opts,
|
|
792
794
|
});
|
|
793
|
-
this.name = "Ipv6CidrBlockNotFoundFault";
|
|
794
|
-
this.$fault = "client";
|
|
795
795
|
Object.setPrototypeOf(this, Ipv6CidrBlockNotFoundFault.prototype);
|
|
796
796
|
}
|
|
797
797
|
}
|
|
798
798
|
export class NumberOfNodesPerClusterLimitExceededFault extends __BaseException {
|
|
799
|
+
name = "NumberOfNodesPerClusterLimitExceededFault";
|
|
800
|
+
$fault = "client";
|
|
799
801
|
constructor(opts) {
|
|
800
802
|
super({
|
|
801
803
|
name: "NumberOfNodesPerClusterLimitExceededFault",
|
|
802
804
|
$fault: "client",
|
|
803
805
|
...opts,
|
|
804
806
|
});
|
|
805
|
-
this.name = "NumberOfNodesPerClusterLimitExceededFault";
|
|
806
|
-
this.$fault = "client";
|
|
807
807
|
Object.setPrototypeOf(this, NumberOfNodesPerClusterLimitExceededFault.prototype);
|
|
808
808
|
}
|
|
809
809
|
}
|
|
810
810
|
export class NumberOfNodesQuotaExceededFault extends __BaseException {
|
|
811
|
+
name = "NumberOfNodesQuotaExceededFault";
|
|
812
|
+
$fault = "client";
|
|
811
813
|
constructor(opts) {
|
|
812
814
|
super({
|
|
813
815
|
name: "NumberOfNodesQuotaExceededFault",
|
|
814
816
|
$fault: "client",
|
|
815
817
|
...opts,
|
|
816
818
|
});
|
|
817
|
-
this.name = "NumberOfNodesQuotaExceededFault";
|
|
818
|
-
this.$fault = "client";
|
|
819
819
|
Object.setPrototypeOf(this, NumberOfNodesQuotaExceededFault.prototype);
|
|
820
820
|
}
|
|
821
821
|
}
|
|
822
822
|
export class RedshiftIdcApplicationNotExistsFault extends __BaseException {
|
|
823
|
+
name = "RedshiftIdcApplicationNotExistsFault";
|
|
824
|
+
$fault = "client";
|
|
823
825
|
constructor(opts) {
|
|
824
826
|
super({
|
|
825
827
|
name: "RedshiftIdcApplicationNotExistsFault",
|
|
826
828
|
$fault: "client",
|
|
827
829
|
...opts,
|
|
828
830
|
});
|
|
829
|
-
this.name = "RedshiftIdcApplicationNotExistsFault";
|
|
830
|
-
this.$fault = "client";
|
|
831
831
|
Object.setPrototypeOf(this, RedshiftIdcApplicationNotExistsFault.prototype);
|
|
832
832
|
}
|
|
833
833
|
}
|
|
834
834
|
export class SnapshotScheduleNotFoundFault extends __BaseException {
|
|
835
|
+
name = "SnapshotScheduleNotFoundFault";
|
|
836
|
+
$fault = "client";
|
|
835
837
|
constructor(opts) {
|
|
836
838
|
super({
|
|
837
839
|
name: "SnapshotScheduleNotFoundFault",
|
|
838
840
|
$fault: "client",
|
|
839
841
|
...opts,
|
|
840
842
|
});
|
|
841
|
-
this.name = "SnapshotScheduleNotFoundFault";
|
|
842
|
-
this.$fault = "client";
|
|
843
843
|
Object.setPrototypeOf(this, SnapshotScheduleNotFoundFault.prototype);
|
|
844
844
|
}
|
|
845
845
|
}
|
|
846
846
|
export class TagLimitExceededFault extends __BaseException {
|
|
847
|
+
name = "TagLimitExceededFault";
|
|
848
|
+
$fault = "client";
|
|
847
849
|
constructor(opts) {
|
|
848
850
|
super({
|
|
849
851
|
name: "TagLimitExceededFault",
|
|
850
852
|
$fault: "client",
|
|
851
853
|
...opts,
|
|
852
854
|
});
|
|
853
|
-
this.name = "TagLimitExceededFault";
|
|
854
|
-
this.$fault = "client";
|
|
855
855
|
Object.setPrototypeOf(this, TagLimitExceededFault.prototype);
|
|
856
856
|
}
|
|
857
857
|
}
|
|
858
858
|
export class UnauthorizedOperation extends __BaseException {
|
|
859
|
+
name = "UnauthorizedOperation";
|
|
860
|
+
$fault = "client";
|
|
859
861
|
constructor(opts) {
|
|
860
862
|
super({
|
|
861
863
|
name: "UnauthorizedOperation",
|
|
862
864
|
$fault: "client",
|
|
863
865
|
...opts,
|
|
864
866
|
});
|
|
865
|
-
this.name = "UnauthorizedOperation";
|
|
866
|
-
this.$fault = "client";
|
|
867
867
|
Object.setPrototypeOf(this, UnauthorizedOperation.prototype);
|
|
868
868
|
}
|
|
869
869
|
}
|
|
870
870
|
export class CustomCnameAssociationFault extends __BaseException {
|
|
871
|
+
name = "CustomCnameAssociationFault";
|
|
872
|
+
$fault = "client";
|
|
871
873
|
constructor(opts) {
|
|
872
874
|
super({
|
|
873
875
|
name: "CustomCnameAssociationFault",
|
|
874
876
|
$fault: "client",
|
|
875
877
|
...opts,
|
|
876
878
|
});
|
|
877
|
-
this.name = "CustomCnameAssociationFault";
|
|
878
|
-
this.$fault = "client";
|
|
879
879
|
Object.setPrototypeOf(this, CustomCnameAssociationFault.prototype);
|
|
880
880
|
}
|
|
881
881
|
}
|
|
882
882
|
export class EndpointAlreadyExistsFault extends __BaseException {
|
|
883
|
+
name = "EndpointAlreadyExistsFault";
|
|
884
|
+
$fault = "client";
|
|
883
885
|
constructor(opts) {
|
|
884
886
|
super({
|
|
885
887
|
name: "EndpointAlreadyExistsFault",
|
|
886
888
|
$fault: "client",
|
|
887
889
|
...opts,
|
|
888
890
|
});
|
|
889
|
-
this.name = "EndpointAlreadyExistsFault";
|
|
890
|
-
this.$fault = "client";
|
|
891
891
|
Object.setPrototypeOf(this, EndpointAlreadyExistsFault.prototype);
|
|
892
892
|
}
|
|
893
893
|
}
|
|
894
894
|
export class EndpointsPerAuthorizationLimitExceededFault extends __BaseException {
|
|
895
|
+
name = "EndpointsPerAuthorizationLimitExceededFault";
|
|
896
|
+
$fault = "client";
|
|
895
897
|
constructor(opts) {
|
|
896
898
|
super({
|
|
897
899
|
name: "EndpointsPerAuthorizationLimitExceededFault",
|
|
898
900
|
$fault: "client",
|
|
899
901
|
...opts,
|
|
900
902
|
});
|
|
901
|
-
this.name = "EndpointsPerAuthorizationLimitExceededFault";
|
|
902
|
-
this.$fault = "client";
|
|
903
903
|
Object.setPrototypeOf(this, EndpointsPerAuthorizationLimitExceededFault.prototype);
|
|
904
904
|
}
|
|
905
905
|
}
|
|
906
906
|
export class EndpointsPerClusterLimitExceededFault extends __BaseException {
|
|
907
|
+
name = "EndpointsPerClusterLimitExceededFault";
|
|
908
|
+
$fault = "client";
|
|
907
909
|
constructor(opts) {
|
|
908
910
|
super({
|
|
909
911
|
name: "EndpointsPerClusterLimitExceededFault",
|
|
910
912
|
$fault: "client",
|
|
911
913
|
...opts,
|
|
912
914
|
});
|
|
913
|
-
this.name = "EndpointsPerClusterLimitExceededFault";
|
|
914
|
-
this.$fault = "client";
|
|
915
915
|
Object.setPrototypeOf(this, EndpointsPerClusterLimitExceededFault.prototype);
|
|
916
916
|
}
|
|
917
917
|
}
|
|
918
918
|
export class EventSubscriptionQuotaExceededFault extends __BaseException {
|
|
919
|
+
name = "EventSubscriptionQuotaExceededFault";
|
|
920
|
+
$fault = "client";
|
|
919
921
|
constructor(opts) {
|
|
920
922
|
super({
|
|
921
923
|
name: "EventSubscriptionQuotaExceededFault",
|
|
922
924
|
$fault: "client",
|
|
923
925
|
...opts,
|
|
924
926
|
});
|
|
925
|
-
this.name = "EventSubscriptionQuotaExceededFault";
|
|
926
|
-
this.$fault = "client";
|
|
927
927
|
Object.setPrototypeOf(this, EventSubscriptionQuotaExceededFault.prototype);
|
|
928
928
|
}
|
|
929
929
|
}
|
|
930
930
|
export class SNSInvalidTopicFault extends __BaseException {
|
|
931
|
+
name = "SNSInvalidTopicFault";
|
|
932
|
+
$fault = "client";
|
|
931
933
|
constructor(opts) {
|
|
932
934
|
super({
|
|
933
935
|
name: "SNSInvalidTopicFault",
|
|
934
936
|
$fault: "client",
|
|
935
937
|
...opts,
|
|
936
938
|
});
|
|
937
|
-
this.name = "SNSInvalidTopicFault";
|
|
938
|
-
this.$fault = "client";
|
|
939
939
|
Object.setPrototypeOf(this, SNSInvalidTopicFault.prototype);
|
|
940
940
|
}
|
|
941
941
|
}
|
|
942
942
|
export class SNSNoAuthorizationFault extends __BaseException {
|
|
943
|
+
name = "SNSNoAuthorizationFault";
|
|
944
|
+
$fault = "client";
|
|
943
945
|
constructor(opts) {
|
|
944
946
|
super({
|
|
945
947
|
name: "SNSNoAuthorizationFault",
|
|
946
948
|
$fault: "client",
|
|
947
949
|
...opts,
|
|
948
950
|
});
|
|
949
|
-
this.name = "SNSNoAuthorizationFault";
|
|
950
|
-
this.$fault = "client";
|
|
951
951
|
Object.setPrototypeOf(this, SNSNoAuthorizationFault.prototype);
|
|
952
952
|
}
|
|
953
953
|
}
|
|
954
954
|
export class SNSTopicArnNotFoundFault extends __BaseException {
|
|
955
|
+
name = "SNSTopicArnNotFoundFault";
|
|
956
|
+
$fault = "client";
|
|
955
957
|
constructor(opts) {
|
|
956
958
|
super({
|
|
957
959
|
name: "SNSTopicArnNotFoundFault",
|
|
958
960
|
$fault: "client",
|
|
959
961
|
...opts,
|
|
960
962
|
});
|
|
961
|
-
this.name = "SNSTopicArnNotFoundFault";
|
|
962
|
-
this.$fault = "client";
|
|
963
963
|
Object.setPrototypeOf(this, SNSTopicArnNotFoundFault.prototype);
|
|
964
964
|
}
|
|
965
965
|
}
|
|
966
966
|
export class SourceNotFoundFault extends __BaseException {
|
|
967
|
+
name = "SourceNotFoundFault";
|
|
968
|
+
$fault = "client";
|
|
967
969
|
constructor(opts) {
|
|
968
970
|
super({
|
|
969
971
|
name: "SourceNotFoundFault",
|
|
970
972
|
$fault: "client",
|
|
971
973
|
...opts,
|
|
972
974
|
});
|
|
973
|
-
this.name = "SourceNotFoundFault";
|
|
974
|
-
this.$fault = "client";
|
|
975
975
|
Object.setPrototypeOf(this, SourceNotFoundFault.prototype);
|
|
976
976
|
}
|
|
977
977
|
}
|
|
978
978
|
export class SubscriptionAlreadyExistFault extends __BaseException {
|
|
979
|
+
name = "SubscriptionAlreadyExistFault";
|
|
980
|
+
$fault = "client";
|
|
979
981
|
constructor(opts) {
|
|
980
982
|
super({
|
|
981
983
|
name: "SubscriptionAlreadyExistFault",
|
|
982
984
|
$fault: "client",
|
|
983
985
|
...opts,
|
|
984
986
|
});
|
|
985
|
-
this.name = "SubscriptionAlreadyExistFault";
|
|
986
|
-
this.$fault = "client";
|
|
987
987
|
Object.setPrototypeOf(this, SubscriptionAlreadyExistFault.prototype);
|
|
988
988
|
}
|
|
989
989
|
}
|
|
990
990
|
export class SubscriptionCategoryNotFoundFault extends __BaseException {
|
|
991
|
+
name = "SubscriptionCategoryNotFoundFault";
|
|
992
|
+
$fault = "client";
|
|
991
993
|
constructor(opts) {
|
|
992
994
|
super({
|
|
993
995
|
name: "SubscriptionCategoryNotFoundFault",
|
|
994
996
|
$fault: "client",
|
|
995
997
|
...opts,
|
|
996
998
|
});
|
|
997
|
-
this.name = "SubscriptionCategoryNotFoundFault";
|
|
998
|
-
this.$fault = "client";
|
|
999
999
|
Object.setPrototypeOf(this, SubscriptionCategoryNotFoundFault.prototype);
|
|
1000
1000
|
}
|
|
1001
1001
|
}
|
|
1002
1002
|
export class SubscriptionEventIdNotFoundFault extends __BaseException {
|
|
1003
|
+
name = "SubscriptionEventIdNotFoundFault";
|
|
1004
|
+
$fault = "client";
|
|
1003
1005
|
constructor(opts) {
|
|
1004
1006
|
super({
|
|
1005
1007
|
name: "SubscriptionEventIdNotFoundFault",
|
|
1006
1008
|
$fault: "client",
|
|
1007
1009
|
...opts,
|
|
1008
1010
|
});
|
|
1009
|
-
this.name = "SubscriptionEventIdNotFoundFault";
|
|
1010
|
-
this.$fault = "client";
|
|
1011
1011
|
Object.setPrototypeOf(this, SubscriptionEventIdNotFoundFault.prototype);
|
|
1012
1012
|
}
|
|
1013
1013
|
}
|
|
1014
1014
|
export class SubscriptionSeverityNotFoundFault extends __BaseException {
|
|
1015
|
+
name = "SubscriptionSeverityNotFoundFault";
|
|
1016
|
+
$fault = "client";
|
|
1015
1017
|
constructor(opts) {
|
|
1016
1018
|
super({
|
|
1017
1019
|
name: "SubscriptionSeverityNotFoundFault",
|
|
1018
1020
|
$fault: "client",
|
|
1019
1021
|
...opts,
|
|
1020
1022
|
});
|
|
1021
|
-
this.name = "SubscriptionSeverityNotFoundFault";
|
|
1022
|
-
this.$fault = "client";
|
|
1023
1023
|
Object.setPrototypeOf(this, SubscriptionSeverityNotFoundFault.prototype);
|
|
1024
1024
|
}
|
|
1025
1025
|
}
|
|
1026
1026
|
export class HsmClientCertificateAlreadyExistsFault extends __BaseException {
|
|
1027
|
+
name = "HsmClientCertificateAlreadyExistsFault";
|
|
1028
|
+
$fault = "client";
|
|
1027
1029
|
constructor(opts) {
|
|
1028
1030
|
super({
|
|
1029
1031
|
name: "HsmClientCertificateAlreadyExistsFault",
|
|
1030
1032
|
$fault: "client",
|
|
1031
1033
|
...opts,
|
|
1032
1034
|
});
|
|
1033
|
-
this.name = "HsmClientCertificateAlreadyExistsFault";
|
|
1034
|
-
this.$fault = "client";
|
|
1035
1035
|
Object.setPrototypeOf(this, HsmClientCertificateAlreadyExistsFault.prototype);
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
1038
|
export class HsmClientCertificateQuotaExceededFault extends __BaseException {
|
|
1039
|
+
name = "HsmClientCertificateQuotaExceededFault";
|
|
1040
|
+
$fault = "client";
|
|
1039
1041
|
constructor(opts) {
|
|
1040
1042
|
super({
|
|
1041
1043
|
name: "HsmClientCertificateQuotaExceededFault",
|
|
1042
1044
|
$fault: "client",
|
|
1043
1045
|
...opts,
|
|
1044
1046
|
});
|
|
1045
|
-
this.name = "HsmClientCertificateQuotaExceededFault";
|
|
1046
|
-
this.$fault = "client";
|
|
1047
1047
|
Object.setPrototypeOf(this, HsmClientCertificateQuotaExceededFault.prototype);
|
|
1048
1048
|
}
|
|
1049
1049
|
}
|
|
1050
1050
|
export class HsmConfigurationAlreadyExistsFault extends __BaseException {
|
|
1051
|
+
name = "HsmConfigurationAlreadyExistsFault";
|
|
1052
|
+
$fault = "client";
|
|
1051
1053
|
constructor(opts) {
|
|
1052
1054
|
super({
|
|
1053
1055
|
name: "HsmConfigurationAlreadyExistsFault",
|
|
1054
1056
|
$fault: "client",
|
|
1055
1057
|
...opts,
|
|
1056
1058
|
});
|
|
1057
|
-
this.name = "HsmConfigurationAlreadyExistsFault";
|
|
1058
|
-
this.$fault = "client";
|
|
1059
1059
|
Object.setPrototypeOf(this, HsmConfigurationAlreadyExistsFault.prototype);
|
|
1060
1060
|
}
|
|
1061
1061
|
}
|
|
1062
1062
|
export class HsmConfigurationQuotaExceededFault extends __BaseException {
|
|
1063
|
+
name = "HsmConfigurationQuotaExceededFault";
|
|
1064
|
+
$fault = "client";
|
|
1063
1065
|
constructor(opts) {
|
|
1064
1066
|
super({
|
|
1065
1067
|
name: "HsmConfigurationQuotaExceededFault",
|
|
1066
1068
|
$fault: "client",
|
|
1067
1069
|
...opts,
|
|
1068
1070
|
});
|
|
1069
|
-
this.name = "HsmConfigurationQuotaExceededFault";
|
|
1070
|
-
this.$fault = "client";
|
|
1071
1071
|
Object.setPrototypeOf(this, HsmConfigurationQuotaExceededFault.prototype);
|
|
1072
1072
|
}
|
|
1073
1073
|
}
|
|
@@ -1081,62 +1081,62 @@ export const ZeroETLIntegrationStatus = {
|
|
|
1081
1081
|
SYNCING: "syncing",
|
|
1082
1082
|
};
|
|
1083
1083
|
export class IntegrationAlreadyExistsFault extends __BaseException {
|
|
1084
|
+
name = "IntegrationAlreadyExistsFault";
|
|
1085
|
+
$fault = "client";
|
|
1084
1086
|
constructor(opts) {
|
|
1085
1087
|
super({
|
|
1086
1088
|
name: "IntegrationAlreadyExistsFault",
|
|
1087
1089
|
$fault: "client",
|
|
1088
1090
|
...opts,
|
|
1089
1091
|
});
|
|
1090
|
-
this.name = "IntegrationAlreadyExistsFault";
|
|
1091
|
-
this.$fault = "client";
|
|
1092
1092
|
Object.setPrototypeOf(this, IntegrationAlreadyExistsFault.prototype);
|
|
1093
1093
|
}
|
|
1094
1094
|
}
|
|
1095
1095
|
export class IntegrationConflictOperationFault extends __BaseException {
|
|
1096
|
+
name = "IntegrationConflictOperationFault";
|
|
1097
|
+
$fault = "client";
|
|
1096
1098
|
constructor(opts) {
|
|
1097
1099
|
super({
|
|
1098
1100
|
name: "IntegrationConflictOperationFault",
|
|
1099
1101
|
$fault: "client",
|
|
1100
1102
|
...opts,
|
|
1101
1103
|
});
|
|
1102
|
-
this.name = "IntegrationConflictOperationFault";
|
|
1103
|
-
this.$fault = "client";
|
|
1104
1104
|
Object.setPrototypeOf(this, IntegrationConflictOperationFault.prototype);
|
|
1105
1105
|
}
|
|
1106
1106
|
}
|
|
1107
1107
|
export class IntegrationQuotaExceededFault extends __BaseException {
|
|
1108
|
+
name = "IntegrationQuotaExceededFault";
|
|
1109
|
+
$fault = "client";
|
|
1108
1110
|
constructor(opts) {
|
|
1109
1111
|
super({
|
|
1110
1112
|
name: "IntegrationQuotaExceededFault",
|
|
1111
1113
|
$fault: "client",
|
|
1112
1114
|
...opts,
|
|
1113
1115
|
});
|
|
1114
|
-
this.name = "IntegrationQuotaExceededFault";
|
|
1115
|
-
this.$fault = "client";
|
|
1116
1116
|
Object.setPrototypeOf(this, IntegrationQuotaExceededFault.prototype);
|
|
1117
1117
|
}
|
|
1118
1118
|
}
|
|
1119
1119
|
export class IntegrationSourceNotFoundFault extends __BaseException {
|
|
1120
|
+
name = "IntegrationSourceNotFoundFault";
|
|
1121
|
+
$fault = "client";
|
|
1120
1122
|
constructor(opts) {
|
|
1121
1123
|
super({
|
|
1122
1124
|
name: "IntegrationSourceNotFoundFault",
|
|
1123
1125
|
$fault: "client",
|
|
1124
1126
|
...opts,
|
|
1125
1127
|
});
|
|
1126
|
-
this.name = "IntegrationSourceNotFoundFault";
|
|
1127
|
-
this.$fault = "client";
|
|
1128
1128
|
Object.setPrototypeOf(this, IntegrationSourceNotFoundFault.prototype);
|
|
1129
1129
|
}
|
|
1130
1130
|
}
|
|
1131
1131
|
export class IntegrationTargetNotFoundFault extends __BaseException {
|
|
1132
|
+
name = "IntegrationTargetNotFoundFault";
|
|
1133
|
+
$fault = "client";
|
|
1132
1134
|
constructor(opts) {
|
|
1133
1135
|
super({
|
|
1134
1136
|
name: "IntegrationTargetNotFoundFault",
|
|
1135
1137
|
$fault: "client",
|
|
1136
1138
|
...opts,
|
|
1137
1139
|
});
|
|
1138
|
-
this.name = "IntegrationTargetNotFoundFault";
|
|
1139
|
-
this.$fault = "client";
|
|
1140
1140
|
Object.setPrototypeOf(this, IntegrationTargetNotFoundFault.prototype);
|
|
1141
1141
|
}
|
|
1142
1142
|
}
|
|
@@ -1171,62 +1171,62 @@ export var ServiceIntegrationsUnion;
|
|
|
1171
1171
|
};
|
|
1172
1172
|
})(ServiceIntegrationsUnion || (ServiceIntegrationsUnion = {}));
|
|
1173
1173
|
export class DependentServiceAccessDeniedFault extends __BaseException {
|
|
1174
|
+
name = "DependentServiceAccessDeniedFault";
|
|
1175
|
+
$fault = "client";
|
|
1174
1176
|
constructor(opts) {
|
|
1175
1177
|
super({
|
|
1176
1178
|
name: "DependentServiceAccessDeniedFault",
|
|
1177
1179
|
$fault: "client",
|
|
1178
1180
|
...opts,
|
|
1179
1181
|
});
|
|
1180
|
-
this.name = "DependentServiceAccessDeniedFault";
|
|
1181
|
-
this.$fault = "client";
|
|
1182
1182
|
Object.setPrototypeOf(this, DependentServiceAccessDeniedFault.prototype);
|
|
1183
1183
|
}
|
|
1184
1184
|
}
|
|
1185
1185
|
export class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
|
|
1186
|
+
name = "RedshiftIdcApplicationAlreadyExistsFault";
|
|
1187
|
+
$fault = "client";
|
|
1186
1188
|
constructor(opts) {
|
|
1187
1189
|
super({
|
|
1188
1190
|
name: "RedshiftIdcApplicationAlreadyExistsFault",
|
|
1189
1191
|
$fault: "client",
|
|
1190
1192
|
...opts,
|
|
1191
1193
|
});
|
|
1192
|
-
this.name = "RedshiftIdcApplicationAlreadyExistsFault";
|
|
1193
|
-
this.$fault = "client";
|
|
1194
1194
|
Object.setPrototypeOf(this, RedshiftIdcApplicationAlreadyExistsFault.prototype);
|
|
1195
1195
|
}
|
|
1196
1196
|
}
|
|
1197
1197
|
export class RedshiftIdcApplicationQuotaExceededFault extends __BaseException {
|
|
1198
|
+
name = "RedshiftIdcApplicationQuotaExceededFault";
|
|
1199
|
+
$fault = "client";
|
|
1198
1200
|
constructor(opts) {
|
|
1199
1201
|
super({
|
|
1200
1202
|
name: "RedshiftIdcApplicationQuotaExceededFault",
|
|
1201
1203
|
$fault: "client",
|
|
1202
1204
|
...opts,
|
|
1203
1205
|
});
|
|
1204
|
-
this.name = "RedshiftIdcApplicationQuotaExceededFault";
|
|
1205
|
-
this.$fault = "client";
|
|
1206
1206
|
Object.setPrototypeOf(this, RedshiftIdcApplicationQuotaExceededFault.prototype);
|
|
1207
1207
|
}
|
|
1208
1208
|
}
|
|
1209
1209
|
export class InvalidScheduledActionFault extends __BaseException {
|
|
1210
|
+
name = "InvalidScheduledActionFault";
|
|
1211
|
+
$fault = "client";
|
|
1210
1212
|
constructor(opts) {
|
|
1211
1213
|
super({
|
|
1212
1214
|
name: "InvalidScheduledActionFault",
|
|
1213
1215
|
$fault: "client",
|
|
1214
1216
|
...opts,
|
|
1215
1217
|
});
|
|
1216
|
-
this.name = "InvalidScheduledActionFault";
|
|
1217
|
-
this.$fault = "client";
|
|
1218
1218
|
Object.setPrototypeOf(this, InvalidScheduledActionFault.prototype);
|
|
1219
1219
|
}
|
|
1220
1220
|
}
|
|
1221
1221
|
export class InvalidScheduleFault extends __BaseException {
|
|
1222
|
+
name = "InvalidScheduleFault";
|
|
1223
|
+
$fault = "client";
|
|
1222
1224
|
constructor(opts) {
|
|
1223
1225
|
super({
|
|
1224
1226
|
name: "InvalidScheduleFault",
|
|
1225
1227
|
$fault: "client",
|
|
1226
1228
|
...opts,
|
|
1227
1229
|
});
|
|
1228
|
-
this.name = "InvalidScheduleFault";
|
|
1229
|
-
this.$fault = "client";
|
|
1230
1230
|
Object.setPrototypeOf(this, InvalidScheduleFault.prototype);
|
|
1231
1231
|
}
|
|
1232
1232
|
}
|
|
@@ -1235,110 +1235,110 @@ export const ScheduledActionState = {
|
|
|
1235
1235
|
DISABLED: "DISABLED",
|
|
1236
1236
|
};
|
|
1237
1237
|
export class ScheduledActionAlreadyExistsFault extends __BaseException {
|
|
1238
|
+
name = "ScheduledActionAlreadyExistsFault";
|
|
1239
|
+
$fault = "client";
|
|
1238
1240
|
constructor(opts) {
|
|
1239
1241
|
super({
|
|
1240
1242
|
name: "ScheduledActionAlreadyExistsFault",
|
|
1241
1243
|
$fault: "client",
|
|
1242
1244
|
...opts,
|
|
1243
1245
|
});
|
|
1244
|
-
this.name = "ScheduledActionAlreadyExistsFault";
|
|
1245
|
-
this.$fault = "client";
|
|
1246
1246
|
Object.setPrototypeOf(this, ScheduledActionAlreadyExistsFault.prototype);
|
|
1247
1247
|
}
|
|
1248
1248
|
}
|
|
1249
1249
|
export class ScheduledActionQuotaExceededFault extends __BaseException {
|
|
1250
|
+
name = "ScheduledActionQuotaExceededFault";
|
|
1251
|
+
$fault = "client";
|
|
1250
1252
|
constructor(opts) {
|
|
1251
1253
|
super({
|
|
1252
1254
|
name: "ScheduledActionQuotaExceededFault",
|
|
1253
1255
|
$fault: "client",
|
|
1254
1256
|
...opts,
|
|
1255
1257
|
});
|
|
1256
|
-
this.name = "ScheduledActionQuotaExceededFault";
|
|
1257
|
-
this.$fault = "client";
|
|
1258
1258
|
Object.setPrototypeOf(this, ScheduledActionQuotaExceededFault.prototype);
|
|
1259
1259
|
}
|
|
1260
1260
|
}
|
|
1261
1261
|
export class ScheduledActionTypeUnsupportedFault extends __BaseException {
|
|
1262
|
+
name = "ScheduledActionTypeUnsupportedFault";
|
|
1263
|
+
$fault = "client";
|
|
1262
1264
|
constructor(opts) {
|
|
1263
1265
|
super({
|
|
1264
1266
|
name: "ScheduledActionTypeUnsupportedFault",
|
|
1265
1267
|
$fault: "client",
|
|
1266
1268
|
...opts,
|
|
1267
1269
|
});
|
|
1268
|
-
this.name = "ScheduledActionTypeUnsupportedFault";
|
|
1269
|
-
this.$fault = "client";
|
|
1270
1270
|
Object.setPrototypeOf(this, ScheduledActionTypeUnsupportedFault.prototype);
|
|
1271
1271
|
}
|
|
1272
1272
|
}
|
|
1273
1273
|
export class SnapshotCopyGrantAlreadyExistsFault extends __BaseException {
|
|
1274
|
+
name = "SnapshotCopyGrantAlreadyExistsFault";
|
|
1275
|
+
$fault = "client";
|
|
1274
1276
|
constructor(opts) {
|
|
1275
1277
|
super({
|
|
1276
1278
|
name: "SnapshotCopyGrantAlreadyExistsFault",
|
|
1277
1279
|
$fault: "client",
|
|
1278
1280
|
...opts,
|
|
1279
1281
|
});
|
|
1280
|
-
this.name = "SnapshotCopyGrantAlreadyExistsFault";
|
|
1281
|
-
this.$fault = "client";
|
|
1282
1282
|
Object.setPrototypeOf(this, SnapshotCopyGrantAlreadyExistsFault.prototype);
|
|
1283
1283
|
}
|
|
1284
1284
|
}
|
|
1285
1285
|
export class SnapshotCopyGrantQuotaExceededFault extends __BaseException {
|
|
1286
|
+
name = "SnapshotCopyGrantQuotaExceededFault";
|
|
1287
|
+
$fault = "client";
|
|
1286
1288
|
constructor(opts) {
|
|
1287
1289
|
super({
|
|
1288
1290
|
name: "SnapshotCopyGrantQuotaExceededFault",
|
|
1289
1291
|
$fault: "client",
|
|
1290
1292
|
...opts,
|
|
1291
1293
|
});
|
|
1292
|
-
this.name = "SnapshotCopyGrantQuotaExceededFault";
|
|
1293
|
-
this.$fault = "client";
|
|
1294
1294
|
Object.setPrototypeOf(this, SnapshotCopyGrantQuotaExceededFault.prototype);
|
|
1295
1295
|
}
|
|
1296
1296
|
}
|
|
1297
1297
|
export class ScheduleDefinitionTypeUnsupportedFault extends __BaseException {
|
|
1298
|
+
name = "ScheduleDefinitionTypeUnsupportedFault";
|
|
1299
|
+
$fault = "client";
|
|
1298
1300
|
constructor(opts) {
|
|
1299
1301
|
super({
|
|
1300
1302
|
name: "ScheduleDefinitionTypeUnsupportedFault",
|
|
1301
1303
|
$fault: "client",
|
|
1302
1304
|
...opts,
|
|
1303
1305
|
});
|
|
1304
|
-
this.name = "ScheduleDefinitionTypeUnsupportedFault";
|
|
1305
|
-
this.$fault = "client";
|
|
1306
1306
|
Object.setPrototypeOf(this, ScheduleDefinitionTypeUnsupportedFault.prototype);
|
|
1307
1307
|
}
|
|
1308
1308
|
}
|
|
1309
1309
|
export class SnapshotScheduleAlreadyExistsFault extends __BaseException {
|
|
1310
|
+
name = "SnapshotScheduleAlreadyExistsFault";
|
|
1311
|
+
$fault = "client";
|
|
1310
1312
|
constructor(opts) {
|
|
1311
1313
|
super({
|
|
1312
1314
|
name: "SnapshotScheduleAlreadyExistsFault",
|
|
1313
1315
|
$fault: "client",
|
|
1314
1316
|
...opts,
|
|
1315
1317
|
});
|
|
1316
|
-
this.name = "SnapshotScheduleAlreadyExistsFault";
|
|
1317
|
-
this.$fault = "client";
|
|
1318
1318
|
Object.setPrototypeOf(this, SnapshotScheduleAlreadyExistsFault.prototype);
|
|
1319
1319
|
}
|
|
1320
1320
|
}
|
|
1321
1321
|
export class SnapshotScheduleQuotaExceededFault extends __BaseException {
|
|
1322
|
+
name = "SnapshotScheduleQuotaExceededFault";
|
|
1323
|
+
$fault = "client";
|
|
1322
1324
|
constructor(opts) {
|
|
1323
1325
|
super({
|
|
1324
1326
|
name: "SnapshotScheduleQuotaExceededFault",
|
|
1325
1327
|
$fault: "client",
|
|
1326
1328
|
...opts,
|
|
1327
1329
|
});
|
|
1328
|
-
this.name = "SnapshotScheduleQuotaExceededFault";
|
|
1329
|
-
this.$fault = "client";
|
|
1330
1330
|
Object.setPrototypeOf(this, SnapshotScheduleQuotaExceededFault.prototype);
|
|
1331
1331
|
}
|
|
1332
1332
|
}
|
|
1333
1333
|
export class ResourceNotFoundFault extends __BaseException {
|
|
1334
|
+
name = "ResourceNotFoundFault";
|
|
1335
|
+
$fault = "client";
|
|
1334
1336
|
constructor(opts) {
|
|
1335
1337
|
super({
|
|
1336
1338
|
name: "ResourceNotFoundFault",
|
|
1337
1339
|
$fault: "client",
|
|
1338
1340
|
...opts,
|
|
1339
1341
|
});
|
|
1340
|
-
this.name = "ResourceNotFoundFault";
|
|
1341
|
-
this.$fault = "client";
|
|
1342
1342
|
Object.setPrototypeOf(this, ResourceNotFoundFault.prototype);
|
|
1343
1343
|
}
|
|
1344
1344
|
}
|
|
@@ -1362,38 +1362,38 @@ export const UsageLimitPeriod = {
|
|
|
1362
1362
|
WEEKLY: "weekly",
|
|
1363
1363
|
};
|
|
1364
1364
|
export class InvalidUsageLimitFault extends __BaseException {
|
|
1365
|
+
name = "InvalidUsageLimitFault";
|
|
1366
|
+
$fault = "client";
|
|
1365
1367
|
constructor(opts) {
|
|
1366
1368
|
super({
|
|
1367
1369
|
name: "InvalidUsageLimitFault",
|
|
1368
1370
|
$fault: "client",
|
|
1369
1371
|
...opts,
|
|
1370
1372
|
});
|
|
1371
|
-
this.name = "InvalidUsageLimitFault";
|
|
1372
|
-
this.$fault = "client";
|
|
1373
1373
|
Object.setPrototypeOf(this, InvalidUsageLimitFault.prototype);
|
|
1374
1374
|
}
|
|
1375
1375
|
}
|
|
1376
1376
|
export class UsageLimitAlreadyExistsFault extends __BaseException {
|
|
1377
|
+
name = "UsageLimitAlreadyExistsFault";
|
|
1378
|
+
$fault = "client";
|
|
1377
1379
|
constructor(opts) {
|
|
1378
1380
|
super({
|
|
1379
1381
|
name: "UsageLimitAlreadyExistsFault",
|
|
1380
1382
|
$fault: "client",
|
|
1381
1383
|
...opts,
|
|
1382
1384
|
});
|
|
1383
|
-
this.name = "UsageLimitAlreadyExistsFault";
|
|
1384
|
-
this.$fault = "client";
|
|
1385
1385
|
Object.setPrototypeOf(this, UsageLimitAlreadyExistsFault.prototype);
|
|
1386
1386
|
}
|
|
1387
1387
|
}
|
|
1388
1388
|
export class CustomDomainAssociationNotFoundFault extends __BaseException {
|
|
1389
|
+
name = "CustomDomainAssociationNotFoundFault";
|
|
1390
|
+
$fault = "client";
|
|
1389
1391
|
constructor(opts) {
|
|
1390
1392
|
super({
|
|
1391
1393
|
name: "CustomDomainAssociationNotFoundFault",
|
|
1392
1394
|
$fault: "client",
|
|
1393
1395
|
...opts,
|
|
1394
1396
|
});
|
|
1395
|
-
this.name = "CustomDomainAssociationNotFoundFault";
|
|
1396
|
-
this.$fault = "client";
|
|
1397
1397
|
Object.setPrototypeOf(this, CustomDomainAssociationNotFoundFault.prototype);
|
|
1398
1398
|
}
|
|
1399
1399
|
}
|
|
@@ -1409,182 +1409,182 @@ export const DataShareStatusForProducer = {
|
|
|
1409
1409
|
REJECTED: "REJECTED",
|
|
1410
1410
|
};
|
|
1411
1411
|
export class InvalidClusterParameterGroupStateFault extends __BaseException {
|
|
1412
|
+
name = "InvalidClusterParameterGroupStateFault";
|
|
1413
|
+
$fault = "client";
|
|
1412
1414
|
constructor(opts) {
|
|
1413
1415
|
super({
|
|
1414
1416
|
name: "InvalidClusterParameterGroupStateFault",
|
|
1415
1417
|
$fault: "client",
|
|
1416
1418
|
...opts,
|
|
1417
1419
|
});
|
|
1418
|
-
this.name = "InvalidClusterParameterGroupStateFault";
|
|
1419
|
-
this.$fault = "client";
|
|
1420
1420
|
Object.setPrototypeOf(this, InvalidClusterParameterGroupStateFault.prototype);
|
|
1421
1421
|
}
|
|
1422
1422
|
}
|
|
1423
1423
|
export class InvalidClusterSubnetStateFault extends __BaseException {
|
|
1424
|
+
name = "InvalidClusterSubnetStateFault";
|
|
1425
|
+
$fault = "client";
|
|
1424
1426
|
constructor(opts) {
|
|
1425
1427
|
super({
|
|
1426
1428
|
name: "InvalidClusterSubnetStateFault",
|
|
1427
1429
|
$fault: "client",
|
|
1428
1430
|
...opts,
|
|
1429
1431
|
});
|
|
1430
|
-
this.name = "InvalidClusterSubnetStateFault";
|
|
1431
|
-
this.$fault = "client";
|
|
1432
1432
|
Object.setPrototypeOf(this, InvalidClusterSubnetStateFault.prototype);
|
|
1433
1433
|
}
|
|
1434
1434
|
}
|
|
1435
1435
|
export class EndpointNotFoundFault extends __BaseException {
|
|
1436
|
+
name = "EndpointNotFoundFault";
|
|
1437
|
+
$fault = "client";
|
|
1436
1438
|
constructor(opts) {
|
|
1437
1439
|
super({
|
|
1438
1440
|
name: "EndpointNotFoundFault",
|
|
1439
1441
|
$fault: "client",
|
|
1440
1442
|
...opts,
|
|
1441
1443
|
});
|
|
1442
|
-
this.name = "EndpointNotFoundFault";
|
|
1443
|
-
this.$fault = "client";
|
|
1444
1444
|
Object.setPrototypeOf(this, EndpointNotFoundFault.prototype);
|
|
1445
1445
|
}
|
|
1446
1446
|
}
|
|
1447
1447
|
export class InvalidEndpointStateFault extends __BaseException {
|
|
1448
|
+
name = "InvalidEndpointStateFault";
|
|
1449
|
+
$fault = "client";
|
|
1448
1450
|
constructor(opts) {
|
|
1449
1451
|
super({
|
|
1450
1452
|
name: "InvalidEndpointStateFault",
|
|
1451
1453
|
$fault: "client",
|
|
1452
1454
|
...opts,
|
|
1453
1455
|
});
|
|
1454
|
-
this.name = "InvalidEndpointStateFault";
|
|
1455
|
-
this.$fault = "client";
|
|
1456
1456
|
Object.setPrototypeOf(this, InvalidEndpointStateFault.prototype);
|
|
1457
1457
|
}
|
|
1458
1458
|
}
|
|
1459
1459
|
export class InvalidSubscriptionStateFault extends __BaseException {
|
|
1460
|
+
name = "InvalidSubscriptionStateFault";
|
|
1461
|
+
$fault = "client";
|
|
1460
1462
|
constructor(opts) {
|
|
1461
1463
|
super({
|
|
1462
1464
|
name: "InvalidSubscriptionStateFault",
|
|
1463
1465
|
$fault: "client",
|
|
1464
1466
|
...opts,
|
|
1465
1467
|
});
|
|
1466
|
-
this.name = "InvalidSubscriptionStateFault";
|
|
1467
|
-
this.$fault = "client";
|
|
1468
1468
|
Object.setPrototypeOf(this, InvalidSubscriptionStateFault.prototype);
|
|
1469
1469
|
}
|
|
1470
1470
|
}
|
|
1471
1471
|
export class SubscriptionNotFoundFault extends __BaseException {
|
|
1472
|
+
name = "SubscriptionNotFoundFault";
|
|
1473
|
+
$fault = "client";
|
|
1472
1474
|
constructor(opts) {
|
|
1473
1475
|
super({
|
|
1474
1476
|
name: "SubscriptionNotFoundFault",
|
|
1475
1477
|
$fault: "client",
|
|
1476
1478
|
...opts,
|
|
1477
1479
|
});
|
|
1478
|
-
this.name = "SubscriptionNotFoundFault";
|
|
1479
|
-
this.$fault = "client";
|
|
1480
1480
|
Object.setPrototypeOf(this, SubscriptionNotFoundFault.prototype);
|
|
1481
1481
|
}
|
|
1482
1482
|
}
|
|
1483
1483
|
export class InvalidHsmClientCertificateStateFault extends __BaseException {
|
|
1484
|
+
name = "InvalidHsmClientCertificateStateFault";
|
|
1485
|
+
$fault = "client";
|
|
1484
1486
|
constructor(opts) {
|
|
1485
1487
|
super({
|
|
1486
1488
|
name: "InvalidHsmClientCertificateStateFault",
|
|
1487
1489
|
$fault: "client",
|
|
1488
1490
|
...opts,
|
|
1489
1491
|
});
|
|
1490
|
-
this.name = "InvalidHsmClientCertificateStateFault";
|
|
1491
|
-
this.$fault = "client";
|
|
1492
1492
|
Object.setPrototypeOf(this, InvalidHsmClientCertificateStateFault.prototype);
|
|
1493
1493
|
}
|
|
1494
1494
|
}
|
|
1495
1495
|
export class InvalidHsmConfigurationStateFault extends __BaseException {
|
|
1496
|
+
name = "InvalidHsmConfigurationStateFault";
|
|
1497
|
+
$fault = "client";
|
|
1496
1498
|
constructor(opts) {
|
|
1497
1499
|
super({
|
|
1498
1500
|
name: "InvalidHsmConfigurationStateFault",
|
|
1499
1501
|
$fault: "client",
|
|
1500
1502
|
...opts,
|
|
1501
1503
|
});
|
|
1502
|
-
this.name = "InvalidHsmConfigurationStateFault";
|
|
1503
|
-
this.$fault = "client";
|
|
1504
1504
|
Object.setPrototypeOf(this, InvalidHsmConfigurationStateFault.prototype);
|
|
1505
1505
|
}
|
|
1506
1506
|
}
|
|
1507
1507
|
export class IntegrationConflictStateFault extends __BaseException {
|
|
1508
|
+
name = "IntegrationConflictStateFault";
|
|
1509
|
+
$fault = "client";
|
|
1508
1510
|
constructor(opts) {
|
|
1509
1511
|
super({
|
|
1510
1512
|
name: "IntegrationConflictStateFault",
|
|
1511
1513
|
$fault: "client",
|
|
1512
1514
|
...opts,
|
|
1513
1515
|
});
|
|
1514
|
-
this.name = "IntegrationConflictStateFault";
|
|
1515
|
-
this.$fault = "client";
|
|
1516
1516
|
Object.setPrototypeOf(this, IntegrationConflictStateFault.prototype);
|
|
1517
1517
|
}
|
|
1518
1518
|
}
|
|
1519
1519
|
export class IntegrationNotFoundFault extends __BaseException {
|
|
1520
|
+
name = "IntegrationNotFoundFault";
|
|
1521
|
+
$fault = "client";
|
|
1520
1522
|
constructor(opts) {
|
|
1521
1523
|
super({
|
|
1522
1524
|
name: "IntegrationNotFoundFault",
|
|
1523
1525
|
$fault: "client",
|
|
1524
1526
|
...opts,
|
|
1525
1527
|
});
|
|
1526
|
-
this.name = "IntegrationNotFoundFault";
|
|
1527
|
-
this.$fault = "client";
|
|
1528
1528
|
Object.setPrototypeOf(this, IntegrationNotFoundFault.prototype);
|
|
1529
1529
|
}
|
|
1530
1530
|
}
|
|
1531
1531
|
export class ScheduledActionNotFoundFault extends __BaseException {
|
|
1532
|
+
name = "ScheduledActionNotFoundFault";
|
|
1533
|
+
$fault = "client";
|
|
1532
1534
|
constructor(opts) {
|
|
1533
1535
|
super({
|
|
1534
1536
|
name: "ScheduledActionNotFoundFault",
|
|
1535
1537
|
$fault: "client",
|
|
1536
1538
|
...opts,
|
|
1537
1539
|
});
|
|
1538
|
-
this.name = "ScheduledActionNotFoundFault";
|
|
1539
|
-
this.$fault = "client";
|
|
1540
1540
|
Object.setPrototypeOf(this, ScheduledActionNotFoundFault.prototype);
|
|
1541
1541
|
}
|
|
1542
1542
|
}
|
|
1543
1543
|
export class InvalidSnapshotCopyGrantStateFault extends __BaseException {
|
|
1544
|
+
name = "InvalidSnapshotCopyGrantStateFault";
|
|
1545
|
+
$fault = "client";
|
|
1544
1546
|
constructor(opts) {
|
|
1545
1547
|
super({
|
|
1546
1548
|
name: "InvalidSnapshotCopyGrantStateFault",
|
|
1547
1549
|
$fault: "client",
|
|
1548
1550
|
...opts,
|
|
1549
1551
|
});
|
|
1550
|
-
this.name = "InvalidSnapshotCopyGrantStateFault";
|
|
1551
|
-
this.$fault = "client";
|
|
1552
1552
|
Object.setPrototypeOf(this, InvalidSnapshotCopyGrantStateFault.prototype);
|
|
1553
1553
|
}
|
|
1554
1554
|
}
|
|
1555
1555
|
export class SnapshotCopyGrantNotFoundFault extends __BaseException {
|
|
1556
|
+
name = "SnapshotCopyGrantNotFoundFault";
|
|
1557
|
+
$fault = "client";
|
|
1556
1558
|
constructor(opts) {
|
|
1557
1559
|
super({
|
|
1558
1560
|
name: "SnapshotCopyGrantNotFoundFault",
|
|
1559
1561
|
$fault: "client",
|
|
1560
1562
|
...opts,
|
|
1561
1563
|
});
|
|
1562
|
-
this.name = "SnapshotCopyGrantNotFoundFault";
|
|
1563
|
-
this.$fault = "client";
|
|
1564
1564
|
Object.setPrototypeOf(this, SnapshotCopyGrantNotFoundFault.prototype);
|
|
1565
1565
|
}
|
|
1566
1566
|
}
|
|
1567
1567
|
export class InvalidClusterSnapshotScheduleStateFault extends __BaseException {
|
|
1568
|
+
name = "InvalidClusterSnapshotScheduleStateFault";
|
|
1569
|
+
$fault = "client";
|
|
1568
1570
|
constructor(opts) {
|
|
1569
1571
|
super({
|
|
1570
1572
|
name: "InvalidClusterSnapshotScheduleStateFault",
|
|
1571
1573
|
$fault: "client",
|
|
1572
1574
|
...opts,
|
|
1573
1575
|
});
|
|
1574
|
-
this.name = "InvalidClusterSnapshotScheduleStateFault";
|
|
1575
|
-
this.$fault = "client";
|
|
1576
1576
|
Object.setPrototypeOf(this, InvalidClusterSnapshotScheduleStateFault.prototype);
|
|
1577
1577
|
}
|
|
1578
1578
|
}
|
|
1579
1579
|
export class UsageLimitNotFoundFault extends __BaseException {
|
|
1580
|
+
name = "UsageLimitNotFoundFault";
|
|
1581
|
+
$fault = "client";
|
|
1580
1582
|
constructor(opts) {
|
|
1581
1583
|
super({
|
|
1582
1584
|
name: "UsageLimitNotFoundFault",
|
|
1583
1585
|
$fault: "client",
|
|
1584
1586
|
...opts,
|
|
1585
1587
|
});
|
|
1586
|
-
this.name = "UsageLimitNotFoundFault";
|
|
1587
|
-
this.$fault = "client";
|
|
1588
1588
|
Object.setPrototypeOf(this, UsageLimitNotFoundFault.prototype);
|
|
1589
1589
|
}
|
|
1590
1590
|
}
|