@aws-sdk/client-docdb 3.986.0 → 3.988.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 +74 -2955
- package/dist-cjs/models/DocDBServiceException.js +12 -0
- package/dist-cjs/models/errors.js +759 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1901 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +360 -354
- package/dist-types/schemas/schemas_0.d.ts +66 -59
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -59
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,8 +15,11 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var middlewareSdkRds = require('@aws-sdk/middleware-sdk-rds');
|
|
19
20
|
var utilWaiter = require('@smithy/util-waiter');
|
|
21
|
+
var errors = require('./models/errors');
|
|
22
|
+
var DocDBServiceException = require('./models/DocDBServiceException');
|
|
20
23
|
|
|
21
24
|
const resolveClientEndpointParameters = (options) => {
|
|
22
25
|
return Object.assign(options, {
|
|
@@ -112,2590 +115,6 @@ class DocDBClient extends smithyClient.Client {
|
|
|
112
115
|
}
|
|
113
116
|
}
|
|
114
117
|
|
|
115
|
-
class DocDBServiceException extends smithyClient.ServiceException {
|
|
116
|
-
constructor(options) {
|
|
117
|
-
super(options);
|
|
118
|
-
Object.setPrototypeOf(this, DocDBServiceException.prototype);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
class SourceNotFoundFault extends DocDBServiceException {
|
|
123
|
-
name = "SourceNotFoundFault";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "SourceNotFoundFault",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, SourceNotFoundFault.prototype);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class SubscriptionNotFoundFault extends DocDBServiceException {
|
|
135
|
-
name = "SubscriptionNotFoundFault";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "SubscriptionNotFoundFault",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, SubscriptionNotFoundFault.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class DBClusterNotFoundFault extends DocDBServiceException {
|
|
147
|
-
name = "DBClusterNotFoundFault";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "DBClusterNotFoundFault",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, DBClusterNotFoundFault.prototype);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class DBInstanceNotFoundFault extends DocDBServiceException {
|
|
159
|
-
name = "DBInstanceNotFoundFault";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "DBInstanceNotFoundFault",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, DBInstanceNotFoundFault.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class DBSnapshotNotFoundFault extends DocDBServiceException {
|
|
171
|
-
name = "DBSnapshotNotFoundFault";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "DBSnapshotNotFoundFault",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, DBSnapshotNotFoundFault.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class InvalidDBClusterStateFault extends DocDBServiceException {
|
|
183
|
-
name = "InvalidDBClusterStateFault";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "InvalidDBClusterStateFault",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, InvalidDBClusterStateFault.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class InvalidDBInstanceStateFault extends DocDBServiceException {
|
|
195
|
-
name = "InvalidDBInstanceStateFault";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "InvalidDBInstanceStateFault",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
Object.setPrototypeOf(this, InvalidDBInstanceStateFault.prototype);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class ResourceNotFoundFault extends DocDBServiceException {
|
|
207
|
-
name = "ResourceNotFoundFault";
|
|
208
|
-
$fault = "client";
|
|
209
|
-
constructor(opts) {
|
|
210
|
-
super({
|
|
211
|
-
name: "ResourceNotFoundFault",
|
|
212
|
-
$fault: "client",
|
|
213
|
-
...opts,
|
|
214
|
-
});
|
|
215
|
-
Object.setPrototypeOf(this, ResourceNotFoundFault.prototype);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class DBParameterGroupAlreadyExistsFault extends DocDBServiceException {
|
|
219
|
-
name = "DBParameterGroupAlreadyExistsFault";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
constructor(opts) {
|
|
222
|
-
super({
|
|
223
|
-
name: "DBParameterGroupAlreadyExistsFault",
|
|
224
|
-
$fault: "client",
|
|
225
|
-
...opts,
|
|
226
|
-
});
|
|
227
|
-
Object.setPrototypeOf(this, DBParameterGroupAlreadyExistsFault.prototype);
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
class DBParameterGroupNotFoundFault extends DocDBServiceException {
|
|
231
|
-
name = "DBParameterGroupNotFoundFault";
|
|
232
|
-
$fault = "client";
|
|
233
|
-
constructor(opts) {
|
|
234
|
-
super({
|
|
235
|
-
name: "DBParameterGroupNotFoundFault",
|
|
236
|
-
$fault: "client",
|
|
237
|
-
...opts,
|
|
238
|
-
});
|
|
239
|
-
Object.setPrototypeOf(this, DBParameterGroupNotFoundFault.prototype);
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
class DBParameterGroupQuotaExceededFault extends DocDBServiceException {
|
|
243
|
-
name = "DBParameterGroupQuotaExceededFault";
|
|
244
|
-
$fault = "client";
|
|
245
|
-
constructor(opts) {
|
|
246
|
-
super({
|
|
247
|
-
name: "DBParameterGroupQuotaExceededFault",
|
|
248
|
-
$fault: "client",
|
|
249
|
-
...opts,
|
|
250
|
-
});
|
|
251
|
-
Object.setPrototypeOf(this, DBParameterGroupQuotaExceededFault.prototype);
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
class DBClusterSnapshotAlreadyExistsFault extends DocDBServiceException {
|
|
255
|
-
name = "DBClusterSnapshotAlreadyExistsFault";
|
|
256
|
-
$fault = "client";
|
|
257
|
-
constructor(opts) {
|
|
258
|
-
super({
|
|
259
|
-
name: "DBClusterSnapshotAlreadyExistsFault",
|
|
260
|
-
$fault: "client",
|
|
261
|
-
...opts,
|
|
262
|
-
});
|
|
263
|
-
Object.setPrototypeOf(this, DBClusterSnapshotAlreadyExistsFault.prototype);
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
class DBClusterSnapshotNotFoundFault extends DocDBServiceException {
|
|
267
|
-
name = "DBClusterSnapshotNotFoundFault";
|
|
268
|
-
$fault = "client";
|
|
269
|
-
constructor(opts) {
|
|
270
|
-
super({
|
|
271
|
-
name: "DBClusterSnapshotNotFoundFault",
|
|
272
|
-
$fault: "client",
|
|
273
|
-
...opts,
|
|
274
|
-
});
|
|
275
|
-
Object.setPrototypeOf(this, DBClusterSnapshotNotFoundFault.prototype);
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
class InvalidDBClusterSnapshotStateFault extends DocDBServiceException {
|
|
279
|
-
name = "InvalidDBClusterSnapshotStateFault";
|
|
280
|
-
$fault = "client";
|
|
281
|
-
constructor(opts) {
|
|
282
|
-
super({
|
|
283
|
-
name: "InvalidDBClusterSnapshotStateFault",
|
|
284
|
-
$fault: "client",
|
|
285
|
-
...opts,
|
|
286
|
-
});
|
|
287
|
-
Object.setPrototypeOf(this, InvalidDBClusterSnapshotStateFault.prototype);
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
class KMSKeyNotAccessibleFault extends DocDBServiceException {
|
|
291
|
-
name = "KMSKeyNotAccessibleFault";
|
|
292
|
-
$fault = "client";
|
|
293
|
-
constructor(opts) {
|
|
294
|
-
super({
|
|
295
|
-
name: "KMSKeyNotAccessibleFault",
|
|
296
|
-
$fault: "client",
|
|
297
|
-
...opts,
|
|
298
|
-
});
|
|
299
|
-
Object.setPrototypeOf(this, KMSKeyNotAccessibleFault.prototype);
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
class SnapshotQuotaExceededFault extends DocDBServiceException {
|
|
303
|
-
name = "SnapshotQuotaExceededFault";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
constructor(opts) {
|
|
306
|
-
super({
|
|
307
|
-
name: "SnapshotQuotaExceededFault",
|
|
308
|
-
$fault: "client",
|
|
309
|
-
...opts,
|
|
310
|
-
});
|
|
311
|
-
Object.setPrototypeOf(this, SnapshotQuotaExceededFault.prototype);
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
class DBClusterAlreadyExistsFault extends DocDBServiceException {
|
|
315
|
-
name = "DBClusterAlreadyExistsFault";
|
|
316
|
-
$fault = "client";
|
|
317
|
-
constructor(opts) {
|
|
318
|
-
super({
|
|
319
|
-
name: "DBClusterAlreadyExistsFault",
|
|
320
|
-
$fault: "client",
|
|
321
|
-
...opts,
|
|
322
|
-
});
|
|
323
|
-
Object.setPrototypeOf(this, DBClusterAlreadyExistsFault.prototype);
|
|
324
|
-
}
|
|
325
|
-
}
|
|
326
|
-
class DBClusterParameterGroupNotFoundFault extends DocDBServiceException {
|
|
327
|
-
name = "DBClusterParameterGroupNotFoundFault";
|
|
328
|
-
$fault = "client";
|
|
329
|
-
constructor(opts) {
|
|
330
|
-
super({
|
|
331
|
-
name: "DBClusterParameterGroupNotFoundFault",
|
|
332
|
-
$fault: "client",
|
|
333
|
-
...opts,
|
|
334
|
-
});
|
|
335
|
-
Object.setPrototypeOf(this, DBClusterParameterGroupNotFoundFault.prototype);
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
class DBClusterQuotaExceededFault extends DocDBServiceException {
|
|
339
|
-
name = "DBClusterQuotaExceededFault";
|
|
340
|
-
$fault = "client";
|
|
341
|
-
constructor(opts) {
|
|
342
|
-
super({
|
|
343
|
-
name: "DBClusterQuotaExceededFault",
|
|
344
|
-
$fault: "client",
|
|
345
|
-
...opts,
|
|
346
|
-
});
|
|
347
|
-
Object.setPrototypeOf(this, DBClusterQuotaExceededFault.prototype);
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
class DBSubnetGroupDoesNotCoverEnoughAZs extends DocDBServiceException {
|
|
351
|
-
name = "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
352
|
-
$fault = "client";
|
|
353
|
-
constructor(opts) {
|
|
354
|
-
super({
|
|
355
|
-
name: "DBSubnetGroupDoesNotCoverEnoughAZs",
|
|
356
|
-
$fault: "client",
|
|
357
|
-
...opts,
|
|
358
|
-
});
|
|
359
|
-
Object.setPrototypeOf(this, DBSubnetGroupDoesNotCoverEnoughAZs.prototype);
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
class DBSubnetGroupNotFoundFault extends DocDBServiceException {
|
|
363
|
-
name = "DBSubnetGroupNotFoundFault";
|
|
364
|
-
$fault = "client";
|
|
365
|
-
constructor(opts) {
|
|
366
|
-
super({
|
|
367
|
-
name: "DBSubnetGroupNotFoundFault",
|
|
368
|
-
$fault: "client",
|
|
369
|
-
...opts,
|
|
370
|
-
});
|
|
371
|
-
Object.setPrototypeOf(this, DBSubnetGroupNotFoundFault.prototype);
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
class GlobalClusterNotFoundFault extends DocDBServiceException {
|
|
375
|
-
name = "GlobalClusterNotFoundFault";
|
|
376
|
-
$fault = "client";
|
|
377
|
-
constructor(opts) {
|
|
378
|
-
super({
|
|
379
|
-
name: "GlobalClusterNotFoundFault",
|
|
380
|
-
$fault: "client",
|
|
381
|
-
...opts,
|
|
382
|
-
});
|
|
383
|
-
Object.setPrototypeOf(this, GlobalClusterNotFoundFault.prototype);
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
class InsufficientStorageClusterCapacityFault extends DocDBServiceException {
|
|
387
|
-
name = "InsufficientStorageClusterCapacityFault";
|
|
388
|
-
$fault = "client";
|
|
389
|
-
constructor(opts) {
|
|
390
|
-
super({
|
|
391
|
-
name: "InsufficientStorageClusterCapacityFault",
|
|
392
|
-
$fault: "client",
|
|
393
|
-
...opts,
|
|
394
|
-
});
|
|
395
|
-
Object.setPrototypeOf(this, InsufficientStorageClusterCapacityFault.prototype);
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
class InvalidDBSubnetGroupStateFault extends DocDBServiceException {
|
|
399
|
-
name = "InvalidDBSubnetGroupStateFault";
|
|
400
|
-
$fault = "client";
|
|
401
|
-
constructor(opts) {
|
|
402
|
-
super({
|
|
403
|
-
name: "InvalidDBSubnetGroupStateFault",
|
|
404
|
-
$fault: "client",
|
|
405
|
-
...opts,
|
|
406
|
-
});
|
|
407
|
-
Object.setPrototypeOf(this, InvalidDBSubnetGroupStateFault.prototype);
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
class InvalidGlobalClusterStateFault extends DocDBServiceException {
|
|
411
|
-
name = "InvalidGlobalClusterStateFault";
|
|
412
|
-
$fault = "client";
|
|
413
|
-
constructor(opts) {
|
|
414
|
-
super({
|
|
415
|
-
name: "InvalidGlobalClusterStateFault",
|
|
416
|
-
$fault: "client",
|
|
417
|
-
...opts,
|
|
418
|
-
});
|
|
419
|
-
Object.setPrototypeOf(this, InvalidGlobalClusterStateFault.prototype);
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
class InvalidSubnet extends DocDBServiceException {
|
|
423
|
-
name = "InvalidSubnet";
|
|
424
|
-
$fault = "client";
|
|
425
|
-
constructor(opts) {
|
|
426
|
-
super({
|
|
427
|
-
name: "InvalidSubnet",
|
|
428
|
-
$fault: "client",
|
|
429
|
-
...opts,
|
|
430
|
-
});
|
|
431
|
-
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
class InvalidVPCNetworkStateFault extends DocDBServiceException {
|
|
435
|
-
name = "InvalidVPCNetworkStateFault";
|
|
436
|
-
$fault = "client";
|
|
437
|
-
constructor(opts) {
|
|
438
|
-
super({
|
|
439
|
-
name: "InvalidVPCNetworkStateFault",
|
|
440
|
-
$fault: "client",
|
|
441
|
-
...opts,
|
|
442
|
-
});
|
|
443
|
-
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
class NetworkTypeNotSupported extends DocDBServiceException {
|
|
447
|
-
name = "NetworkTypeNotSupported";
|
|
448
|
-
$fault = "client";
|
|
449
|
-
constructor(opts) {
|
|
450
|
-
super({
|
|
451
|
-
name: "NetworkTypeNotSupported",
|
|
452
|
-
$fault: "client",
|
|
453
|
-
...opts,
|
|
454
|
-
});
|
|
455
|
-
Object.setPrototypeOf(this, NetworkTypeNotSupported.prototype);
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
class StorageQuotaExceededFault extends DocDBServiceException {
|
|
459
|
-
name = "StorageQuotaExceededFault";
|
|
460
|
-
$fault = "client";
|
|
461
|
-
constructor(opts) {
|
|
462
|
-
super({
|
|
463
|
-
name: "StorageQuotaExceededFault",
|
|
464
|
-
$fault: "client",
|
|
465
|
-
...opts,
|
|
466
|
-
});
|
|
467
|
-
Object.setPrototypeOf(this, StorageQuotaExceededFault.prototype);
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
class AuthorizationNotFoundFault extends DocDBServiceException {
|
|
471
|
-
name = "AuthorizationNotFoundFault";
|
|
472
|
-
$fault = "client";
|
|
473
|
-
constructor(opts) {
|
|
474
|
-
super({
|
|
475
|
-
name: "AuthorizationNotFoundFault",
|
|
476
|
-
$fault: "client",
|
|
477
|
-
...opts,
|
|
478
|
-
});
|
|
479
|
-
Object.setPrototypeOf(this, AuthorizationNotFoundFault.prototype);
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
class DBInstanceAlreadyExistsFault extends DocDBServiceException {
|
|
483
|
-
name = "DBInstanceAlreadyExistsFault";
|
|
484
|
-
$fault = "client";
|
|
485
|
-
constructor(opts) {
|
|
486
|
-
super({
|
|
487
|
-
name: "DBInstanceAlreadyExistsFault",
|
|
488
|
-
$fault: "client",
|
|
489
|
-
...opts,
|
|
490
|
-
});
|
|
491
|
-
Object.setPrototypeOf(this, DBInstanceAlreadyExistsFault.prototype);
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
class DBSecurityGroupNotFoundFault extends DocDBServiceException {
|
|
495
|
-
name = "DBSecurityGroupNotFoundFault";
|
|
496
|
-
$fault = "client";
|
|
497
|
-
constructor(opts) {
|
|
498
|
-
super({
|
|
499
|
-
name: "DBSecurityGroupNotFoundFault",
|
|
500
|
-
$fault: "client",
|
|
501
|
-
...opts,
|
|
502
|
-
});
|
|
503
|
-
Object.setPrototypeOf(this, DBSecurityGroupNotFoundFault.prototype);
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
class InstanceQuotaExceededFault extends DocDBServiceException {
|
|
507
|
-
name = "InstanceQuotaExceededFault";
|
|
508
|
-
$fault = "client";
|
|
509
|
-
constructor(opts) {
|
|
510
|
-
super({
|
|
511
|
-
name: "InstanceQuotaExceededFault",
|
|
512
|
-
$fault: "client",
|
|
513
|
-
...opts,
|
|
514
|
-
});
|
|
515
|
-
Object.setPrototypeOf(this, InstanceQuotaExceededFault.prototype);
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
class InsufficientDBInstanceCapacityFault extends DocDBServiceException {
|
|
519
|
-
name = "InsufficientDBInstanceCapacityFault";
|
|
520
|
-
$fault = "client";
|
|
521
|
-
constructor(opts) {
|
|
522
|
-
super({
|
|
523
|
-
name: "InsufficientDBInstanceCapacityFault",
|
|
524
|
-
$fault: "client",
|
|
525
|
-
...opts,
|
|
526
|
-
});
|
|
527
|
-
Object.setPrototypeOf(this, InsufficientDBInstanceCapacityFault.prototype);
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
class StorageTypeNotSupportedFault extends DocDBServiceException {
|
|
531
|
-
name = "StorageTypeNotSupportedFault";
|
|
532
|
-
$fault = "client";
|
|
533
|
-
constructor(opts) {
|
|
534
|
-
super({
|
|
535
|
-
name: "StorageTypeNotSupportedFault",
|
|
536
|
-
$fault: "client",
|
|
537
|
-
...opts,
|
|
538
|
-
});
|
|
539
|
-
Object.setPrototypeOf(this, StorageTypeNotSupportedFault.prototype);
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
|
-
class DBSubnetGroupAlreadyExistsFault extends DocDBServiceException {
|
|
543
|
-
name = "DBSubnetGroupAlreadyExistsFault";
|
|
544
|
-
$fault = "client";
|
|
545
|
-
constructor(opts) {
|
|
546
|
-
super({
|
|
547
|
-
name: "DBSubnetGroupAlreadyExistsFault",
|
|
548
|
-
$fault: "client",
|
|
549
|
-
...opts,
|
|
550
|
-
});
|
|
551
|
-
Object.setPrototypeOf(this, DBSubnetGroupAlreadyExistsFault.prototype);
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
class DBSubnetGroupQuotaExceededFault extends DocDBServiceException {
|
|
555
|
-
name = "DBSubnetGroupQuotaExceededFault";
|
|
556
|
-
$fault = "client";
|
|
557
|
-
constructor(opts) {
|
|
558
|
-
super({
|
|
559
|
-
name: "DBSubnetGroupQuotaExceededFault",
|
|
560
|
-
$fault: "client",
|
|
561
|
-
...opts,
|
|
562
|
-
});
|
|
563
|
-
Object.setPrototypeOf(this, DBSubnetGroupQuotaExceededFault.prototype);
|
|
564
|
-
}
|
|
565
|
-
}
|
|
566
|
-
class DBSubnetQuotaExceededFault extends DocDBServiceException {
|
|
567
|
-
name = "DBSubnetQuotaExceededFault";
|
|
568
|
-
$fault = "client";
|
|
569
|
-
constructor(opts) {
|
|
570
|
-
super({
|
|
571
|
-
name: "DBSubnetQuotaExceededFault",
|
|
572
|
-
$fault: "client",
|
|
573
|
-
...opts,
|
|
574
|
-
});
|
|
575
|
-
Object.setPrototypeOf(this, DBSubnetQuotaExceededFault.prototype);
|
|
576
|
-
}
|
|
577
|
-
}
|
|
578
|
-
class EventSubscriptionQuotaExceededFault extends DocDBServiceException {
|
|
579
|
-
name = "EventSubscriptionQuotaExceededFault";
|
|
580
|
-
$fault = "client";
|
|
581
|
-
constructor(opts) {
|
|
582
|
-
super({
|
|
583
|
-
name: "EventSubscriptionQuotaExceededFault",
|
|
584
|
-
$fault: "client",
|
|
585
|
-
...opts,
|
|
586
|
-
});
|
|
587
|
-
Object.setPrototypeOf(this, EventSubscriptionQuotaExceededFault.prototype);
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
class SNSInvalidTopicFault extends DocDBServiceException {
|
|
591
|
-
name = "SNSInvalidTopicFault";
|
|
592
|
-
$fault = "client";
|
|
593
|
-
constructor(opts) {
|
|
594
|
-
super({
|
|
595
|
-
name: "SNSInvalidTopicFault",
|
|
596
|
-
$fault: "client",
|
|
597
|
-
...opts,
|
|
598
|
-
});
|
|
599
|
-
Object.setPrototypeOf(this, SNSInvalidTopicFault.prototype);
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
class SNSNoAuthorizationFault extends DocDBServiceException {
|
|
603
|
-
name = "SNSNoAuthorizationFault";
|
|
604
|
-
$fault = "client";
|
|
605
|
-
constructor(opts) {
|
|
606
|
-
super({
|
|
607
|
-
name: "SNSNoAuthorizationFault",
|
|
608
|
-
$fault: "client",
|
|
609
|
-
...opts,
|
|
610
|
-
});
|
|
611
|
-
Object.setPrototypeOf(this, SNSNoAuthorizationFault.prototype);
|
|
612
|
-
}
|
|
613
|
-
}
|
|
614
|
-
class SNSTopicArnNotFoundFault extends DocDBServiceException {
|
|
615
|
-
name = "SNSTopicArnNotFoundFault";
|
|
616
|
-
$fault = "client";
|
|
617
|
-
constructor(opts) {
|
|
618
|
-
super({
|
|
619
|
-
name: "SNSTopicArnNotFoundFault",
|
|
620
|
-
$fault: "client",
|
|
621
|
-
...opts,
|
|
622
|
-
});
|
|
623
|
-
Object.setPrototypeOf(this, SNSTopicArnNotFoundFault.prototype);
|
|
624
|
-
}
|
|
625
|
-
}
|
|
626
|
-
class SubscriptionAlreadyExistFault extends DocDBServiceException {
|
|
627
|
-
name = "SubscriptionAlreadyExistFault";
|
|
628
|
-
$fault = "client";
|
|
629
|
-
constructor(opts) {
|
|
630
|
-
super({
|
|
631
|
-
name: "SubscriptionAlreadyExistFault",
|
|
632
|
-
$fault: "client",
|
|
633
|
-
...opts,
|
|
634
|
-
});
|
|
635
|
-
Object.setPrototypeOf(this, SubscriptionAlreadyExistFault.prototype);
|
|
636
|
-
}
|
|
637
|
-
}
|
|
638
|
-
class SubscriptionCategoryNotFoundFault extends DocDBServiceException {
|
|
639
|
-
name = "SubscriptionCategoryNotFoundFault";
|
|
640
|
-
$fault = "client";
|
|
641
|
-
constructor(opts) {
|
|
642
|
-
super({
|
|
643
|
-
name: "SubscriptionCategoryNotFoundFault",
|
|
644
|
-
$fault: "client",
|
|
645
|
-
...opts,
|
|
646
|
-
});
|
|
647
|
-
Object.setPrototypeOf(this, SubscriptionCategoryNotFoundFault.prototype);
|
|
648
|
-
}
|
|
649
|
-
}
|
|
650
|
-
class GlobalClusterAlreadyExistsFault extends DocDBServiceException {
|
|
651
|
-
name = "GlobalClusterAlreadyExistsFault";
|
|
652
|
-
$fault = "client";
|
|
653
|
-
constructor(opts) {
|
|
654
|
-
super({
|
|
655
|
-
name: "GlobalClusterAlreadyExistsFault",
|
|
656
|
-
$fault: "client",
|
|
657
|
-
...opts,
|
|
658
|
-
});
|
|
659
|
-
Object.setPrototypeOf(this, GlobalClusterAlreadyExistsFault.prototype);
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
class GlobalClusterQuotaExceededFault extends DocDBServiceException {
|
|
663
|
-
name = "GlobalClusterQuotaExceededFault";
|
|
664
|
-
$fault = "client";
|
|
665
|
-
constructor(opts) {
|
|
666
|
-
super({
|
|
667
|
-
name: "GlobalClusterQuotaExceededFault",
|
|
668
|
-
$fault: "client",
|
|
669
|
-
...opts,
|
|
670
|
-
});
|
|
671
|
-
Object.setPrototypeOf(this, GlobalClusterQuotaExceededFault.prototype);
|
|
672
|
-
}
|
|
673
|
-
}
|
|
674
|
-
class InvalidDBParameterGroupStateFault extends DocDBServiceException {
|
|
675
|
-
name = "InvalidDBParameterGroupStateFault";
|
|
676
|
-
$fault = "client";
|
|
677
|
-
constructor(opts) {
|
|
678
|
-
super({
|
|
679
|
-
name: "InvalidDBParameterGroupStateFault",
|
|
680
|
-
$fault: "client",
|
|
681
|
-
...opts,
|
|
682
|
-
});
|
|
683
|
-
Object.setPrototypeOf(this, InvalidDBParameterGroupStateFault.prototype);
|
|
684
|
-
}
|
|
685
|
-
}
|
|
686
|
-
class DBSnapshotAlreadyExistsFault extends DocDBServiceException {
|
|
687
|
-
name = "DBSnapshotAlreadyExistsFault";
|
|
688
|
-
$fault = "client";
|
|
689
|
-
constructor(opts) {
|
|
690
|
-
super({
|
|
691
|
-
name: "DBSnapshotAlreadyExistsFault",
|
|
692
|
-
$fault: "client",
|
|
693
|
-
...opts,
|
|
694
|
-
});
|
|
695
|
-
Object.setPrototypeOf(this, DBSnapshotAlreadyExistsFault.prototype);
|
|
696
|
-
}
|
|
697
|
-
}
|
|
698
|
-
class InvalidDBSubnetStateFault extends DocDBServiceException {
|
|
699
|
-
name = "InvalidDBSubnetStateFault";
|
|
700
|
-
$fault = "client";
|
|
701
|
-
constructor(opts) {
|
|
702
|
-
super({
|
|
703
|
-
name: "InvalidDBSubnetStateFault",
|
|
704
|
-
$fault: "client",
|
|
705
|
-
...opts,
|
|
706
|
-
});
|
|
707
|
-
Object.setPrototypeOf(this, InvalidDBSubnetStateFault.prototype);
|
|
708
|
-
}
|
|
709
|
-
}
|
|
710
|
-
class InvalidEventSubscriptionStateFault extends DocDBServiceException {
|
|
711
|
-
name = "InvalidEventSubscriptionStateFault";
|
|
712
|
-
$fault = "client";
|
|
713
|
-
constructor(opts) {
|
|
714
|
-
super({
|
|
715
|
-
name: "InvalidEventSubscriptionStateFault",
|
|
716
|
-
$fault: "client",
|
|
717
|
-
...opts,
|
|
718
|
-
});
|
|
719
|
-
Object.setPrototypeOf(this, InvalidEventSubscriptionStateFault.prototype);
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
class CertificateNotFoundFault extends DocDBServiceException {
|
|
723
|
-
name = "CertificateNotFoundFault";
|
|
724
|
-
$fault = "client";
|
|
725
|
-
constructor(opts) {
|
|
726
|
-
super({
|
|
727
|
-
name: "CertificateNotFoundFault",
|
|
728
|
-
$fault: "client",
|
|
729
|
-
...opts,
|
|
730
|
-
});
|
|
731
|
-
Object.setPrototypeOf(this, CertificateNotFoundFault.prototype);
|
|
732
|
-
}
|
|
733
|
-
}
|
|
734
|
-
class InvalidDBSecurityGroupStateFault extends DocDBServiceException {
|
|
735
|
-
name = "InvalidDBSecurityGroupStateFault";
|
|
736
|
-
$fault = "client";
|
|
737
|
-
constructor(opts) {
|
|
738
|
-
super({
|
|
739
|
-
name: "InvalidDBSecurityGroupStateFault",
|
|
740
|
-
$fault: "client",
|
|
741
|
-
...opts,
|
|
742
|
-
});
|
|
743
|
-
Object.setPrototypeOf(this, InvalidDBSecurityGroupStateFault.prototype);
|
|
744
|
-
}
|
|
745
|
-
}
|
|
746
|
-
class SharedSnapshotQuotaExceededFault extends DocDBServiceException {
|
|
747
|
-
name = "SharedSnapshotQuotaExceededFault";
|
|
748
|
-
$fault = "client";
|
|
749
|
-
constructor(opts) {
|
|
750
|
-
super({
|
|
751
|
-
name: "SharedSnapshotQuotaExceededFault",
|
|
752
|
-
$fault: "client",
|
|
753
|
-
...opts,
|
|
754
|
-
});
|
|
755
|
-
Object.setPrototypeOf(this, SharedSnapshotQuotaExceededFault.prototype);
|
|
756
|
-
}
|
|
757
|
-
}
|
|
758
|
-
class DBUpgradeDependencyFailureFault extends DocDBServiceException {
|
|
759
|
-
name = "DBUpgradeDependencyFailureFault";
|
|
760
|
-
$fault = "client";
|
|
761
|
-
constructor(opts) {
|
|
762
|
-
super({
|
|
763
|
-
name: "DBUpgradeDependencyFailureFault",
|
|
764
|
-
$fault: "client",
|
|
765
|
-
...opts,
|
|
766
|
-
});
|
|
767
|
-
Object.setPrototypeOf(this, DBUpgradeDependencyFailureFault.prototype);
|
|
768
|
-
}
|
|
769
|
-
}
|
|
770
|
-
class SubnetAlreadyInUse extends DocDBServiceException {
|
|
771
|
-
name = "SubnetAlreadyInUse";
|
|
772
|
-
$fault = "client";
|
|
773
|
-
constructor(opts) {
|
|
774
|
-
super({
|
|
775
|
-
name: "SubnetAlreadyInUse",
|
|
776
|
-
$fault: "client",
|
|
777
|
-
...opts,
|
|
778
|
-
});
|
|
779
|
-
Object.setPrototypeOf(this, SubnetAlreadyInUse.prototype);
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
class InsufficientDBClusterCapacityFault extends DocDBServiceException {
|
|
783
|
-
name = "InsufficientDBClusterCapacityFault";
|
|
784
|
-
$fault = "client";
|
|
785
|
-
constructor(opts) {
|
|
786
|
-
super({
|
|
787
|
-
name: "InsufficientDBClusterCapacityFault",
|
|
788
|
-
$fault: "client",
|
|
789
|
-
...opts,
|
|
790
|
-
});
|
|
791
|
-
Object.setPrototypeOf(this, InsufficientDBClusterCapacityFault.prototype);
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
class InvalidDBSnapshotStateFault extends DocDBServiceException {
|
|
795
|
-
name = "InvalidDBSnapshotStateFault";
|
|
796
|
-
$fault = "client";
|
|
797
|
-
constructor(opts) {
|
|
798
|
-
super({
|
|
799
|
-
name: "InvalidDBSnapshotStateFault",
|
|
800
|
-
$fault: "client",
|
|
801
|
-
...opts,
|
|
802
|
-
});
|
|
803
|
-
Object.setPrototypeOf(this, InvalidDBSnapshotStateFault.prototype);
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
class InvalidRestoreFault extends DocDBServiceException {
|
|
807
|
-
name = "InvalidRestoreFault";
|
|
808
|
-
$fault = "client";
|
|
809
|
-
constructor(opts) {
|
|
810
|
-
super({
|
|
811
|
-
name: "InvalidRestoreFault",
|
|
812
|
-
$fault: "client",
|
|
813
|
-
...opts,
|
|
814
|
-
});
|
|
815
|
-
Object.setPrototypeOf(this, InvalidRestoreFault.prototype);
|
|
816
|
-
}
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
const _A = "Address";
|
|
820
|
-
const _AA = "ApplyAction";
|
|
821
|
-
const _AAAD = "AutoAppliedAfterDate";
|
|
822
|
-
const _ADL = "AllowDataLoss";
|
|
823
|
-
const _AI = "ApplyImmediately";
|
|
824
|
-
const _AM = "ApplyMethod";
|
|
825
|
-
const _AMVU = "AutoMinorVersionUpgrade";
|
|
826
|
-
const _AMVUl = "AllowMajorVersionUpgrade";
|
|
827
|
-
const _AN = "AttributeName";
|
|
828
|
-
const _ANFF = "AuthorizationNotFoundFault";
|
|
829
|
-
const _APMA = "ApplyPendingMaintenanceAction";
|
|
830
|
-
const _APMAM = "ApplyPendingMaintenanceActionMessage";
|
|
831
|
-
const _APMAR = "ApplyPendingMaintenanceActionResult";
|
|
832
|
-
const _AR = "AssociatedRoles";
|
|
833
|
-
const _AS = "AllocatedStorage";
|
|
834
|
-
const _ASITS = "AddSourceIdentifierToSubscription";
|
|
835
|
-
const _ASITSM = "AddSourceIdentifierToSubscriptionMessage";
|
|
836
|
-
const _ASITSR = "AddSourceIdentifierToSubscriptionResult";
|
|
837
|
-
const _AT = "ApplyType";
|
|
838
|
-
const _ATTR = "AddTagsToResource";
|
|
839
|
-
const _ATTRM = "AddTagsToResourceMessage";
|
|
840
|
-
const _AU = "AutoUpgrade";
|
|
841
|
-
const _AV = "AttributeValues";
|
|
842
|
-
const _AVL = "AttributeValueList";
|
|
843
|
-
const _AVl = "AllowedValues";
|
|
844
|
-
const _AVt = "AttributeValue";
|
|
845
|
-
const _AZ = "AvailabilityZone";
|
|
846
|
-
const _AZL = "AvailabilityZoneList";
|
|
847
|
-
const _AZv = "AvailabilityZones";
|
|
848
|
-
const _Ac = "Action";
|
|
849
|
-
const _BRP = "BackupRetentionPeriod";
|
|
850
|
-
const _C = "Certificate";
|
|
851
|
-
const _CA = "CertificateArn";
|
|
852
|
-
const _CACI = "CACertificateIdentifier";
|
|
853
|
-
const _CAD = "CurrentApplyDate";
|
|
854
|
-
const _CAI = "CAIdentifier";
|
|
855
|
-
const _CAIu = "CustomerAwsId";
|
|
856
|
-
const _CCT = "ClusterCreateTime";
|
|
857
|
-
const _CD = "CertificateDetails";
|
|
858
|
-
const _CDBC = "CreateDBCluster";
|
|
859
|
-
const _CDBCM = "CreateDBClusterMessage";
|
|
860
|
-
const _CDBCPG = "CopyDBClusterParameterGroup";
|
|
861
|
-
const _CDBCPGM = "CopyDBClusterParameterGroupMessage";
|
|
862
|
-
const _CDBCPGMr = "CreateDBClusterParameterGroupMessage";
|
|
863
|
-
const _CDBCPGR = "CopyDBClusterParameterGroupResult";
|
|
864
|
-
const _CDBCPGRr = "CreateDBClusterParameterGroupResult";
|
|
865
|
-
const _CDBCPGr = "CreateDBClusterParameterGroup";
|
|
866
|
-
const _CDBCR = "CreateDBClusterResult";
|
|
867
|
-
const _CDBCS = "CopyDBClusterSnapshot";
|
|
868
|
-
const _CDBCSM = "CopyDBClusterSnapshotMessage";
|
|
869
|
-
const _CDBCSMr = "CreateDBClusterSnapshotMessage";
|
|
870
|
-
const _CDBCSR = "CopyDBClusterSnapshotResult";
|
|
871
|
-
const _CDBCSRr = "CreateDBClusterSnapshotResult";
|
|
872
|
-
const _CDBCSr = "CreateDBClusterSnapshot";
|
|
873
|
-
const _CDBI = "CreateDBInstance";
|
|
874
|
-
const _CDBIM = "CreateDBInstanceMessage";
|
|
875
|
-
const _CDBIR = "CreateDBInstanceResult";
|
|
876
|
-
const _CDBSG = "CreateDBSubnetGroup";
|
|
877
|
-
const _CDBSGM = "CreateDBSubnetGroupMessage";
|
|
878
|
-
const _CDBSGR = "CreateDBSubnetGroupResult";
|
|
879
|
-
const _CES = "CreateEventSubscription";
|
|
880
|
-
const _CESM = "CreateEventSubscriptionMessage";
|
|
881
|
-
const _CESR = "CreateEventSubscriptionResult";
|
|
882
|
-
const _CGC = "CreateGlobalCluster";
|
|
883
|
-
const _CGCM = "CreateGlobalClusterMessage";
|
|
884
|
-
const _CGCR = "CreateGlobalClusterResult";
|
|
885
|
-
const _CGI = "CloneGroupId";
|
|
886
|
-
const _CI = "CertificateIdentifier";
|
|
887
|
-
const _CL = "CertificateList";
|
|
888
|
-
const _CLEC = "CloudwatchLogsExportConfiguration";
|
|
889
|
-
const _CM = "CertificateMessage";
|
|
890
|
-
const _CMUS = "ClusterMasterUserSecret";
|
|
891
|
-
const _CNFF = "CertificateNotFoundFault";
|
|
892
|
-
const _CRR = "CertificateRotationRestart";
|
|
893
|
-
const _CSI = "CustSubscriptionId";
|
|
894
|
-
const _CT = "CertificateType";
|
|
895
|
-
const _CTTS = "CopyTagsToSnapshot";
|
|
896
|
-
const _CTo = "CopyTags";
|
|
897
|
-
const _Ce = "Certificates";
|
|
898
|
-
const _D = "Description";
|
|
899
|
-
const _DBC = "DBCluster";
|
|
900
|
-
const _DBCA = "DBClusterArn";
|
|
901
|
-
const _DBCAEF = "DBClusterAlreadyExistsFault";
|
|
902
|
-
const _DBCI = "DBClusterIdentifier";
|
|
903
|
-
const _DBCL = "DBClusterList";
|
|
904
|
-
const _DBCM = "DBClusterMembers";
|
|
905
|
-
const _DBCML = "DBClusterMemberList";
|
|
906
|
-
const _DBCMl = "DBClusterMember";
|
|
907
|
-
const _DBCMlu = "DBClusterMessage";
|
|
908
|
-
const _DBCNFF = "DBClusterNotFoundFault";
|
|
909
|
-
const _DBCPG = "DBClusterParameterGroup";
|
|
910
|
-
const _DBCPGA = "DBClusterParameterGroupArn";
|
|
911
|
-
const _DBCPGD = "DBClusterParameterGroupDetails";
|
|
912
|
-
const _DBCPGL = "DBClusterParameterGroupList";
|
|
913
|
-
const _DBCPGM = "DBClusterParameterGroupsMessage";
|
|
914
|
-
const _DBCPGN = "DBClusterParameterGroupName";
|
|
915
|
-
const _DBCPGNFF = "DBClusterParameterGroupNotFoundFault";
|
|
916
|
-
const _DBCPGNM = "DBClusterParameterGroupNameMessage";
|
|
917
|
-
const _DBCPGS = "DBClusterParameterGroupStatus";
|
|
918
|
-
const _DBCPGl = "DBClusterParameterGroups";
|
|
919
|
-
const _DBCQEF = "DBClusterQuotaExceededFault";
|
|
920
|
-
const _DBCR = "DBClusterRole";
|
|
921
|
-
const _DBCRl = "DBClusterRoles";
|
|
922
|
-
const _DBCS = "DBClusterSnapshot";
|
|
923
|
-
const _DBCSA = "DBClusterSnapshotArn";
|
|
924
|
-
const _DBCSAEF = "DBClusterSnapshotAlreadyExistsFault";
|
|
925
|
-
const _DBCSAL = "DBClusterSnapshotAttributeList";
|
|
926
|
-
const _DBCSAR = "DBClusterSnapshotAttributesResult";
|
|
927
|
-
const _DBCSAl = "DBClusterSnapshotAttribute";
|
|
928
|
-
const _DBCSAlu = "DBClusterSnapshotAttributes";
|
|
929
|
-
const _DBCSI = "DBClusterSnapshotIdentifier";
|
|
930
|
-
const _DBCSL = "DBClusterSnapshotList";
|
|
931
|
-
const _DBCSM = "DBClusterSnapshotMessage";
|
|
932
|
-
const _DBCSNFF = "DBClusterSnapshotNotFoundFault";
|
|
933
|
-
const _DBCSl = "DBClusterSnapshots";
|
|
934
|
-
const _DBCl = "DBClusters";
|
|
935
|
-
const _DBED = "DBEngineDescription";
|
|
936
|
-
const _DBEV = "DBEngineVersion";
|
|
937
|
-
const _DBEVD = "DBEngineVersionDescription";
|
|
938
|
-
const _DBEVL = "DBEngineVersionList";
|
|
939
|
-
const _DBEVM = "DBEngineVersionMessage";
|
|
940
|
-
const _DBEVn = "DBEngineVersions";
|
|
941
|
-
const _DBI = "DBInstance";
|
|
942
|
-
const _DBIA = "DBInstanceArn";
|
|
943
|
-
const _DBIAEF = "DBInstanceAlreadyExistsFault";
|
|
944
|
-
const _DBIC = "DBInstanceClass";
|
|
945
|
-
const _DBII = "DBInstanceIdentifier";
|
|
946
|
-
const _DBIL = "DBInstanceList";
|
|
947
|
-
const _DBIM = "DBInstanceMessage";
|
|
948
|
-
const _DBINFF = "DBInstanceNotFoundFault";
|
|
949
|
-
const _DBIS = "DBInstanceStatus";
|
|
950
|
-
const _DBISI = "DBInstanceStatusInfo";
|
|
951
|
-
const _DBISIL = "DBInstanceStatusInfoList";
|
|
952
|
-
const _DBIn = "DBInstances";
|
|
953
|
-
const _DBPGAEF = "DBParameterGroupAlreadyExistsFault";
|
|
954
|
-
const _DBPGF = "DBParameterGroupFamily";
|
|
955
|
-
const _DBPGNFF = "DBParameterGroupNotFoundFault";
|
|
956
|
-
const _DBPGQEF = "DBParameterGroupQuotaExceededFault";
|
|
957
|
-
const _DBSAEF = "DBSnapshotAlreadyExistsFault";
|
|
958
|
-
const _DBSG = "DBSubnetGroup";
|
|
959
|
-
const _DBSGA = "DBSubnetGroupArn";
|
|
960
|
-
const _DBSGAEF = "DBSubnetGroupAlreadyExistsFault";
|
|
961
|
-
const _DBSGD = "DBSubnetGroupDescription";
|
|
962
|
-
const _DBSGDNCEAZ = "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
963
|
-
const _DBSGM = "DBSubnetGroupMessage";
|
|
964
|
-
const _DBSGN = "DBSubnetGroupName";
|
|
965
|
-
const _DBSGNFF = "DBSecurityGroupNotFoundFault";
|
|
966
|
-
const _DBSGNFFu = "DBSubnetGroupNotFoundFault";
|
|
967
|
-
const _DBSGQEF = "DBSubnetGroupQuotaExceededFault";
|
|
968
|
-
const _DBSGu = "DBSubnetGroups";
|
|
969
|
-
const _DBSNFF = "DBSnapshotNotFoundFault";
|
|
970
|
-
const _DBSQEF = "DBSubnetQuotaExceededFault";
|
|
971
|
-
const _DBUDFF = "DBUpgradeDependencyFailureFault";
|
|
972
|
-
const _DC = "DescribeCertificates";
|
|
973
|
-
const _DCI = "DbClusterIdentifier";
|
|
974
|
-
const _DCM = "DescribeCertificatesMessage";
|
|
975
|
-
const _DCRI = "DbClusterResourceId";
|
|
976
|
-
const _DDBC = "DeleteDBCluster";
|
|
977
|
-
const _DDBCM = "DeleteDBClusterMessage";
|
|
978
|
-
const _DDBCMe = "DescribeDBClustersMessage";
|
|
979
|
-
const _DDBCP = "DescribeDBClusterParameters";
|
|
980
|
-
const _DDBCPG = "DeleteDBClusterParameterGroup";
|
|
981
|
-
const _DDBCPGM = "DeleteDBClusterParameterGroupMessage";
|
|
982
|
-
const _DDBCPGMe = "DescribeDBClusterParameterGroupsMessage";
|
|
983
|
-
const _DDBCPGe = "DescribeDBClusterParameterGroups";
|
|
984
|
-
const _DDBCPM = "DescribeDBClusterParametersMessage";
|
|
985
|
-
const _DDBCR = "DeleteDBClusterResult";
|
|
986
|
-
const _DDBCS = "DeleteDBClusterSnapshot";
|
|
987
|
-
const _DDBCSA = "DescribeDBClusterSnapshotAttributes";
|
|
988
|
-
const _DDBCSAM = "DescribeDBClusterSnapshotAttributesMessage";
|
|
989
|
-
const _DDBCSAR = "DescribeDBClusterSnapshotAttributesResult";
|
|
990
|
-
const _DDBCSM = "DeleteDBClusterSnapshotMessage";
|
|
991
|
-
const _DDBCSMe = "DescribeDBClusterSnapshotsMessage";
|
|
992
|
-
const _DDBCSR = "DeleteDBClusterSnapshotResult";
|
|
993
|
-
const _DDBCSe = "DescribeDBClusterSnapshots";
|
|
994
|
-
const _DDBCe = "DescribeDBClusters";
|
|
995
|
-
const _DDBEV = "DescribeDBEngineVersions";
|
|
996
|
-
const _DDBEVM = "DescribeDBEngineVersionsMessage";
|
|
997
|
-
const _DDBI = "DeleteDBInstance";
|
|
998
|
-
const _DDBIM = "DeleteDBInstanceMessage";
|
|
999
|
-
const _DDBIMe = "DescribeDBInstancesMessage";
|
|
1000
|
-
const _DDBIR = "DeleteDBInstanceResult";
|
|
1001
|
-
const _DDBIe = "DescribeDBInstances";
|
|
1002
|
-
const _DDBSG = "DeleteDBSubnetGroup";
|
|
1003
|
-
const _DDBSGM = "DeleteDBSubnetGroupMessage";
|
|
1004
|
-
const _DDBSGMe = "DescribeDBSubnetGroupsMessage";
|
|
1005
|
-
const _DDBSGe = "DescribeDBSubnetGroups";
|
|
1006
|
-
const _DE = "DescribeEvents";
|
|
1007
|
-
const _DEC = "DescribeEventCategories";
|
|
1008
|
-
const _DECM = "DescribeEventCategoriesMessage";
|
|
1009
|
-
const _DEDCP = "DescribeEngineDefaultClusterParameters";
|
|
1010
|
-
const _DEDCPM = "DescribeEngineDefaultClusterParametersMessage";
|
|
1011
|
-
const _DEDCPR = "DescribeEngineDefaultClusterParametersResult";
|
|
1012
|
-
const _DEM = "DescribeEventsMessage";
|
|
1013
|
-
const _DES = "DeleteEventSubscription";
|
|
1014
|
-
const _DESM = "DeleteEventSubscriptionMessage";
|
|
1015
|
-
const _DESMe = "DescribeEventSubscriptionsMessage";
|
|
1016
|
-
const _DESR = "DeleteEventSubscriptionResult";
|
|
1017
|
-
const _DESe = "DescribeEventSubscriptions";
|
|
1018
|
-
const _DGC = "DeleteGlobalCluster";
|
|
1019
|
-
const _DGCM = "DeleteGlobalClusterMessage";
|
|
1020
|
-
const _DGCMe = "DescribeGlobalClustersMessage";
|
|
1021
|
-
const _DGCR = "DeleteGlobalClusterResult";
|
|
1022
|
-
const _DGCe = "DescribeGlobalClusters";
|
|
1023
|
-
const _DLT = "DisableLogTypes";
|
|
1024
|
-
const _DN = "DatabaseName";
|
|
1025
|
-
const _DO = "DefaultOnly";
|
|
1026
|
-
const _DODBIO = "DescribeOrderableDBInstanceOptions";
|
|
1027
|
-
const _DODBIOM = "DescribeOrderableDBInstanceOptionsMessage";
|
|
1028
|
-
const _DP = "DeletionProtection";
|
|
1029
|
-
const _DPMA = "DescribePendingMaintenanceActions";
|
|
1030
|
-
const _DPMAM = "DescribePendingMaintenanceActionsMessage";
|
|
1031
|
-
const _DRI = "DbiResourceId";
|
|
1032
|
-
const _DT = "DataType";
|
|
1033
|
-
const _Da = "Date";
|
|
1034
|
-
const _Du = "Duration";
|
|
1035
|
-
const _E = "Engine";
|
|
1036
|
-
const _EC = "EventCategories";
|
|
1037
|
-
const _ECL = "EventCategoriesList";
|
|
1038
|
-
const _ECLE = "EnableCloudwatchLogsExports";
|
|
1039
|
-
const _ECLEn = "EnabledCloudwatchLogsExports";
|
|
1040
|
-
const _ECM = "EventCategoriesMap";
|
|
1041
|
-
const _ECML = "EventCategoriesMapList";
|
|
1042
|
-
const _ECMv = "EventCategoriesMessage";
|
|
1043
|
-
const _ECv = "EventCategory";
|
|
1044
|
-
const _ED = "EngineDefaults";
|
|
1045
|
-
const _EL = "EventList";
|
|
1046
|
-
const _ELT = "EnableLogTypes";
|
|
1047
|
-
const _ELTx = "ExportableLogTypes";
|
|
1048
|
-
const _EM = "EventsMessage";
|
|
1049
|
-
const _EPI = "EnablePerformanceInsights";
|
|
1050
|
-
const _ERT = "EarliestRestorableTime";
|
|
1051
|
-
const _ES = "EventSubscription";
|
|
1052
|
-
const _ESA = "EventSubscriptionArn";
|
|
1053
|
-
const _ESL = "EventSubscriptionsList";
|
|
1054
|
-
const _ESM = "EventSubscriptionsMessage";
|
|
1055
|
-
const _ESQEF = "EventSubscriptionQuotaExceededFault";
|
|
1056
|
-
const _ET = "EndTime";
|
|
1057
|
-
const _EV = "EngineVersion";
|
|
1058
|
-
const _En = "Enabled";
|
|
1059
|
-
const _End = "Endpoint";
|
|
1060
|
-
const _Ev = "Event";
|
|
1061
|
-
const _Eve = "Events";
|
|
1062
|
-
const _F = "Filters";
|
|
1063
|
-
const _FAD = "ForcedApplyDate";
|
|
1064
|
-
const _FDBC = "FailoverDBCluster";
|
|
1065
|
-
const _FDBCM = "FailoverDBClusterMessage";
|
|
1066
|
-
const _FDBCR = "FailoverDBClusterResult";
|
|
1067
|
-
const _FDBSI = "FinalDBSnapshotIdentifier";
|
|
1068
|
-
const _FDCA = "FromDbClusterArn";
|
|
1069
|
-
const _FF = "ForceFailover";
|
|
1070
|
-
const _FGC = "FailoverGlobalCluster";
|
|
1071
|
-
const _FGCM = "FailoverGlobalClusterMessage";
|
|
1072
|
-
const _FGCR = "FailoverGlobalClusterResult";
|
|
1073
|
-
const _FL = "FilterList";
|
|
1074
|
-
const _FS = "FailoverState";
|
|
1075
|
-
const _FVL = "FilterValueList";
|
|
1076
|
-
const _Fi = "Filter";
|
|
1077
|
-
const _GC = "GlobalCluster";
|
|
1078
|
-
const _GCA = "GlobalClusterArn";
|
|
1079
|
-
const _GCAEF = "GlobalClusterAlreadyExistsFault";
|
|
1080
|
-
const _GCI = "GlobalClusterIdentifier";
|
|
1081
|
-
const _GCL = "GlobalClusterList";
|
|
1082
|
-
const _GCM = "GlobalClusterMembers";
|
|
1083
|
-
const _GCML = "GlobalClusterMemberList";
|
|
1084
|
-
const _GCMl = "GlobalClusterMember";
|
|
1085
|
-
const _GCMlo = "GlobalClustersMessage";
|
|
1086
|
-
const _GCNFF = "GlobalClusterNotFoundFault";
|
|
1087
|
-
const _GCQEF = "GlobalClusterQuotaExceededFault";
|
|
1088
|
-
const _GCRI = "GlobalClusterResourceId";
|
|
1089
|
-
const _GCl = "GlobalClusters";
|
|
1090
|
-
const _HZI = "HostedZoneId";
|
|
1091
|
-
const _I = "Iops";
|
|
1092
|
-
const _ICT = "InstanceCreateTime";
|
|
1093
|
-
const _ICW = "IsClusterWriter";
|
|
1094
|
-
const _IDBCCF = "InsufficientDBClusterCapacityFault";
|
|
1095
|
-
const _IDBCSF = "InvalidDBClusterStateFault";
|
|
1096
|
-
const _IDBCSSF = "InvalidDBClusterSnapshotStateFault";
|
|
1097
|
-
const _IDBICF = "InsufficientDBInstanceCapacityFault";
|
|
1098
|
-
const _IDBISF = "InvalidDBInstanceStateFault";
|
|
1099
|
-
const _IDBPGSF = "InvalidDBParameterGroupStateFault";
|
|
1100
|
-
const _IDBSGSF = "InvalidDBSecurityGroupStateFault";
|
|
1101
|
-
const _IDBSGSFn = "InvalidDBSubnetGroupStateFault";
|
|
1102
|
-
const _IDBSSF = "InvalidDBSnapshotStateFault";
|
|
1103
|
-
const _IDBSSFn = "InvalidDBSubnetStateFault";
|
|
1104
|
-
const _IDLA = "IsDataLossAllowed";
|
|
1105
|
-
const _IESSF = "InvalidEventSubscriptionStateFault";
|
|
1106
|
-
const _IGCSF = "InvalidGlobalClusterStateFault";
|
|
1107
|
-
const _IM = "IsModifiable";
|
|
1108
|
-
const _IMVU = "IsMajorVersionUpgrade";
|
|
1109
|
-
const _IOONAMT = "IOOptimizedNextAllowedModificationTime";
|
|
1110
|
-
const _IP = "IncludePublic";
|
|
1111
|
-
const _IQEF = "InstanceQuotaExceededFault";
|
|
1112
|
-
const _IRF = "InvalidRestoreFault";
|
|
1113
|
-
const _IS = "IncludeShared";
|
|
1114
|
-
const _ISCCF = "InsufficientStorageClusterCapacityFault";
|
|
1115
|
-
const _ISn = "InvalidSubnet";
|
|
1116
|
-
const _IVPCNSF = "InvalidVPCNetworkStateFault";
|
|
1117
|
-
const _IW = "IsWriter";
|
|
1118
|
-
const _K = "Key";
|
|
1119
|
-
const _KKI = "KmsKeyId";
|
|
1120
|
-
const _KMSKNAF = "KMSKeyNotAccessibleFault";
|
|
1121
|
-
const _LM = "LicenseModel";
|
|
1122
|
-
const _LRT = "LatestRestorableTime";
|
|
1123
|
-
const _LSCS = "ListSupportedCharacterSets";
|
|
1124
|
-
const _LST = "ListSupportedTimezones";
|
|
1125
|
-
const _LTFR = "ListTagsForResource";
|
|
1126
|
-
const _LTFRM = "ListTagsForResourceMessage";
|
|
1127
|
-
const _LTTD = "LogTypesToDisable";
|
|
1128
|
-
const _LTTE = "LogTypesToEnable";
|
|
1129
|
-
const _M = "Marker";
|
|
1130
|
-
const _MAZ = "MultiAZ";
|
|
1131
|
-
const _MC = "MinCapacity";
|
|
1132
|
-
const _MCa = "MaxCapacity";
|
|
1133
|
-
const _MDBC = "ModifyDBCluster";
|
|
1134
|
-
const _MDBCM = "ModifyDBClusterMessage";
|
|
1135
|
-
const _MDBCPG = "ModifyDBClusterParameterGroup";
|
|
1136
|
-
const _MDBCPGM = "ModifyDBClusterParameterGroupMessage";
|
|
1137
|
-
const _MDBCR = "ModifyDBClusterResult";
|
|
1138
|
-
const _MDBCSA = "ModifyDBClusterSnapshotAttribute";
|
|
1139
|
-
const _MDBCSAM = "ModifyDBClusterSnapshotAttributeMessage";
|
|
1140
|
-
const _MDBCSAR = "ModifyDBClusterSnapshotAttributeResult";
|
|
1141
|
-
const _MDBI = "ModifyDBInstance";
|
|
1142
|
-
const _MDBIM = "ModifyDBInstanceMessage";
|
|
1143
|
-
const _MDBIR = "ModifyDBInstanceResult";
|
|
1144
|
-
const _MDBSG = "ModifyDBSubnetGroup";
|
|
1145
|
-
const _MDBSGM = "ModifyDBSubnetGroupMessage";
|
|
1146
|
-
const _MDBSGR = "ModifyDBSubnetGroupResult";
|
|
1147
|
-
const _MES = "ModifyEventSubscription";
|
|
1148
|
-
const _MESM = "ModifyEventSubscriptionMessage";
|
|
1149
|
-
const _MESR = "ModifyEventSubscriptionResult";
|
|
1150
|
-
const _MEV = "MinimumEngineVersion";
|
|
1151
|
-
const _MGC = "ModifyGlobalCluster";
|
|
1152
|
-
const _MGCM = "ModifyGlobalClusterMessage";
|
|
1153
|
-
const _MGCR = "ModifyGlobalClusterResult";
|
|
1154
|
-
const _MMUP = "ManageMasterUserPassword";
|
|
1155
|
-
const _MR = "MaxRecords";
|
|
1156
|
-
const _MU = "MasterUsername";
|
|
1157
|
-
const _MUP = "MasterUserPassword";
|
|
1158
|
-
const _MUS = "MasterUserSecret";
|
|
1159
|
-
const _MUSKKI = "MasterUserSecretKmsKeyId";
|
|
1160
|
-
const _Me = "Message";
|
|
1161
|
-
const _N = "Name";
|
|
1162
|
-
const _NDBCI = "NewDBClusterIdentifier";
|
|
1163
|
-
const _NDBII = "NewDBInstanceIdentifier";
|
|
1164
|
-
const _NGCI = "NewGlobalClusterIdentifier";
|
|
1165
|
-
const _NT = "NetworkType";
|
|
1166
|
-
const _NTNS = "NetworkTypeNotSupported";
|
|
1167
|
-
const _No = "Normal";
|
|
1168
|
-
const _ODBIO = "OrderableDBInstanceOption";
|
|
1169
|
-
const _ODBIOL = "OrderableDBInstanceOptionsList";
|
|
1170
|
-
const _ODBIOM = "OrderableDBInstanceOptionsMessage";
|
|
1171
|
-
const _ODBIOr = "OrderableDBInstanceOptions";
|
|
1172
|
-
const _OIS = "OptInStatus";
|
|
1173
|
-
const _OIT = "OptInType";
|
|
1174
|
-
const _P = "Port";
|
|
1175
|
-
const _PA = "PubliclyAccessible";
|
|
1176
|
-
const _PBW = "PreferredBackupWindow";
|
|
1177
|
-
const _PCLE = "PendingCloudwatchLogsExports";
|
|
1178
|
-
const _PIE = "PerformanceInsightsEnabled";
|
|
1179
|
-
const _PIKMSKI = "PerformanceInsightsKMSKeyId";
|
|
1180
|
-
const _PL = "ParametersList";
|
|
1181
|
-
const _PMA = "PendingMaintenanceAction";
|
|
1182
|
-
const _PMAD = "PendingMaintenanceActionDetails";
|
|
1183
|
-
const _PMAM = "PendingMaintenanceActionsMessage";
|
|
1184
|
-
const _PMAe = "PendingMaintenanceActions";
|
|
1185
|
-
const _PMV = "PendingModifiedValues";
|
|
1186
|
-
const _PMW = "PreferredMaintenanceWindow";
|
|
1187
|
-
const _PN = "ParameterName";
|
|
1188
|
-
const _PP = "PercentProgress";
|
|
1189
|
-
const _PSU = "PreSignedUrl";
|
|
1190
|
-
const _PT = "PromotionTier";
|
|
1191
|
-
const _PV = "ParameterValue";
|
|
1192
|
-
const _Pa = "Parameters";
|
|
1193
|
-
const _Par = "Parameter";
|
|
1194
|
-
const _R = "Readers";
|
|
1195
|
-
const _RA = "RoleArn";
|
|
1196
|
-
const _RAP = "ResetAllParameters";
|
|
1197
|
-
const _RDBCFS = "RestoreDBClusterFromSnapshot";
|
|
1198
|
-
const _RDBCFSM = "RestoreDBClusterFromSnapshotMessage";
|
|
1199
|
-
const _RDBCFSR = "RestoreDBClusterFromSnapshotResult";
|
|
1200
|
-
const _RDBCPG = "ResetDBClusterParameterGroup";
|
|
1201
|
-
const _RDBCPGM = "ResetDBClusterParameterGroupMessage";
|
|
1202
|
-
const _RDBCTPIT = "RestoreDBClusterToPointInTime";
|
|
1203
|
-
const _RDBCTPITM = "RestoreDBClusterToPointInTimeMessage";
|
|
1204
|
-
const _RDBCTPITR = "RestoreDBClusterToPointInTimeResult";
|
|
1205
|
-
const _RDBI = "RebootDBInstance";
|
|
1206
|
-
const _RDBIM = "RebootDBInstanceMessage";
|
|
1207
|
-
const _RDBIR = "RebootDBInstanceResult";
|
|
1208
|
-
const _RE = "ReaderEndpoint";
|
|
1209
|
-
const _RFGC = "RemoveFromGlobalCluster";
|
|
1210
|
-
const _RFGCM = "RemoveFromGlobalClusterMessage";
|
|
1211
|
-
const _RFGCR = "RemoveFromGlobalClusterResult";
|
|
1212
|
-
const _RI = "ResourceIdentifier";
|
|
1213
|
-
const _RMUP = "RotateMasterUserPassword";
|
|
1214
|
-
const _RN = "ResourceName";
|
|
1215
|
-
const _RNFF = "ResourceNotFoundFault";
|
|
1216
|
-
const _RPMA = "ResourcePendingMaintenanceActions";
|
|
1217
|
-
const _RRI = "ReadReplicaIdentifiers";
|
|
1218
|
-
const _RRIL = "ReadReplicaIdentifierList";
|
|
1219
|
-
const _RRIe = "ReadReplicaIdentifier";
|
|
1220
|
-
const _RSI = "ReplicationSourceIdentifier";
|
|
1221
|
-
const _RSIFS = "RemoveSourceIdentifierFromSubscription";
|
|
1222
|
-
const _RSIFSM = "RemoveSourceIdentifierFromSubscriptionMessage";
|
|
1223
|
-
const _RSIFSR = "RemoveSourceIdentifierFromSubscriptionResult";
|
|
1224
|
-
const _RT = "RestoreType";
|
|
1225
|
-
const _RTFR = "RemoveTagsFromResource";
|
|
1226
|
-
const _RTFRM = "RemoveTagsFromResourceMessage";
|
|
1227
|
-
const _RTT = "RestoreToTime";
|
|
1228
|
-
const _S = "Status";
|
|
1229
|
-
const _SA = "SecretArn";
|
|
1230
|
-
const _SAEF = "SubscriptionAlreadyExistFault";
|
|
1231
|
-
const _SAIU = "SubnetAlreadyInUse";
|
|
1232
|
-
const _SAZ = "SubnetAvailabilityZone";
|
|
1233
|
-
const _SAo = "SourceArn";
|
|
1234
|
-
const _SCACI = "SupportedCACertificateIdentifiers";
|
|
1235
|
-
const _SCNFF = "SubscriptionCategoryNotFoundFault";
|
|
1236
|
-
const _SCRWR = "SupportsCertificateRotationWithoutRestart";
|
|
1237
|
-
const _SCT = "SnapshotCreateTime";
|
|
1238
|
-
const _SCTu = "SubscriptionCreationTime";
|
|
1239
|
-
const _SDBC = "StartDBCluster";
|
|
1240
|
-
const _SDBCI = "SourceDBClusterIdentifier";
|
|
1241
|
-
const _SDBCM = "StartDBClusterMessage";
|
|
1242
|
-
const _SDBCMt = "StopDBClusterMessage";
|
|
1243
|
-
const _SDBCPGI = "SourceDBClusterParameterGroupIdentifier";
|
|
1244
|
-
const _SDBCR = "StartDBClusterResult";
|
|
1245
|
-
const _SDBCRt = "StopDBClusterResult";
|
|
1246
|
-
const _SDBCSA = "SourceDBClusterSnapshotArn";
|
|
1247
|
-
const _SDBCSI = "SourceDBClusterSnapshotIdentifier";
|
|
1248
|
-
const _SDBCt = "StopDBCluster";
|
|
1249
|
-
const _SE = "StorageEncrypted";
|
|
1250
|
-
const _SFS = "SkipFinalSnapshot";
|
|
1251
|
-
const _SGC = "SwitchoverGlobalCluster";
|
|
1252
|
-
const _SGCM = "SwitchoverGlobalClusterMessage";
|
|
1253
|
-
const _SGCR = "SwitchoverGlobalClusterResult";
|
|
1254
|
-
const _SGS = "SubnetGroupStatus";
|
|
1255
|
-
const _SI = "SourceIdentifier";
|
|
1256
|
-
const _SIL = "SourceIdsList";
|
|
1257
|
-
const _SILu = "SubnetIdentifierList";
|
|
1258
|
-
const _SIn = "SnapshotIdentifier";
|
|
1259
|
-
const _SIo = "SourceIds";
|
|
1260
|
-
const _SIou = "SourceId";
|
|
1261
|
-
const _SIt = "StatusInfos";
|
|
1262
|
-
const _SIu = "SubnetIds";
|
|
1263
|
-
const _SIub = "SubnetIdentifier";
|
|
1264
|
-
const _SL = "SubnetList";
|
|
1265
|
-
const _SLETCL = "SupportsLogExportsToCloudwatchLogs";
|
|
1266
|
-
const _SN = "SubscriptionName";
|
|
1267
|
-
const _SNFF = "SourceNotFoundFault";
|
|
1268
|
-
const _SNFFu = "SubscriptionNotFoundFault";
|
|
1269
|
-
const _SNSITF = "SNSInvalidTopicFault";
|
|
1270
|
-
const _SNSNAF = "SNSNoAuthorizationFault";
|
|
1271
|
-
const _SNSTANFF = "SNSTopicArnNotFoundFault";
|
|
1272
|
-
const _SNT = "SupportedNetworkTypes";
|
|
1273
|
-
const _SQEF = "SnapshotQuotaExceededFault";
|
|
1274
|
-
const _SQEFt = "StorageQuotaExceededFault";
|
|
1275
|
-
const _SS = "SecretStatus";
|
|
1276
|
-
const _SSQEF = "SharedSnapshotQuotaExceededFault";
|
|
1277
|
-
const _SSu = "SubnetStatus";
|
|
1278
|
-
const _SSy = "SynchronizationStatus";
|
|
1279
|
-
const _ST = "StorageType";
|
|
1280
|
-
const _STA = "SnsTopicArn";
|
|
1281
|
-
const _STNSF = "StorageTypeNotSupportedFault";
|
|
1282
|
-
const _STn = "SnapshotType";
|
|
1283
|
-
const _STo = "SourceType";
|
|
1284
|
-
const _STt = "StatusType";
|
|
1285
|
-
const _STta = "StartTime";
|
|
1286
|
-
const _SVFS = "ServerlessV2FeaturesSupport";
|
|
1287
|
-
const _SVSC = "ServerlessV2ScalingConfiguration";
|
|
1288
|
-
const _SVSCI = "ServerlessV2ScalingConfigurationInfo";
|
|
1289
|
-
const _So = "Source";
|
|
1290
|
-
const _Su = "Subnets";
|
|
1291
|
-
const _Sub = "Subnet";
|
|
1292
|
-
const _Sw = "Switchover";
|
|
1293
|
-
const _T = "Tags";
|
|
1294
|
-
const _TDBCPGD = "TargetDBClusterParameterGroupDescription";
|
|
1295
|
-
const _TDBCPGI = "TargetDBClusterParameterGroupIdentifier";
|
|
1296
|
-
const _TDBCSI = "TargetDBClusterSnapshotIdentifier";
|
|
1297
|
-
const _TDBII = "TargetDBInstanceIdentifier";
|
|
1298
|
-
const _TDCA = "ToDbClusterArn";
|
|
1299
|
-
const _TDCI = "TargetDbClusterIdentifier";
|
|
1300
|
-
const _TK = "TagKeys";
|
|
1301
|
-
const _TL = "TagList";
|
|
1302
|
-
const _TLM = "TagListMessage";
|
|
1303
|
-
const _Ta = "Tag";
|
|
1304
|
-
const _Th = "Thumbprint";
|
|
1305
|
-
const _ULRT = "UseLatestRestorableTime";
|
|
1306
|
-
const _UT = "UpgradeTarget";
|
|
1307
|
-
const _V = "Vpc";
|
|
1308
|
-
const _VF = "ValidFrom";
|
|
1309
|
-
const _VI = "VpcId";
|
|
1310
|
-
const _VSG = "VpcSecurityGroups";
|
|
1311
|
-
const _VSGI = "VpcSecurityGroupIds";
|
|
1312
|
-
const _VSGIL = "VpcSecurityGroupIdList";
|
|
1313
|
-
const _VSGIp = "VpcSecurityGroupId";
|
|
1314
|
-
const _VSGM = "VpcSecurityGroupMembership";
|
|
1315
|
-
const _VSGML = "VpcSecurityGroupMembershipList";
|
|
1316
|
-
const _VT = "ValidTill";
|
|
1317
|
-
const _VTA = "ValuesToAdd";
|
|
1318
|
-
const _VTR = "ValuesToRemove";
|
|
1319
|
-
const _VUT = "ValidUpgradeTarget";
|
|
1320
|
-
const _VUTL = "ValidUpgradeTargetList";
|
|
1321
|
-
const _Va = "Values";
|
|
1322
|
-
const _Val = "Value";
|
|
1323
|
-
const _aQE = "awsQueryError";
|
|
1324
|
-
const _c = "client";
|
|
1325
|
-
const _e = "error";
|
|
1326
|
-
const _hE = "httpError";
|
|
1327
|
-
const _m = "message";
|
|
1328
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.docdb";
|
|
1329
|
-
const _xN = "xmlName";
|
|
1330
|
-
const n0 = "com.amazonaws.docdb";
|
|
1331
|
-
var AddSourceIdentifierToSubscriptionMessage$ = [3, n0, _ASITSM,
|
|
1332
|
-
0,
|
|
1333
|
-
[_SN, _SI],
|
|
1334
|
-
[0, 0], 2
|
|
1335
|
-
];
|
|
1336
|
-
var AddSourceIdentifierToSubscriptionResult$ = [3, n0, _ASITSR,
|
|
1337
|
-
0,
|
|
1338
|
-
[_ES],
|
|
1339
|
-
[[() => EventSubscription$, 0]]
|
|
1340
|
-
];
|
|
1341
|
-
var AddTagsToResourceMessage$ = [3, n0, _ATTRM,
|
|
1342
|
-
0,
|
|
1343
|
-
[_RN, _T],
|
|
1344
|
-
[0, [() => TagList, 0]], 2
|
|
1345
|
-
];
|
|
1346
|
-
var ApplyPendingMaintenanceActionMessage$ = [3, n0, _APMAM,
|
|
1347
|
-
0,
|
|
1348
|
-
[_RI, _AA, _OIT],
|
|
1349
|
-
[0, 0, 0], 3
|
|
1350
|
-
];
|
|
1351
|
-
var ApplyPendingMaintenanceActionResult$ = [3, n0, _APMAR,
|
|
1352
|
-
0,
|
|
1353
|
-
[_RPMA],
|
|
1354
|
-
[[() => ResourcePendingMaintenanceActions$, 0]]
|
|
1355
|
-
];
|
|
1356
|
-
var AuthorizationNotFoundFault$ = [-3, n0, _ANFF,
|
|
1357
|
-
{ [_aQE]: [`AuthorizationNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1358
|
-
[_m],
|
|
1359
|
-
[0]
|
|
1360
|
-
];
|
|
1361
|
-
schema.TypeRegistry.for(n0).registerError(AuthorizationNotFoundFault$, AuthorizationNotFoundFault);
|
|
1362
|
-
var AvailabilityZone$ = [3, n0, _AZ,
|
|
1363
|
-
0,
|
|
1364
|
-
[_N],
|
|
1365
|
-
[0]
|
|
1366
|
-
];
|
|
1367
|
-
var Certificate$ = [3, n0, _C,
|
|
1368
|
-
0,
|
|
1369
|
-
[_CI, _CT, _Th, _VF, _VT, _CA],
|
|
1370
|
-
[0, 0, 0, 4, 4, 0]
|
|
1371
|
-
];
|
|
1372
|
-
var CertificateDetails$ = [3, n0, _CD,
|
|
1373
|
-
0,
|
|
1374
|
-
[_CAI, _VT],
|
|
1375
|
-
[0, 4]
|
|
1376
|
-
];
|
|
1377
|
-
var CertificateMessage$ = [3, n0, _CM,
|
|
1378
|
-
0,
|
|
1379
|
-
[_Ce, _M],
|
|
1380
|
-
[[() => CertificateList, 0], 0]
|
|
1381
|
-
];
|
|
1382
|
-
var CertificateNotFoundFault$ = [-3, n0, _CNFF,
|
|
1383
|
-
{ [_aQE]: [`CertificateNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1384
|
-
[_m],
|
|
1385
|
-
[0]
|
|
1386
|
-
];
|
|
1387
|
-
schema.TypeRegistry.for(n0).registerError(CertificateNotFoundFault$, CertificateNotFoundFault);
|
|
1388
|
-
var CloudwatchLogsExportConfiguration$ = [3, n0, _CLEC,
|
|
1389
|
-
0,
|
|
1390
|
-
[_ELT, _DLT],
|
|
1391
|
-
[64 | 0, 64 | 0]
|
|
1392
|
-
];
|
|
1393
|
-
var ClusterMasterUserSecret$ = [3, n0, _CMUS,
|
|
1394
|
-
0,
|
|
1395
|
-
[_SA, _SS, _KKI],
|
|
1396
|
-
[0, 0, 0]
|
|
1397
|
-
];
|
|
1398
|
-
var CopyDBClusterParameterGroupMessage$ = [3, n0, _CDBCPGM,
|
|
1399
|
-
0,
|
|
1400
|
-
[_SDBCPGI, _TDBCPGI, _TDBCPGD, _T],
|
|
1401
|
-
[0, 0, 0, [() => TagList, 0]], 3
|
|
1402
|
-
];
|
|
1403
|
-
var CopyDBClusterParameterGroupResult$ = [3, n0, _CDBCPGR,
|
|
1404
|
-
0,
|
|
1405
|
-
[_DBCPG],
|
|
1406
|
-
[() => DBClusterParameterGroup$]
|
|
1407
|
-
];
|
|
1408
|
-
var CopyDBClusterSnapshotMessage$ = [3, n0, _CDBCSM,
|
|
1409
|
-
0,
|
|
1410
|
-
[_SDBCSI, _TDBCSI, _KKI, _PSU, _CTo, _T],
|
|
1411
|
-
[0, 0, 0, 0, 2, [() => TagList, 0]], 2
|
|
1412
|
-
];
|
|
1413
|
-
var CopyDBClusterSnapshotResult$ = [3, n0, _CDBCSR,
|
|
1414
|
-
0,
|
|
1415
|
-
[_DBCS],
|
|
1416
|
-
[[() => DBClusterSnapshot$, 0]]
|
|
1417
|
-
];
|
|
1418
|
-
var CreateDBClusterMessage$ = [3, n0, _CDBCM,
|
|
1419
|
-
0,
|
|
1420
|
-
[_DBCI, _E, _AZv, _BRP, _DBCPGN, _VSGI, _DBSGN, _EV, _P, _MU, _MUP, _PBW, _PMW, _T, _SE, _KKI, _PSU, _ECLE, _DP, _GCI, _ST, _SVSC, _MMUP, _MUSKKI, _NT],
|
|
1421
|
-
[0, 0, [() => AvailabilityZones, 0], 1, 0, [() => VpcSecurityGroupIdList, 0], 0, 0, 1, 0, 0, 0, 0, [() => TagList, 0], 2, 0, 0, 64 | 0, 2, 0, 0, () => ServerlessV2ScalingConfiguration$, 2, 0, 0], 2
|
|
1422
|
-
];
|
|
1423
|
-
var CreateDBClusterParameterGroupMessage$ = [3, n0, _CDBCPGMr,
|
|
1424
|
-
0,
|
|
1425
|
-
[_DBCPGN, _DBPGF, _D, _T],
|
|
1426
|
-
[0, 0, 0, [() => TagList, 0]], 3
|
|
1427
|
-
];
|
|
1428
|
-
var CreateDBClusterParameterGroupResult$ = [3, n0, _CDBCPGRr,
|
|
1429
|
-
0,
|
|
1430
|
-
[_DBCPG],
|
|
1431
|
-
[() => DBClusterParameterGroup$]
|
|
1432
|
-
];
|
|
1433
|
-
var CreateDBClusterResult$ = [3, n0, _CDBCR,
|
|
1434
|
-
0,
|
|
1435
|
-
[_DBC],
|
|
1436
|
-
[[() => DBCluster$, 0]]
|
|
1437
|
-
];
|
|
1438
|
-
var CreateDBClusterSnapshotMessage$ = [3, n0, _CDBCSMr,
|
|
1439
|
-
0,
|
|
1440
|
-
[_DBCSI, _DBCI, _T],
|
|
1441
|
-
[0, 0, [() => TagList, 0]], 2
|
|
1442
|
-
];
|
|
1443
|
-
var CreateDBClusterSnapshotResult$ = [3, n0, _CDBCSRr,
|
|
1444
|
-
0,
|
|
1445
|
-
[_DBCS],
|
|
1446
|
-
[[() => DBClusterSnapshot$, 0]]
|
|
1447
|
-
];
|
|
1448
|
-
var CreateDBInstanceMessage$ = [3, n0, _CDBIM,
|
|
1449
|
-
0,
|
|
1450
|
-
[_DBII, _DBIC, _E, _DBCI, _AZ, _PMW, _AMVU, _T, _CTTS, _PT, _EPI, _PIKMSKI, _CACI],
|
|
1451
|
-
[0, 0, 0, 0, 0, 0, 2, [() => TagList, 0], 2, 1, 2, 0, 0], 4
|
|
1452
|
-
];
|
|
1453
|
-
var CreateDBInstanceResult$ = [3, n0, _CDBIR,
|
|
1454
|
-
0,
|
|
1455
|
-
[_DBI],
|
|
1456
|
-
[[() => DBInstance$, 0]]
|
|
1457
|
-
];
|
|
1458
|
-
var CreateDBSubnetGroupMessage$ = [3, n0, _CDBSGM,
|
|
1459
|
-
0,
|
|
1460
|
-
[_DBSGN, _DBSGD, _SIu, _T],
|
|
1461
|
-
[0, 0, [() => SubnetIdentifierList, 0], [() => TagList, 0]], 3
|
|
1462
|
-
];
|
|
1463
|
-
var CreateDBSubnetGroupResult$ = [3, n0, _CDBSGR,
|
|
1464
|
-
0,
|
|
1465
|
-
[_DBSG],
|
|
1466
|
-
[[() => DBSubnetGroup$, 0]]
|
|
1467
|
-
];
|
|
1468
|
-
var CreateEventSubscriptionMessage$ = [3, n0, _CESM,
|
|
1469
|
-
0,
|
|
1470
|
-
[_SN, _STA, _STo, _EC, _SIo, _En, _T],
|
|
1471
|
-
[0, 0, 0, [() => EventCategoriesList, 0], [() => SourceIdsList, 0], 2, [() => TagList, 0]], 2
|
|
1472
|
-
];
|
|
1473
|
-
var CreateEventSubscriptionResult$ = [3, n0, _CESR,
|
|
1474
|
-
0,
|
|
1475
|
-
[_ES],
|
|
1476
|
-
[[() => EventSubscription$, 0]]
|
|
1477
|
-
];
|
|
1478
|
-
var CreateGlobalClusterMessage$ = [3, n0, _CGCM,
|
|
1479
|
-
0,
|
|
1480
|
-
[_GCI, _SDBCI, _E, _EV, _DP, _DN, _SE],
|
|
1481
|
-
[0, 0, 0, 0, 2, 0, 2], 1
|
|
1482
|
-
];
|
|
1483
|
-
var CreateGlobalClusterResult$ = [3, n0, _CGCR,
|
|
1484
|
-
0,
|
|
1485
|
-
[_GC],
|
|
1486
|
-
[[() => GlobalCluster$, 0]]
|
|
1487
|
-
];
|
|
1488
|
-
var DBCluster$ = [3, n0, _DBC,
|
|
1489
|
-
0,
|
|
1490
|
-
[_AZv, _BRP, _DBCI, _DBCPG, _DBSG, _S, _PP, _ERT, _End, _RE, _MAZ, _E, _EV, _LRT, _P, _MU, _PBW, _PMW, _RSI, _RRI, _DBCM, _VSG, _HZI, _SE, _KKI, _DCRI, _DBCA, _AR, _CGI, _CCT, _ECLEn, _DP, _IOONAMT, _ST, _SVSC, _MUS, _NT],
|
|
1491
|
-
[[() => AvailabilityZones, 0], 1, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 4, 1, 0, 0, 0, 0, [() => ReadReplicaIdentifierList, 0], [() => DBClusterMemberList, 0], [() => VpcSecurityGroupMembershipList, 0], 0, 2, 0, 0, 0, [() => DBClusterRoles, 0], 0, 4, 64 | 0, 2, 4, 0, () => ServerlessV2ScalingConfigurationInfo$, () => ClusterMasterUserSecret$, 0]
|
|
1492
|
-
];
|
|
1493
|
-
var DBClusterAlreadyExistsFault$ = [-3, n0, _DBCAEF,
|
|
1494
|
-
{ [_aQE]: [`DBClusterAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1495
|
-
[_m],
|
|
1496
|
-
[0]
|
|
1497
|
-
];
|
|
1498
|
-
schema.TypeRegistry.for(n0).registerError(DBClusterAlreadyExistsFault$, DBClusterAlreadyExistsFault);
|
|
1499
|
-
var DBClusterMember$ = [3, n0, _DBCMl,
|
|
1500
|
-
0,
|
|
1501
|
-
[_DBII, _ICW, _DBCPGS, _PT],
|
|
1502
|
-
[0, 2, 0, 1]
|
|
1503
|
-
];
|
|
1504
|
-
var DBClusterMessage$ = [3, n0, _DBCMlu,
|
|
1505
|
-
0,
|
|
1506
|
-
[_M, _DBCl],
|
|
1507
|
-
[0, [() => DBClusterList, 0]]
|
|
1508
|
-
];
|
|
1509
|
-
var DBClusterNotFoundFault$ = [-3, n0, _DBCNFF,
|
|
1510
|
-
{ [_aQE]: [`DBClusterNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
1511
|
-
[_m],
|
|
1512
|
-
[0]
|
|
1513
|
-
];
|
|
1514
|
-
schema.TypeRegistry.for(n0).registerError(DBClusterNotFoundFault$, DBClusterNotFoundFault);
|
|
1515
|
-
var DBClusterParameterGroup$ = [3, n0, _DBCPG,
|
|
1516
|
-
0,
|
|
1517
|
-
[_DBCPGN, _DBPGF, _D, _DBCPGA],
|
|
1518
|
-
[0, 0, 0, 0]
|
|
1519
|
-
];
|
|
1520
|
-
var DBClusterParameterGroupDetails$ = [3, n0, _DBCPGD,
|
|
1521
|
-
0,
|
|
1522
|
-
[_Pa, _M],
|
|
1523
|
-
[[() => ParametersList, 0], 0]
|
|
1524
|
-
];
|
|
1525
|
-
var DBClusterParameterGroupNameMessage$ = [3, n0, _DBCPGNM,
|
|
1526
|
-
0,
|
|
1527
|
-
[_DBCPGN],
|
|
1528
|
-
[0]
|
|
1529
|
-
];
|
|
1530
|
-
var DBClusterParameterGroupNotFoundFault$ = [-3, n0, _DBCPGNFF,
|
|
1531
|
-
{ [_aQE]: [`DBClusterParameterGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1532
|
-
[_m],
|
|
1533
|
-
[0]
|
|
1534
|
-
];
|
|
1535
|
-
schema.TypeRegistry.for(n0).registerError(DBClusterParameterGroupNotFoundFault$, DBClusterParameterGroupNotFoundFault);
|
|
1536
|
-
var DBClusterParameterGroupsMessage$ = [3, n0, _DBCPGM,
|
|
1537
|
-
0,
|
|
1538
|
-
[_M, _DBCPGl],
|
|
1539
|
-
[0, [() => DBClusterParameterGroupList, 0]]
|
|
1540
|
-
];
|
|
1541
|
-
var DBClusterQuotaExceededFault$ = [-3, n0, _DBCQEF,
|
|
1542
|
-
{ [_aQE]: [`DBClusterQuotaExceededFault`, 403], [_e]: _c, [_hE]: 403 },
|
|
1543
|
-
[_m],
|
|
1544
|
-
[0]
|
|
1545
|
-
];
|
|
1546
|
-
schema.TypeRegistry.for(n0).registerError(DBClusterQuotaExceededFault$, DBClusterQuotaExceededFault);
|
|
1547
|
-
var DBClusterRole$ = [3, n0, _DBCR,
|
|
1548
|
-
0,
|
|
1549
|
-
[_RA, _S],
|
|
1550
|
-
[0, 0]
|
|
1551
|
-
];
|
|
1552
|
-
var DBClusterSnapshot$ = [3, n0, _DBCS,
|
|
1553
|
-
0,
|
|
1554
|
-
[_AZv, _DBCSI, _DBCI, _SCT, _E, _S, _P, _VI, _CCT, _MU, _EV, _STn, _PP, _SE, _KKI, _DBCSA, _SDBCSA, _ST],
|
|
1555
|
-
[[() => AvailabilityZones, 0], 0, 0, 4, 0, 0, 1, 0, 4, 0, 0, 0, 1, 2, 0, 0, 0, 0]
|
|
1556
|
-
];
|
|
1557
|
-
var DBClusterSnapshotAlreadyExistsFault$ = [-3, n0, _DBCSAEF,
|
|
1558
|
-
{ [_aQE]: [`DBClusterSnapshotAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1559
|
-
[_m],
|
|
1560
|
-
[0]
|
|
1561
|
-
];
|
|
1562
|
-
schema.TypeRegistry.for(n0).registerError(DBClusterSnapshotAlreadyExistsFault$, DBClusterSnapshotAlreadyExistsFault);
|
|
1563
|
-
var DBClusterSnapshotAttribute$ = [3, n0, _DBCSAl,
|
|
1564
|
-
0,
|
|
1565
|
-
[_AN, _AV],
|
|
1566
|
-
[0, [() => AttributeValueList, 0]]
|
|
1567
|
-
];
|
|
1568
|
-
var DBClusterSnapshotAttributesResult$ = [3, n0, _DBCSAR,
|
|
1569
|
-
0,
|
|
1570
|
-
[_DBCSI, _DBCSAlu],
|
|
1571
|
-
[0, [() => DBClusterSnapshotAttributeList, 0]]
|
|
1572
|
-
];
|
|
1573
|
-
var DBClusterSnapshotMessage$ = [3, n0, _DBCSM,
|
|
1574
|
-
0,
|
|
1575
|
-
[_M, _DBCSl],
|
|
1576
|
-
[0, [() => DBClusterSnapshotList, 0]]
|
|
1577
|
-
];
|
|
1578
|
-
var DBClusterSnapshotNotFoundFault$ = [-3, n0, _DBCSNFF,
|
|
1579
|
-
{ [_aQE]: [`DBClusterSnapshotNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
1580
|
-
[_m],
|
|
1581
|
-
[0]
|
|
1582
|
-
];
|
|
1583
|
-
schema.TypeRegistry.for(n0).registerError(DBClusterSnapshotNotFoundFault$, DBClusterSnapshotNotFoundFault);
|
|
1584
|
-
var DBEngineVersion$ = [3, n0, _DBEV,
|
|
1585
|
-
0,
|
|
1586
|
-
[_E, _EV, _DBPGF, _DBED, _DBEVD, _VUT, _ELTx, _SLETCL, _SCACI, _SCRWR, _SVFS],
|
|
1587
|
-
[0, 0, 0, 0, 0, [() => ValidUpgradeTargetList, 0], 64 | 0, 2, 64 | 0, 2, () => ServerlessV2FeaturesSupport$]
|
|
1588
|
-
];
|
|
1589
|
-
var DBEngineVersionMessage$ = [3, n0, _DBEVM,
|
|
1590
|
-
0,
|
|
1591
|
-
[_M, _DBEVn],
|
|
1592
|
-
[0, [() => DBEngineVersionList, 0]]
|
|
1593
|
-
];
|
|
1594
|
-
var DBInstance$ = [3, n0, _DBI,
|
|
1595
|
-
0,
|
|
1596
|
-
[_DBII, _DBIC, _E, _DBIS, _End, _ICT, _PBW, _BRP, _VSG, _AZ, _DBSG, _PMW, _PMV, _LRT, _EV, _AMVU, _PA, _SIt, _DBCI, _SE, _KKI, _DRI, _CACI, _CTTS, _PT, _DBIA, _ECLEn, _CD, _PIE, _PIKMSKI],
|
|
1597
|
-
[0, 0, 0, 0, () => Endpoint$, 4, 0, 1, [() => VpcSecurityGroupMembershipList, 0], 0, [() => DBSubnetGroup$, 0], 0, () => PendingModifiedValues$, 4, 0, 2, 2, [() => DBInstanceStatusInfoList, 0], 0, 2, 0, 0, 0, 2, 1, 0, 64 | 0, () => CertificateDetails$, 2, 0]
|
|
1598
|
-
];
|
|
1599
|
-
var DBInstanceAlreadyExistsFault$ = [-3, n0, _DBIAEF,
|
|
1600
|
-
{ [_aQE]: [`DBInstanceAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1601
|
-
[_m],
|
|
1602
|
-
[0]
|
|
1603
|
-
];
|
|
1604
|
-
schema.TypeRegistry.for(n0).registerError(DBInstanceAlreadyExistsFault$, DBInstanceAlreadyExistsFault);
|
|
1605
|
-
var DBInstanceMessage$ = [3, n0, _DBIM,
|
|
1606
|
-
0,
|
|
1607
|
-
[_M, _DBIn],
|
|
1608
|
-
[0, [() => DBInstanceList, 0]]
|
|
1609
|
-
];
|
|
1610
|
-
var DBInstanceNotFoundFault$ = [-3, n0, _DBINFF,
|
|
1611
|
-
{ [_aQE]: [`DBInstanceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1612
|
-
[_m],
|
|
1613
|
-
[0]
|
|
1614
|
-
];
|
|
1615
|
-
schema.TypeRegistry.for(n0).registerError(DBInstanceNotFoundFault$, DBInstanceNotFoundFault);
|
|
1616
|
-
var DBInstanceStatusInfo$ = [3, n0, _DBISI,
|
|
1617
|
-
0,
|
|
1618
|
-
[_STt, _No, _S, _Me],
|
|
1619
|
-
[0, 2, 0, 0]
|
|
1620
|
-
];
|
|
1621
|
-
var DBParameterGroupAlreadyExistsFault$ = [-3, n0, _DBPGAEF,
|
|
1622
|
-
{ [_aQE]: [`DBParameterGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1623
|
-
[_m],
|
|
1624
|
-
[0]
|
|
1625
|
-
];
|
|
1626
|
-
schema.TypeRegistry.for(n0).registerError(DBParameterGroupAlreadyExistsFault$, DBParameterGroupAlreadyExistsFault);
|
|
1627
|
-
var DBParameterGroupNotFoundFault$ = [-3, n0, _DBPGNFF,
|
|
1628
|
-
{ [_aQE]: [`DBParameterGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1629
|
-
[_m],
|
|
1630
|
-
[0]
|
|
1631
|
-
];
|
|
1632
|
-
schema.TypeRegistry.for(n0).registerError(DBParameterGroupNotFoundFault$, DBParameterGroupNotFoundFault);
|
|
1633
|
-
var DBParameterGroupQuotaExceededFault$ = [-3, n0, _DBPGQEF,
|
|
1634
|
-
{ [_aQE]: [`DBParameterGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1635
|
-
[_m],
|
|
1636
|
-
[0]
|
|
1637
|
-
];
|
|
1638
|
-
schema.TypeRegistry.for(n0).registerError(DBParameterGroupQuotaExceededFault$, DBParameterGroupQuotaExceededFault);
|
|
1639
|
-
var DBSecurityGroupNotFoundFault$ = [-3, n0, _DBSGNFF,
|
|
1640
|
-
{ [_aQE]: [`DBSecurityGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1641
|
-
[_m],
|
|
1642
|
-
[0]
|
|
1643
|
-
];
|
|
1644
|
-
schema.TypeRegistry.for(n0).registerError(DBSecurityGroupNotFoundFault$, DBSecurityGroupNotFoundFault);
|
|
1645
|
-
var DBSnapshotAlreadyExistsFault$ = [-3, n0, _DBSAEF,
|
|
1646
|
-
{ [_aQE]: [`DBSnapshotAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1647
|
-
[_m],
|
|
1648
|
-
[0]
|
|
1649
|
-
];
|
|
1650
|
-
schema.TypeRegistry.for(n0).registerError(DBSnapshotAlreadyExistsFault$, DBSnapshotAlreadyExistsFault);
|
|
1651
|
-
var DBSnapshotNotFoundFault$ = [-3, n0, _DBSNFF,
|
|
1652
|
-
{ [_aQE]: [`DBSnapshotNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1653
|
-
[_m],
|
|
1654
|
-
[0]
|
|
1655
|
-
];
|
|
1656
|
-
schema.TypeRegistry.for(n0).registerError(DBSnapshotNotFoundFault$, DBSnapshotNotFoundFault);
|
|
1657
|
-
var DBSubnetGroup$ = [3, n0, _DBSG,
|
|
1658
|
-
0,
|
|
1659
|
-
[_DBSGN, _DBSGD, _VI, _SGS, _Su, _DBSGA, _SNT],
|
|
1660
|
-
[0, 0, 0, 0, [() => SubnetList, 0], 0, 64 | 0]
|
|
1661
|
-
];
|
|
1662
|
-
var DBSubnetGroupAlreadyExistsFault$ = [-3, n0, _DBSGAEF,
|
|
1663
|
-
{ [_aQE]: [`DBSubnetGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1664
|
-
[_m],
|
|
1665
|
-
[0]
|
|
1666
|
-
];
|
|
1667
|
-
schema.TypeRegistry.for(n0).registerError(DBSubnetGroupAlreadyExistsFault$, DBSubnetGroupAlreadyExistsFault);
|
|
1668
|
-
var DBSubnetGroupDoesNotCoverEnoughAZs$ = [-3, n0, _DBSGDNCEAZ,
|
|
1669
|
-
{ [_aQE]: [`DBSubnetGroupDoesNotCoverEnoughAZs`, 400], [_e]: _c, [_hE]: 400 },
|
|
1670
|
-
[_m],
|
|
1671
|
-
[0]
|
|
1672
|
-
];
|
|
1673
|
-
schema.TypeRegistry.for(n0).registerError(DBSubnetGroupDoesNotCoverEnoughAZs$, DBSubnetGroupDoesNotCoverEnoughAZs);
|
|
1674
|
-
var DBSubnetGroupMessage$ = [3, n0, _DBSGM,
|
|
1675
|
-
0,
|
|
1676
|
-
[_M, _DBSGu],
|
|
1677
|
-
[0, [() => DBSubnetGroups, 0]]
|
|
1678
|
-
];
|
|
1679
|
-
var DBSubnetGroupNotFoundFault$ = [-3, n0, _DBSGNFFu,
|
|
1680
|
-
{ [_aQE]: [`DBSubnetGroupNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
1681
|
-
[_m],
|
|
1682
|
-
[0]
|
|
1683
|
-
];
|
|
1684
|
-
schema.TypeRegistry.for(n0).registerError(DBSubnetGroupNotFoundFault$, DBSubnetGroupNotFoundFault);
|
|
1685
|
-
var DBSubnetGroupQuotaExceededFault$ = [-3, n0, _DBSGQEF,
|
|
1686
|
-
{ [_aQE]: [`DBSubnetGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1687
|
-
[_m],
|
|
1688
|
-
[0]
|
|
1689
|
-
];
|
|
1690
|
-
schema.TypeRegistry.for(n0).registerError(DBSubnetGroupQuotaExceededFault$, DBSubnetGroupQuotaExceededFault);
|
|
1691
|
-
var DBSubnetQuotaExceededFault$ = [-3, n0, _DBSQEF,
|
|
1692
|
-
{ [_aQE]: [`DBSubnetQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1693
|
-
[_m],
|
|
1694
|
-
[0]
|
|
1695
|
-
];
|
|
1696
|
-
schema.TypeRegistry.for(n0).registerError(DBSubnetQuotaExceededFault$, DBSubnetQuotaExceededFault);
|
|
1697
|
-
var DBUpgradeDependencyFailureFault$ = [-3, n0, _DBUDFF,
|
|
1698
|
-
{ [_aQE]: [`DBUpgradeDependencyFailure`, 400], [_e]: _c, [_hE]: 400 },
|
|
1699
|
-
[_m],
|
|
1700
|
-
[0]
|
|
1701
|
-
];
|
|
1702
|
-
schema.TypeRegistry.for(n0).registerError(DBUpgradeDependencyFailureFault$, DBUpgradeDependencyFailureFault);
|
|
1703
|
-
var DeleteDBClusterMessage$ = [3, n0, _DDBCM,
|
|
1704
|
-
0,
|
|
1705
|
-
[_DBCI, _SFS, _FDBSI],
|
|
1706
|
-
[0, 2, 0], 1
|
|
1707
|
-
];
|
|
1708
|
-
var DeleteDBClusterParameterGroupMessage$ = [3, n0, _DDBCPGM,
|
|
1709
|
-
0,
|
|
1710
|
-
[_DBCPGN],
|
|
1711
|
-
[0], 1
|
|
1712
|
-
];
|
|
1713
|
-
var DeleteDBClusterResult$ = [3, n0, _DDBCR,
|
|
1714
|
-
0,
|
|
1715
|
-
[_DBC],
|
|
1716
|
-
[[() => DBCluster$, 0]]
|
|
1717
|
-
];
|
|
1718
|
-
var DeleteDBClusterSnapshotMessage$ = [3, n0, _DDBCSM,
|
|
1719
|
-
0,
|
|
1720
|
-
[_DBCSI],
|
|
1721
|
-
[0], 1
|
|
1722
|
-
];
|
|
1723
|
-
var DeleteDBClusterSnapshotResult$ = [3, n0, _DDBCSR,
|
|
1724
|
-
0,
|
|
1725
|
-
[_DBCS],
|
|
1726
|
-
[[() => DBClusterSnapshot$, 0]]
|
|
1727
|
-
];
|
|
1728
|
-
var DeleteDBInstanceMessage$ = [3, n0, _DDBIM,
|
|
1729
|
-
0,
|
|
1730
|
-
[_DBII],
|
|
1731
|
-
[0], 1
|
|
1732
|
-
];
|
|
1733
|
-
var DeleteDBInstanceResult$ = [3, n0, _DDBIR,
|
|
1734
|
-
0,
|
|
1735
|
-
[_DBI],
|
|
1736
|
-
[[() => DBInstance$, 0]]
|
|
1737
|
-
];
|
|
1738
|
-
var DeleteDBSubnetGroupMessage$ = [3, n0, _DDBSGM,
|
|
1739
|
-
0,
|
|
1740
|
-
[_DBSGN],
|
|
1741
|
-
[0], 1
|
|
1742
|
-
];
|
|
1743
|
-
var DeleteEventSubscriptionMessage$ = [3, n0, _DESM,
|
|
1744
|
-
0,
|
|
1745
|
-
[_SN],
|
|
1746
|
-
[0], 1
|
|
1747
|
-
];
|
|
1748
|
-
var DeleteEventSubscriptionResult$ = [3, n0, _DESR,
|
|
1749
|
-
0,
|
|
1750
|
-
[_ES],
|
|
1751
|
-
[[() => EventSubscription$, 0]]
|
|
1752
|
-
];
|
|
1753
|
-
var DeleteGlobalClusterMessage$ = [3, n0, _DGCM,
|
|
1754
|
-
0,
|
|
1755
|
-
[_GCI],
|
|
1756
|
-
[0], 1
|
|
1757
|
-
];
|
|
1758
|
-
var DeleteGlobalClusterResult$ = [3, n0, _DGCR,
|
|
1759
|
-
0,
|
|
1760
|
-
[_GC],
|
|
1761
|
-
[[() => GlobalCluster$, 0]]
|
|
1762
|
-
];
|
|
1763
|
-
var DescribeCertificatesMessage$ = [3, n0, _DCM,
|
|
1764
|
-
0,
|
|
1765
|
-
[_CI, _F, _MR, _M],
|
|
1766
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1767
|
-
];
|
|
1768
|
-
var DescribeDBClusterParameterGroupsMessage$ = [3, n0, _DDBCPGMe,
|
|
1769
|
-
0,
|
|
1770
|
-
[_DBCPGN, _F, _MR, _M],
|
|
1771
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1772
|
-
];
|
|
1773
|
-
var DescribeDBClusterParametersMessage$ = [3, n0, _DDBCPM,
|
|
1774
|
-
0,
|
|
1775
|
-
[_DBCPGN, _So, _F, _MR, _M],
|
|
1776
|
-
[0, 0, [() => FilterList, 0], 1, 0], 1
|
|
1777
|
-
];
|
|
1778
|
-
var DescribeDBClustersMessage$ = [3, n0, _DDBCMe,
|
|
1779
|
-
0,
|
|
1780
|
-
[_DBCI, _F, _MR, _M],
|
|
1781
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1782
|
-
];
|
|
1783
|
-
var DescribeDBClusterSnapshotAttributesMessage$ = [3, n0, _DDBCSAM,
|
|
1784
|
-
0,
|
|
1785
|
-
[_DBCSI],
|
|
1786
|
-
[0], 1
|
|
1787
|
-
];
|
|
1788
|
-
var DescribeDBClusterSnapshotAttributesResult$ = [3, n0, _DDBCSAR,
|
|
1789
|
-
0,
|
|
1790
|
-
[_DBCSAR],
|
|
1791
|
-
[[() => DBClusterSnapshotAttributesResult$, 0]]
|
|
1792
|
-
];
|
|
1793
|
-
var DescribeDBClusterSnapshotsMessage$ = [3, n0, _DDBCSMe,
|
|
1794
|
-
0,
|
|
1795
|
-
[_DBCI, _DBCSI, _STn, _F, _MR, _M, _IS, _IP],
|
|
1796
|
-
[0, 0, 0, [() => FilterList, 0], 1, 0, 2, 2]
|
|
1797
|
-
];
|
|
1798
|
-
var DescribeDBEngineVersionsMessage$ = [3, n0, _DDBEVM,
|
|
1799
|
-
0,
|
|
1800
|
-
[_E, _EV, _DBPGF, _F, _MR, _M, _DO, _LSCS, _LST],
|
|
1801
|
-
[0, 0, 0, [() => FilterList, 0], 1, 0, 2, 2, 2]
|
|
1802
|
-
];
|
|
1803
|
-
var DescribeDBInstancesMessage$ = [3, n0, _DDBIMe,
|
|
1804
|
-
0,
|
|
1805
|
-
[_DBII, _F, _MR, _M],
|
|
1806
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1807
|
-
];
|
|
1808
|
-
var DescribeDBSubnetGroupsMessage$ = [3, n0, _DDBSGMe,
|
|
1809
|
-
0,
|
|
1810
|
-
[_DBSGN, _F, _MR, _M],
|
|
1811
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1812
|
-
];
|
|
1813
|
-
var DescribeEngineDefaultClusterParametersMessage$ = [3, n0, _DEDCPM,
|
|
1814
|
-
0,
|
|
1815
|
-
[_DBPGF, _F, _MR, _M],
|
|
1816
|
-
[0, [() => FilterList, 0], 1, 0], 1
|
|
1817
|
-
];
|
|
1818
|
-
var DescribeEngineDefaultClusterParametersResult$ = [3, n0, _DEDCPR,
|
|
1819
|
-
0,
|
|
1820
|
-
[_ED],
|
|
1821
|
-
[[() => EngineDefaults$, 0]]
|
|
1822
|
-
];
|
|
1823
|
-
var DescribeEventCategoriesMessage$ = [3, n0, _DECM,
|
|
1824
|
-
0,
|
|
1825
|
-
[_STo, _F],
|
|
1826
|
-
[0, [() => FilterList, 0]]
|
|
1827
|
-
];
|
|
1828
|
-
var DescribeEventsMessage$ = [3, n0, _DEM,
|
|
1829
|
-
0,
|
|
1830
|
-
[_SI, _STo, _STta, _ET, _Du, _EC, _F, _MR, _M],
|
|
1831
|
-
[0, 0, 4, 4, 1, [() => EventCategoriesList, 0], [() => FilterList, 0], 1, 0]
|
|
1832
|
-
];
|
|
1833
|
-
var DescribeEventSubscriptionsMessage$ = [3, n0, _DESMe,
|
|
1834
|
-
0,
|
|
1835
|
-
[_SN, _F, _MR, _M],
|
|
1836
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1837
|
-
];
|
|
1838
|
-
var DescribeGlobalClustersMessage$ = [3, n0, _DGCMe,
|
|
1839
|
-
0,
|
|
1840
|
-
[_GCI, _F, _MR, _M],
|
|
1841
|
-
[0, [() => FilterList, 0], 1, 0]
|
|
1842
|
-
];
|
|
1843
|
-
var DescribeOrderableDBInstanceOptionsMessage$ = [3, n0, _DODBIOM,
|
|
1844
|
-
0,
|
|
1845
|
-
[_E, _EV, _DBIC, _LM, _V, _F, _MR, _M],
|
|
1846
|
-
[0, 0, 0, 0, 2, [() => FilterList, 0], 1, 0], 1
|
|
1847
|
-
];
|
|
1848
|
-
var DescribePendingMaintenanceActionsMessage$ = [3, n0, _DPMAM,
|
|
1849
|
-
0,
|
|
1850
|
-
[_RI, _F, _M, _MR],
|
|
1851
|
-
[0, [() => FilterList, 0], 0, 1]
|
|
1852
|
-
];
|
|
1853
|
-
var Endpoint$ = [3, n0, _End,
|
|
1854
|
-
0,
|
|
1855
|
-
[_A, _P, _HZI],
|
|
1856
|
-
[0, 1, 0]
|
|
1857
|
-
];
|
|
1858
|
-
var EngineDefaults$ = [3, n0, _ED,
|
|
1859
|
-
0,
|
|
1860
|
-
[_DBPGF, _M, _Pa],
|
|
1861
|
-
[0, 0, [() => ParametersList, 0]]
|
|
1862
|
-
];
|
|
1863
|
-
var Event$ = [3, n0, _Ev,
|
|
1864
|
-
0,
|
|
1865
|
-
[_SI, _STo, _Me, _EC, _Da, _SAo],
|
|
1866
|
-
[0, 0, 0, [() => EventCategoriesList, 0], 4, 0]
|
|
1867
|
-
];
|
|
1868
|
-
var EventCategoriesMap$ = [3, n0, _ECM,
|
|
1869
|
-
0,
|
|
1870
|
-
[_STo, _EC],
|
|
1871
|
-
[0, [() => EventCategoriesList, 0]]
|
|
1872
|
-
];
|
|
1873
|
-
var EventCategoriesMessage$ = [3, n0, _ECMv,
|
|
1874
|
-
0,
|
|
1875
|
-
[_ECML],
|
|
1876
|
-
[[() => EventCategoriesMapList, 0]]
|
|
1877
|
-
];
|
|
1878
|
-
var EventsMessage$ = [3, n0, _EM,
|
|
1879
|
-
0,
|
|
1880
|
-
[_M, _Eve],
|
|
1881
|
-
[0, [() => EventList, 0]]
|
|
1882
|
-
];
|
|
1883
|
-
var EventSubscription$ = [3, n0, _ES,
|
|
1884
|
-
0,
|
|
1885
|
-
[_CAIu, _CSI, _STA, _S, _SCTu, _STo, _SIL, _ECL, _En, _ESA],
|
|
1886
|
-
[0, 0, 0, 0, 0, 0, [() => SourceIdsList, 0], [() => EventCategoriesList, 0], 2, 0]
|
|
1887
|
-
];
|
|
1888
|
-
var EventSubscriptionQuotaExceededFault$ = [-3, n0, _ESQEF,
|
|
1889
|
-
{ [_aQE]: [`EventSubscriptionQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1890
|
-
[_m],
|
|
1891
|
-
[0]
|
|
1892
|
-
];
|
|
1893
|
-
schema.TypeRegistry.for(n0).registerError(EventSubscriptionQuotaExceededFault$, EventSubscriptionQuotaExceededFault);
|
|
1894
|
-
var EventSubscriptionsMessage$ = [3, n0, _ESM,
|
|
1895
|
-
0,
|
|
1896
|
-
[_M, _ESL],
|
|
1897
|
-
[0, [() => EventSubscriptionsList, 0]]
|
|
1898
|
-
];
|
|
1899
|
-
var FailoverDBClusterMessage$ = [3, n0, _FDBCM,
|
|
1900
|
-
0,
|
|
1901
|
-
[_DBCI, _TDBII],
|
|
1902
|
-
[0, 0]
|
|
1903
|
-
];
|
|
1904
|
-
var FailoverDBClusterResult$ = [3, n0, _FDBCR,
|
|
1905
|
-
0,
|
|
1906
|
-
[_DBC],
|
|
1907
|
-
[[() => DBCluster$, 0]]
|
|
1908
|
-
];
|
|
1909
|
-
var FailoverGlobalClusterMessage$ = [3, n0, _FGCM,
|
|
1910
|
-
0,
|
|
1911
|
-
[_GCI, _TDCI, _ADL, _Sw],
|
|
1912
|
-
[0, 0, 2, 2], 2
|
|
1913
|
-
];
|
|
1914
|
-
var FailoverGlobalClusterResult$ = [3, n0, _FGCR,
|
|
1915
|
-
0,
|
|
1916
|
-
[_GC],
|
|
1917
|
-
[[() => GlobalCluster$, 0]]
|
|
1918
|
-
];
|
|
1919
|
-
var FailoverState$ = [3, n0, _FS,
|
|
1920
|
-
0,
|
|
1921
|
-
[_S, _FDCA, _TDCA, _IDLA],
|
|
1922
|
-
[0, 0, 0, 2]
|
|
1923
|
-
];
|
|
1924
|
-
var Filter$ = [3, n0, _Fi,
|
|
1925
|
-
0,
|
|
1926
|
-
[_N, _Va],
|
|
1927
|
-
[0, [() => FilterValueList, 0]], 2
|
|
1928
|
-
];
|
|
1929
|
-
var GlobalCluster$ = [3, n0, _GC,
|
|
1930
|
-
0,
|
|
1931
|
-
[_GCI, _GCRI, _GCA, _S, _E, _EV, _DN, _SE, _DP, _GCM, _FS, _TL],
|
|
1932
|
-
[0, 0, 0, 0, 0, 0, 0, 2, 2, [() => GlobalClusterMemberList, 0], () => FailoverState$, [() => TagList, 0]]
|
|
1933
|
-
];
|
|
1934
|
-
var GlobalClusterAlreadyExistsFault$ = [-3, n0, _GCAEF,
|
|
1935
|
-
{ [_aQE]: [`GlobalClusterAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1936
|
-
[_m],
|
|
1937
|
-
[0]
|
|
1938
|
-
];
|
|
1939
|
-
schema.TypeRegistry.for(n0).registerError(GlobalClusterAlreadyExistsFault$, GlobalClusterAlreadyExistsFault);
|
|
1940
|
-
var GlobalClusterMember$ = [3, n0, _GCMl,
|
|
1941
|
-
0,
|
|
1942
|
-
[_DBCA, _R, _IW, _SSy],
|
|
1943
|
-
[0, 64 | 0, 2, 0]
|
|
1944
|
-
];
|
|
1945
|
-
var GlobalClusterNotFoundFault$ = [-3, n0, _GCNFF,
|
|
1946
|
-
{ [_aQE]: [`GlobalClusterNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
1947
|
-
[_m],
|
|
1948
|
-
[0]
|
|
1949
|
-
];
|
|
1950
|
-
schema.TypeRegistry.for(n0).registerError(GlobalClusterNotFoundFault$, GlobalClusterNotFoundFault);
|
|
1951
|
-
var GlobalClusterQuotaExceededFault$ = [-3, n0, _GCQEF,
|
|
1952
|
-
{ [_aQE]: [`GlobalClusterQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1953
|
-
[_m],
|
|
1954
|
-
[0]
|
|
1955
|
-
];
|
|
1956
|
-
schema.TypeRegistry.for(n0).registerError(GlobalClusterQuotaExceededFault$, GlobalClusterQuotaExceededFault);
|
|
1957
|
-
var GlobalClustersMessage$ = [3, n0, _GCMlo,
|
|
1958
|
-
0,
|
|
1959
|
-
[_M, _GCl],
|
|
1960
|
-
[0, [() => GlobalClusterList, 0]]
|
|
1961
|
-
];
|
|
1962
|
-
var InstanceQuotaExceededFault$ = [-3, n0, _IQEF,
|
|
1963
|
-
{ [_aQE]: [`InstanceQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1964
|
-
[_m],
|
|
1965
|
-
[0]
|
|
1966
|
-
];
|
|
1967
|
-
schema.TypeRegistry.for(n0).registerError(InstanceQuotaExceededFault$, InstanceQuotaExceededFault);
|
|
1968
|
-
var InsufficientDBClusterCapacityFault$ = [-3, n0, _IDBCCF,
|
|
1969
|
-
{ [_aQE]: [`InsufficientDBClusterCapacityFault`, 403], [_e]: _c, [_hE]: 403 },
|
|
1970
|
-
[_m],
|
|
1971
|
-
[0]
|
|
1972
|
-
];
|
|
1973
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientDBClusterCapacityFault$, InsufficientDBClusterCapacityFault);
|
|
1974
|
-
var InsufficientDBInstanceCapacityFault$ = [-3, n0, _IDBICF,
|
|
1975
|
-
{ [_aQE]: [`InsufficientDBInstanceCapacity`, 400], [_e]: _c, [_hE]: 400 },
|
|
1976
|
-
[_m],
|
|
1977
|
-
[0]
|
|
1978
|
-
];
|
|
1979
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientDBInstanceCapacityFault$, InsufficientDBInstanceCapacityFault);
|
|
1980
|
-
var InsufficientStorageClusterCapacityFault$ = [-3, n0, _ISCCF,
|
|
1981
|
-
{ [_aQE]: [`InsufficientStorageClusterCapacity`, 400], [_e]: _c, [_hE]: 400 },
|
|
1982
|
-
[_m],
|
|
1983
|
-
[0]
|
|
1984
|
-
];
|
|
1985
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientStorageClusterCapacityFault$, InsufficientStorageClusterCapacityFault);
|
|
1986
|
-
var InvalidDBClusterSnapshotStateFault$ = [-3, n0, _IDBCSSF,
|
|
1987
|
-
{ [_aQE]: [`InvalidDBClusterSnapshotStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1988
|
-
[_m],
|
|
1989
|
-
[0]
|
|
1990
|
-
];
|
|
1991
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBClusterSnapshotStateFault$, InvalidDBClusterSnapshotStateFault);
|
|
1992
|
-
var InvalidDBClusterStateFault$ = [-3, n0, _IDBCSF,
|
|
1993
|
-
{ [_aQE]: [`InvalidDBClusterStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1994
|
-
[_m],
|
|
1995
|
-
[0]
|
|
1996
|
-
];
|
|
1997
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBClusterStateFault$, InvalidDBClusterStateFault);
|
|
1998
|
-
var InvalidDBInstanceStateFault$ = [-3, n0, _IDBISF,
|
|
1999
|
-
{ [_aQE]: [`InvalidDBInstanceState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2000
|
-
[_m],
|
|
2001
|
-
[0]
|
|
2002
|
-
];
|
|
2003
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBInstanceStateFault$, InvalidDBInstanceStateFault);
|
|
2004
|
-
var InvalidDBParameterGroupStateFault$ = [-3, n0, _IDBPGSF,
|
|
2005
|
-
{ [_aQE]: [`InvalidDBParameterGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2006
|
-
[_m],
|
|
2007
|
-
[0]
|
|
2008
|
-
];
|
|
2009
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBParameterGroupStateFault$, InvalidDBParameterGroupStateFault);
|
|
2010
|
-
var InvalidDBSecurityGroupStateFault$ = [-3, n0, _IDBSGSF,
|
|
2011
|
-
{ [_aQE]: [`InvalidDBSecurityGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2012
|
-
[_m],
|
|
2013
|
-
[0]
|
|
2014
|
-
];
|
|
2015
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBSecurityGroupStateFault$, InvalidDBSecurityGroupStateFault);
|
|
2016
|
-
var InvalidDBSnapshotStateFault$ = [-3, n0, _IDBSSF,
|
|
2017
|
-
{ [_aQE]: [`InvalidDBSnapshotState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2018
|
-
[_m],
|
|
2019
|
-
[0]
|
|
2020
|
-
];
|
|
2021
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBSnapshotStateFault$, InvalidDBSnapshotStateFault);
|
|
2022
|
-
var InvalidDBSubnetGroupStateFault$ = [-3, n0, _IDBSGSFn,
|
|
2023
|
-
{ [_aQE]: [`InvalidDBSubnetGroupStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2024
|
-
[_m],
|
|
2025
|
-
[0]
|
|
2026
|
-
];
|
|
2027
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBSubnetGroupStateFault$, InvalidDBSubnetGroupStateFault);
|
|
2028
|
-
var InvalidDBSubnetStateFault$ = [-3, n0, _IDBSSFn,
|
|
2029
|
-
{ [_aQE]: [`InvalidDBSubnetStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2030
|
-
[_m],
|
|
2031
|
-
[0]
|
|
2032
|
-
];
|
|
2033
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDBSubnetStateFault$, InvalidDBSubnetStateFault);
|
|
2034
|
-
var InvalidEventSubscriptionStateFault$ = [-3, n0, _IESSF,
|
|
2035
|
-
{ [_aQE]: [`InvalidEventSubscriptionState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2036
|
-
[_m],
|
|
2037
|
-
[0]
|
|
2038
|
-
];
|
|
2039
|
-
schema.TypeRegistry.for(n0).registerError(InvalidEventSubscriptionStateFault$, InvalidEventSubscriptionStateFault);
|
|
2040
|
-
var InvalidGlobalClusterStateFault$ = [-3, n0, _IGCSF,
|
|
2041
|
-
{ [_aQE]: [`InvalidGlobalClusterStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2042
|
-
[_m],
|
|
2043
|
-
[0]
|
|
2044
|
-
];
|
|
2045
|
-
schema.TypeRegistry.for(n0).registerError(InvalidGlobalClusterStateFault$, InvalidGlobalClusterStateFault);
|
|
2046
|
-
var InvalidRestoreFault$ = [-3, n0, _IRF,
|
|
2047
|
-
{ [_aQE]: [`InvalidRestoreFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2048
|
-
[_m],
|
|
2049
|
-
[0]
|
|
2050
|
-
];
|
|
2051
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRestoreFault$, InvalidRestoreFault);
|
|
2052
|
-
var InvalidSubnet$ = [-3, n0, _ISn,
|
|
2053
|
-
{ [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
|
|
2054
|
-
[_m],
|
|
2055
|
-
[0]
|
|
2056
|
-
];
|
|
2057
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSubnet$, InvalidSubnet);
|
|
2058
|
-
var InvalidVPCNetworkStateFault$ = [-3, n0, _IVPCNSF,
|
|
2059
|
-
{ [_aQE]: [`InvalidVPCNetworkStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2060
|
-
[_m],
|
|
2061
|
-
[0]
|
|
2062
|
-
];
|
|
2063
|
-
schema.TypeRegistry.for(n0).registerError(InvalidVPCNetworkStateFault$, InvalidVPCNetworkStateFault);
|
|
2064
|
-
var KMSKeyNotAccessibleFault$ = [-3, n0, _KMSKNAF,
|
|
2065
|
-
{ [_aQE]: [`KMSKeyNotAccessibleFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2066
|
-
[_m],
|
|
2067
|
-
[0]
|
|
2068
|
-
];
|
|
2069
|
-
schema.TypeRegistry.for(n0).registerError(KMSKeyNotAccessibleFault$, KMSKeyNotAccessibleFault);
|
|
2070
|
-
var ListTagsForResourceMessage$ = [3, n0, _LTFRM,
|
|
2071
|
-
0,
|
|
2072
|
-
[_RN, _F],
|
|
2073
|
-
[0, [() => FilterList, 0]], 1
|
|
2074
|
-
];
|
|
2075
|
-
var ModifyDBClusterMessage$ = [3, n0, _MDBCM,
|
|
2076
|
-
0,
|
|
2077
|
-
[_DBCI, _NDBCI, _AI, _BRP, _DBCPGN, _VSGI, _P, _MUP, _PBW, _PMW, _CLEC, _EV, _AMVUl, _DP, _ST, _SVSC, _MMUP, _MUSKKI, _RMUP, _NT],
|
|
2078
|
-
[0, 0, 2, 1, 0, [() => VpcSecurityGroupIdList, 0], 1, 0, 0, 0, () => CloudwatchLogsExportConfiguration$, 0, 2, 2, 0, () => ServerlessV2ScalingConfiguration$, 2, 0, 2, 0], 1
|
|
2079
|
-
];
|
|
2080
|
-
var ModifyDBClusterParameterGroupMessage$ = [3, n0, _MDBCPGM,
|
|
2081
|
-
0,
|
|
2082
|
-
[_DBCPGN, _Pa],
|
|
2083
|
-
[0, [() => ParametersList, 0]], 2
|
|
2084
|
-
];
|
|
2085
|
-
var ModifyDBClusterResult$ = [3, n0, _MDBCR,
|
|
2086
|
-
0,
|
|
2087
|
-
[_DBC],
|
|
2088
|
-
[[() => DBCluster$, 0]]
|
|
2089
|
-
];
|
|
2090
|
-
var ModifyDBClusterSnapshotAttributeMessage$ = [3, n0, _MDBCSAM,
|
|
2091
|
-
0,
|
|
2092
|
-
[_DBCSI, _AN, _VTA, _VTR],
|
|
2093
|
-
[0, 0, [() => AttributeValueList, 0], [() => AttributeValueList, 0]], 2
|
|
2094
|
-
];
|
|
2095
|
-
var ModifyDBClusterSnapshotAttributeResult$ = [3, n0, _MDBCSAR,
|
|
2096
|
-
0,
|
|
2097
|
-
[_DBCSAR],
|
|
2098
|
-
[[() => DBClusterSnapshotAttributesResult$, 0]]
|
|
2099
|
-
];
|
|
2100
|
-
var ModifyDBInstanceMessage$ = [3, n0, _MDBIM,
|
|
2101
|
-
0,
|
|
2102
|
-
[_DBII, _DBIC, _AI, _PMW, _AMVU, _NDBII, _CACI, _CTTS, _PT, _EPI, _PIKMSKI, _CRR],
|
|
2103
|
-
[0, 0, 2, 0, 2, 0, 0, 2, 1, 2, 0, 2], 1
|
|
2104
|
-
];
|
|
2105
|
-
var ModifyDBInstanceResult$ = [3, n0, _MDBIR,
|
|
2106
|
-
0,
|
|
2107
|
-
[_DBI],
|
|
2108
|
-
[[() => DBInstance$, 0]]
|
|
2109
|
-
];
|
|
2110
|
-
var ModifyDBSubnetGroupMessage$ = [3, n0, _MDBSGM,
|
|
2111
|
-
0,
|
|
2112
|
-
[_DBSGN, _SIu, _DBSGD],
|
|
2113
|
-
[0, [() => SubnetIdentifierList, 0], 0], 2
|
|
2114
|
-
];
|
|
2115
|
-
var ModifyDBSubnetGroupResult$ = [3, n0, _MDBSGR,
|
|
2116
|
-
0,
|
|
2117
|
-
[_DBSG],
|
|
2118
|
-
[[() => DBSubnetGroup$, 0]]
|
|
2119
|
-
];
|
|
2120
|
-
var ModifyEventSubscriptionMessage$ = [3, n0, _MESM,
|
|
2121
|
-
0,
|
|
2122
|
-
[_SN, _STA, _STo, _EC, _En],
|
|
2123
|
-
[0, 0, 0, [() => EventCategoriesList, 0], 2], 1
|
|
2124
|
-
];
|
|
2125
|
-
var ModifyEventSubscriptionResult$ = [3, n0, _MESR,
|
|
2126
|
-
0,
|
|
2127
|
-
[_ES],
|
|
2128
|
-
[[() => EventSubscription$, 0]]
|
|
2129
|
-
];
|
|
2130
|
-
var ModifyGlobalClusterMessage$ = [3, n0, _MGCM,
|
|
2131
|
-
0,
|
|
2132
|
-
[_GCI, _NGCI, _DP],
|
|
2133
|
-
[0, 0, 2], 1
|
|
2134
|
-
];
|
|
2135
|
-
var ModifyGlobalClusterResult$ = [3, n0, _MGCR,
|
|
2136
|
-
0,
|
|
2137
|
-
[_GC],
|
|
2138
|
-
[[() => GlobalCluster$, 0]]
|
|
2139
|
-
];
|
|
2140
|
-
var NetworkTypeNotSupported$ = [-3, n0, _NTNS,
|
|
2141
|
-
{ [_aQE]: [`NetworkTypeNotSupported`, 400], [_e]: _c, [_hE]: 400 },
|
|
2142
|
-
[_m],
|
|
2143
|
-
[0]
|
|
2144
|
-
];
|
|
2145
|
-
schema.TypeRegistry.for(n0).registerError(NetworkTypeNotSupported$, NetworkTypeNotSupported);
|
|
2146
|
-
var OrderableDBInstanceOption$ = [3, n0, _ODBIO,
|
|
2147
|
-
0,
|
|
2148
|
-
[_E, _EV, _DBIC, _LM, _AZv, _V, _ST],
|
|
2149
|
-
[0, 0, 0, 0, [() => AvailabilityZoneList, 0], 2, 0]
|
|
2150
|
-
];
|
|
2151
|
-
var OrderableDBInstanceOptionsMessage$ = [3, n0, _ODBIOM,
|
|
2152
|
-
0,
|
|
2153
|
-
[_ODBIOr, _M],
|
|
2154
|
-
[[() => OrderableDBInstanceOptionsList, 0], 0]
|
|
2155
|
-
];
|
|
2156
|
-
var Parameter$ = [3, n0, _Par,
|
|
2157
|
-
0,
|
|
2158
|
-
[_PN, _PV, _D, _So, _AT, _DT, _AVl, _IM, _MEV, _AM],
|
|
2159
|
-
[0, 0, 0, 0, 0, 0, 0, 2, 0, 0]
|
|
2160
|
-
];
|
|
2161
|
-
var PendingCloudwatchLogsExports$ = [3, n0, _PCLE,
|
|
2162
|
-
0,
|
|
2163
|
-
[_LTTE, _LTTD],
|
|
2164
|
-
[64 | 0, 64 | 0]
|
|
2165
|
-
];
|
|
2166
|
-
var PendingMaintenanceAction$ = [3, n0, _PMA,
|
|
2167
|
-
0,
|
|
2168
|
-
[_Ac, _AAAD, _FAD, _OIS, _CAD, _D],
|
|
2169
|
-
[0, 4, 4, 0, 4, 0]
|
|
2170
|
-
];
|
|
2171
|
-
var PendingMaintenanceActionsMessage$ = [3, n0, _PMAM,
|
|
2172
|
-
0,
|
|
2173
|
-
[_PMAe, _M],
|
|
2174
|
-
[[() => PendingMaintenanceActions, 0], 0]
|
|
2175
|
-
];
|
|
2176
|
-
var PendingModifiedValues$ = [3, n0, _PMV,
|
|
2177
|
-
0,
|
|
2178
|
-
[_DBIC, _AS, _MUP, _P, _BRP, _MAZ, _EV, _LM, _I, _DBII, _ST, _CACI, _DBSGN, _PCLE],
|
|
2179
|
-
[0, 1, 0, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, () => PendingCloudwatchLogsExports$]
|
|
2180
|
-
];
|
|
2181
|
-
var RebootDBInstanceMessage$ = [3, n0, _RDBIM,
|
|
2182
|
-
0,
|
|
2183
|
-
[_DBII, _FF],
|
|
2184
|
-
[0, 2], 1
|
|
2185
|
-
];
|
|
2186
|
-
var RebootDBInstanceResult$ = [3, n0, _RDBIR,
|
|
2187
|
-
0,
|
|
2188
|
-
[_DBI],
|
|
2189
|
-
[[() => DBInstance$, 0]]
|
|
2190
|
-
];
|
|
2191
|
-
var RemoveFromGlobalClusterMessage$ = [3, n0, _RFGCM,
|
|
2192
|
-
0,
|
|
2193
|
-
[_GCI, _DCI],
|
|
2194
|
-
[0, 0], 2
|
|
2195
|
-
];
|
|
2196
|
-
var RemoveFromGlobalClusterResult$ = [3, n0, _RFGCR,
|
|
2197
|
-
0,
|
|
2198
|
-
[_GC],
|
|
2199
|
-
[[() => GlobalCluster$, 0]]
|
|
2200
|
-
];
|
|
2201
|
-
var RemoveSourceIdentifierFromSubscriptionMessage$ = [3, n0, _RSIFSM,
|
|
2202
|
-
0,
|
|
2203
|
-
[_SN, _SI],
|
|
2204
|
-
[0, 0], 2
|
|
2205
|
-
];
|
|
2206
|
-
var RemoveSourceIdentifierFromSubscriptionResult$ = [3, n0, _RSIFSR,
|
|
2207
|
-
0,
|
|
2208
|
-
[_ES],
|
|
2209
|
-
[[() => EventSubscription$, 0]]
|
|
2210
|
-
];
|
|
2211
|
-
var RemoveTagsFromResourceMessage$ = [3, n0, _RTFRM,
|
|
2212
|
-
0,
|
|
2213
|
-
[_RN, _TK],
|
|
2214
|
-
[0, 64 | 0], 2
|
|
2215
|
-
];
|
|
2216
|
-
var ResetDBClusterParameterGroupMessage$ = [3, n0, _RDBCPGM,
|
|
2217
|
-
0,
|
|
2218
|
-
[_DBCPGN, _RAP, _Pa],
|
|
2219
|
-
[0, 2, [() => ParametersList, 0]], 1
|
|
2220
|
-
];
|
|
2221
|
-
var ResourceNotFoundFault$ = [-3, n0, _RNFF,
|
|
2222
|
-
{ [_aQE]: [`ResourceNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
2223
|
-
[_m],
|
|
2224
|
-
[0]
|
|
2225
|
-
];
|
|
2226
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundFault$, ResourceNotFoundFault);
|
|
2227
|
-
var ResourcePendingMaintenanceActions$ = [3, n0, _RPMA,
|
|
2228
|
-
0,
|
|
2229
|
-
[_RI, _PMAD],
|
|
2230
|
-
[0, [() => PendingMaintenanceActionDetails, 0]]
|
|
2231
|
-
];
|
|
2232
|
-
var RestoreDBClusterFromSnapshotMessage$ = [3, n0, _RDBCFSM,
|
|
2233
|
-
0,
|
|
2234
|
-
[_DBCI, _SIn, _E, _AZv, _EV, _P, _DBSGN, _VSGI, _T, _KKI, _ECLE, _DP, _DBCPGN, _SVSC, _ST, _NT],
|
|
2235
|
-
[0, 0, 0, [() => AvailabilityZones, 0], 0, 1, 0, [() => VpcSecurityGroupIdList, 0], [() => TagList, 0], 0, 64 | 0, 2, 0, () => ServerlessV2ScalingConfiguration$, 0, 0], 3
|
|
2236
|
-
];
|
|
2237
|
-
var RestoreDBClusterFromSnapshotResult$ = [3, n0, _RDBCFSR,
|
|
2238
|
-
0,
|
|
2239
|
-
[_DBC],
|
|
2240
|
-
[[() => DBCluster$, 0]]
|
|
2241
|
-
];
|
|
2242
|
-
var RestoreDBClusterToPointInTimeMessage$ = [3, n0, _RDBCTPITM,
|
|
2243
|
-
0,
|
|
2244
|
-
[_DBCI, _SDBCI, _RT, _RTT, _ULRT, _P, _DBSGN, _VSGI, _T, _KKI, _ECLE, _DP, _SVSC, _ST, _NT],
|
|
2245
|
-
[0, 0, 0, 4, 2, 1, 0, [() => VpcSecurityGroupIdList, 0], [() => TagList, 0], 0, 64 | 0, 2, () => ServerlessV2ScalingConfiguration$, 0, 0], 2
|
|
2246
|
-
];
|
|
2247
|
-
var RestoreDBClusterToPointInTimeResult$ = [3, n0, _RDBCTPITR,
|
|
2248
|
-
0,
|
|
2249
|
-
[_DBC],
|
|
2250
|
-
[[() => DBCluster$, 0]]
|
|
2251
|
-
];
|
|
2252
|
-
var ServerlessV2FeaturesSupport$ = [3, n0, _SVFS,
|
|
2253
|
-
0,
|
|
2254
|
-
[_MC, _MCa],
|
|
2255
|
-
[1, 1]
|
|
2256
|
-
];
|
|
2257
|
-
var ServerlessV2ScalingConfiguration$ = [3, n0, _SVSC,
|
|
2258
|
-
0,
|
|
2259
|
-
[_MC, _MCa],
|
|
2260
|
-
[1, 1]
|
|
2261
|
-
];
|
|
2262
|
-
var ServerlessV2ScalingConfigurationInfo$ = [3, n0, _SVSCI,
|
|
2263
|
-
0,
|
|
2264
|
-
[_MC, _MCa],
|
|
2265
|
-
[1, 1]
|
|
2266
|
-
];
|
|
2267
|
-
var SharedSnapshotQuotaExceededFault$ = [-3, n0, _SSQEF,
|
|
2268
|
-
{ [_aQE]: [`SharedSnapshotQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2269
|
-
[_m],
|
|
2270
|
-
[0]
|
|
2271
|
-
];
|
|
2272
|
-
schema.TypeRegistry.for(n0).registerError(SharedSnapshotQuotaExceededFault$, SharedSnapshotQuotaExceededFault);
|
|
2273
|
-
var SnapshotQuotaExceededFault$ = [-3, n0, _SQEF,
|
|
2274
|
-
{ [_aQE]: [`SnapshotQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2275
|
-
[_m],
|
|
2276
|
-
[0]
|
|
2277
|
-
];
|
|
2278
|
-
schema.TypeRegistry.for(n0).registerError(SnapshotQuotaExceededFault$, SnapshotQuotaExceededFault);
|
|
2279
|
-
var SNSInvalidTopicFault$ = [-3, n0, _SNSITF,
|
|
2280
|
-
{ [_aQE]: [`SNSInvalidTopic`, 400], [_e]: _c, [_hE]: 400 },
|
|
2281
|
-
[_m],
|
|
2282
|
-
[0]
|
|
2283
|
-
];
|
|
2284
|
-
schema.TypeRegistry.for(n0).registerError(SNSInvalidTopicFault$, SNSInvalidTopicFault);
|
|
2285
|
-
var SNSNoAuthorizationFault$ = [-3, n0, _SNSNAF,
|
|
2286
|
-
{ [_aQE]: [`SNSNoAuthorization`, 400], [_e]: _c, [_hE]: 400 },
|
|
2287
|
-
[_m],
|
|
2288
|
-
[0]
|
|
2289
|
-
];
|
|
2290
|
-
schema.TypeRegistry.for(n0).registerError(SNSNoAuthorizationFault$, SNSNoAuthorizationFault);
|
|
2291
|
-
var SNSTopicArnNotFoundFault$ = [-3, n0, _SNSTANFF,
|
|
2292
|
-
{ [_aQE]: [`SNSTopicArnNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
2293
|
-
[_m],
|
|
2294
|
-
[0]
|
|
2295
|
-
];
|
|
2296
|
-
schema.TypeRegistry.for(n0).registerError(SNSTopicArnNotFoundFault$, SNSTopicArnNotFoundFault);
|
|
2297
|
-
var SourceNotFoundFault$ = [-3, n0, _SNFF,
|
|
2298
|
-
{ [_aQE]: [`SourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
2299
|
-
[_m],
|
|
2300
|
-
[0]
|
|
2301
|
-
];
|
|
2302
|
-
schema.TypeRegistry.for(n0).registerError(SourceNotFoundFault$, SourceNotFoundFault);
|
|
2303
|
-
var StartDBClusterMessage$ = [3, n0, _SDBCM,
|
|
2304
|
-
0,
|
|
2305
|
-
[_DBCI],
|
|
2306
|
-
[0], 1
|
|
2307
|
-
];
|
|
2308
|
-
var StartDBClusterResult$ = [3, n0, _SDBCR,
|
|
2309
|
-
0,
|
|
2310
|
-
[_DBC],
|
|
2311
|
-
[[() => DBCluster$, 0]]
|
|
2312
|
-
];
|
|
2313
|
-
var StopDBClusterMessage$ = [3, n0, _SDBCMt,
|
|
2314
|
-
0,
|
|
2315
|
-
[_DBCI],
|
|
2316
|
-
[0], 1
|
|
2317
|
-
];
|
|
2318
|
-
var StopDBClusterResult$ = [3, n0, _SDBCRt,
|
|
2319
|
-
0,
|
|
2320
|
-
[_DBC],
|
|
2321
|
-
[[() => DBCluster$, 0]]
|
|
2322
|
-
];
|
|
2323
|
-
var StorageQuotaExceededFault$ = [-3, n0, _SQEFt,
|
|
2324
|
-
{ [_aQE]: [`StorageQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2325
|
-
[_m],
|
|
2326
|
-
[0]
|
|
2327
|
-
];
|
|
2328
|
-
schema.TypeRegistry.for(n0).registerError(StorageQuotaExceededFault$, StorageQuotaExceededFault);
|
|
2329
|
-
var StorageTypeNotSupportedFault$ = [-3, n0, _STNSF,
|
|
2330
|
-
{ [_aQE]: [`StorageTypeNotSupported`, 400], [_e]: _c, [_hE]: 400 },
|
|
2331
|
-
[_m],
|
|
2332
|
-
[0]
|
|
2333
|
-
];
|
|
2334
|
-
schema.TypeRegistry.for(n0).registerError(StorageTypeNotSupportedFault$, StorageTypeNotSupportedFault);
|
|
2335
|
-
var Subnet$ = [3, n0, _Sub,
|
|
2336
|
-
0,
|
|
2337
|
-
[_SIub, _SAZ, _SSu],
|
|
2338
|
-
[0, () => AvailabilityZone$, 0]
|
|
2339
|
-
];
|
|
2340
|
-
var SubnetAlreadyInUse$ = [-3, n0, _SAIU,
|
|
2341
|
-
{ [_aQE]: [`SubnetAlreadyInUse`, 400], [_e]: _c, [_hE]: 400 },
|
|
2342
|
-
[_m],
|
|
2343
|
-
[0]
|
|
2344
|
-
];
|
|
2345
|
-
schema.TypeRegistry.for(n0).registerError(SubnetAlreadyInUse$, SubnetAlreadyInUse);
|
|
2346
|
-
var SubscriptionAlreadyExistFault$ = [-3, n0, _SAEF,
|
|
2347
|
-
{ [_aQE]: [`SubscriptionAlreadyExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
2348
|
-
[_m],
|
|
2349
|
-
[0]
|
|
2350
|
-
];
|
|
2351
|
-
schema.TypeRegistry.for(n0).registerError(SubscriptionAlreadyExistFault$, SubscriptionAlreadyExistFault);
|
|
2352
|
-
var SubscriptionCategoryNotFoundFault$ = [-3, n0, _SCNFF,
|
|
2353
|
-
{ [_aQE]: [`SubscriptionCategoryNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
2354
|
-
[_m],
|
|
2355
|
-
[0]
|
|
2356
|
-
];
|
|
2357
|
-
schema.TypeRegistry.for(n0).registerError(SubscriptionCategoryNotFoundFault$, SubscriptionCategoryNotFoundFault);
|
|
2358
|
-
var SubscriptionNotFoundFault$ = [-3, n0, _SNFFu,
|
|
2359
|
-
{ [_aQE]: [`SubscriptionNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
2360
|
-
[_m],
|
|
2361
|
-
[0]
|
|
2362
|
-
];
|
|
2363
|
-
schema.TypeRegistry.for(n0).registerError(SubscriptionNotFoundFault$, SubscriptionNotFoundFault);
|
|
2364
|
-
var SwitchoverGlobalClusterMessage$ = [3, n0, _SGCM,
|
|
2365
|
-
0,
|
|
2366
|
-
[_GCI, _TDCI],
|
|
2367
|
-
[0, 0], 2
|
|
2368
|
-
];
|
|
2369
|
-
var SwitchoverGlobalClusterResult$ = [3, n0, _SGCR,
|
|
2370
|
-
0,
|
|
2371
|
-
[_GC],
|
|
2372
|
-
[[() => GlobalCluster$, 0]]
|
|
2373
|
-
];
|
|
2374
|
-
var Tag$ = [3, n0, _Ta,
|
|
2375
|
-
0,
|
|
2376
|
-
[_K, _Val],
|
|
2377
|
-
[0, 0]
|
|
2378
|
-
];
|
|
2379
|
-
var TagListMessage$ = [3, n0, _TLM,
|
|
2380
|
-
0,
|
|
2381
|
-
[_TL],
|
|
2382
|
-
[[() => TagList, 0]]
|
|
2383
|
-
];
|
|
2384
|
-
var UpgradeTarget$ = [3, n0, _UT,
|
|
2385
|
-
0,
|
|
2386
|
-
[_E, _EV, _D, _AU, _IMVU],
|
|
2387
|
-
[0, 0, 0, 2, 2]
|
|
2388
|
-
];
|
|
2389
|
-
var VpcSecurityGroupMembership$ = [3, n0, _VSGM,
|
|
2390
|
-
0,
|
|
2391
|
-
[_VSGIp, _S],
|
|
2392
|
-
[0, 0]
|
|
2393
|
-
];
|
|
2394
|
-
var __Unit = "unit";
|
|
2395
|
-
var DocDBServiceException$ = [-3, _s, "DocDBServiceException", 0, [], []];
|
|
2396
|
-
schema.TypeRegistry.for(_s).registerError(DocDBServiceException$, DocDBServiceException);
|
|
2397
|
-
var AttributeValueList = [1, n0, _AVL,
|
|
2398
|
-
0, [0,
|
|
2399
|
-
{ [_xN]: _AVt }]
|
|
2400
|
-
];
|
|
2401
|
-
var AvailabilityZoneList = [1, n0, _AZL,
|
|
2402
|
-
0, [() => AvailabilityZone$,
|
|
2403
|
-
{ [_xN]: _AZ }]
|
|
2404
|
-
];
|
|
2405
|
-
var AvailabilityZones = [1, n0, _AZv,
|
|
2406
|
-
0, [0,
|
|
2407
|
-
{ [_xN]: _AZ }]
|
|
2408
|
-
];
|
|
2409
|
-
var CertificateList = [1, n0, _CL,
|
|
2410
|
-
0, [() => Certificate$,
|
|
2411
|
-
{ [_xN]: _C }]
|
|
2412
|
-
];
|
|
2413
|
-
var DBClusterList = [1, n0, _DBCL,
|
|
2414
|
-
0, [() => DBCluster$,
|
|
2415
|
-
{ [_xN]: _DBC }]
|
|
2416
|
-
];
|
|
2417
|
-
var DBClusterMemberList = [1, n0, _DBCML,
|
|
2418
|
-
0, [() => DBClusterMember$,
|
|
2419
|
-
{ [_xN]: _DBCMl }]
|
|
2420
|
-
];
|
|
2421
|
-
var DBClusterParameterGroupList = [1, n0, _DBCPGL,
|
|
2422
|
-
0, [() => DBClusterParameterGroup$,
|
|
2423
|
-
{ [_xN]: _DBCPG }]
|
|
2424
|
-
];
|
|
2425
|
-
var DBClusterRoles = [1, n0, _DBCRl,
|
|
2426
|
-
0, [() => DBClusterRole$,
|
|
2427
|
-
{ [_xN]: _DBCR }]
|
|
2428
|
-
];
|
|
2429
|
-
var DBClusterSnapshotAttributeList = [1, n0, _DBCSAL,
|
|
2430
|
-
0, [() => DBClusterSnapshotAttribute$,
|
|
2431
|
-
{ [_xN]: _DBCSAl }]
|
|
2432
|
-
];
|
|
2433
|
-
var DBClusterSnapshotList = [1, n0, _DBCSL,
|
|
2434
|
-
0, [() => DBClusterSnapshot$,
|
|
2435
|
-
{ [_xN]: _DBCS }]
|
|
2436
|
-
];
|
|
2437
|
-
var DBEngineVersionList = [1, n0, _DBEVL,
|
|
2438
|
-
0, [() => DBEngineVersion$,
|
|
2439
|
-
{ [_xN]: _DBEV }]
|
|
2440
|
-
];
|
|
2441
|
-
var DBInstanceList = [1, n0, _DBIL,
|
|
2442
|
-
0, [() => DBInstance$,
|
|
2443
|
-
{ [_xN]: _DBI }]
|
|
2444
|
-
];
|
|
2445
|
-
var DBInstanceStatusInfoList = [1, n0, _DBISIL,
|
|
2446
|
-
0, [() => DBInstanceStatusInfo$,
|
|
2447
|
-
{ [_xN]: _DBISI }]
|
|
2448
|
-
];
|
|
2449
|
-
var DBSubnetGroups = [1, n0, _DBSGu,
|
|
2450
|
-
0, [() => DBSubnetGroup$,
|
|
2451
|
-
{ [_xN]: _DBSG }]
|
|
2452
|
-
];
|
|
2453
|
-
var EventCategoriesList = [1, n0, _ECL,
|
|
2454
|
-
0, [0,
|
|
2455
|
-
{ [_xN]: _ECv }]
|
|
2456
|
-
];
|
|
2457
|
-
var EventCategoriesMapList = [1, n0, _ECML,
|
|
2458
|
-
0, [() => EventCategoriesMap$,
|
|
2459
|
-
{ [_xN]: _ECM }]
|
|
2460
|
-
];
|
|
2461
|
-
var EventList = [1, n0, _EL,
|
|
2462
|
-
0, [() => Event$,
|
|
2463
|
-
{ [_xN]: _Ev }]
|
|
2464
|
-
];
|
|
2465
|
-
var EventSubscriptionsList = [1, n0, _ESL,
|
|
2466
|
-
0, [() => EventSubscription$,
|
|
2467
|
-
{ [_xN]: _ES }]
|
|
2468
|
-
];
|
|
2469
|
-
var FilterList = [1, n0, _FL,
|
|
2470
|
-
0, [() => Filter$,
|
|
2471
|
-
{ [_xN]: _Fi }]
|
|
2472
|
-
];
|
|
2473
|
-
var FilterValueList = [1, n0, _FVL,
|
|
2474
|
-
0, [0,
|
|
2475
|
-
{ [_xN]: _Val }]
|
|
2476
|
-
];
|
|
2477
|
-
var GlobalClusterList = [1, n0, _GCL,
|
|
2478
|
-
0, [() => GlobalCluster$,
|
|
2479
|
-
{ [_xN]: _GCMl }]
|
|
2480
|
-
];
|
|
2481
|
-
var GlobalClusterMemberList = [1, n0, _GCML,
|
|
2482
|
-
0, [() => GlobalClusterMember$,
|
|
2483
|
-
{ [_xN]: _GCMl }]
|
|
2484
|
-
];
|
|
2485
|
-
var OrderableDBInstanceOptionsList = [1, n0, _ODBIOL,
|
|
2486
|
-
0, [() => OrderableDBInstanceOption$,
|
|
2487
|
-
{ [_xN]: _ODBIO }]
|
|
2488
|
-
];
|
|
2489
|
-
var ParametersList = [1, n0, _PL,
|
|
2490
|
-
0, [() => Parameter$,
|
|
2491
|
-
{ [_xN]: _Par }]
|
|
2492
|
-
];
|
|
2493
|
-
var PendingMaintenanceActionDetails = [1, n0, _PMAD,
|
|
2494
|
-
0, [() => PendingMaintenanceAction$,
|
|
2495
|
-
{ [_xN]: _PMA }]
|
|
2496
|
-
];
|
|
2497
|
-
var PendingMaintenanceActions = [1, n0, _PMAe,
|
|
2498
|
-
0, [() => ResourcePendingMaintenanceActions$,
|
|
2499
|
-
{ [_xN]: _RPMA }]
|
|
2500
|
-
];
|
|
2501
|
-
var ReadReplicaIdentifierList = [1, n0, _RRIL,
|
|
2502
|
-
0, [0,
|
|
2503
|
-
{ [_xN]: _RRIe }]
|
|
2504
|
-
];
|
|
2505
|
-
var SourceIdsList = [1, n0, _SIL,
|
|
2506
|
-
0, [0,
|
|
2507
|
-
{ [_xN]: _SIou }]
|
|
2508
|
-
];
|
|
2509
|
-
var SubnetIdentifierList = [1, n0, _SILu,
|
|
2510
|
-
0, [0,
|
|
2511
|
-
{ [_xN]: _SIub }]
|
|
2512
|
-
];
|
|
2513
|
-
var SubnetList = [1, n0, _SL,
|
|
2514
|
-
0, [() => Subnet$,
|
|
2515
|
-
{ [_xN]: _Sub }]
|
|
2516
|
-
];
|
|
2517
|
-
var TagList = [1, n0, _TL,
|
|
2518
|
-
0, [() => Tag$,
|
|
2519
|
-
{ [_xN]: _Ta }]
|
|
2520
|
-
];
|
|
2521
|
-
var ValidUpgradeTargetList = [1, n0, _VUTL,
|
|
2522
|
-
0, [() => UpgradeTarget$,
|
|
2523
|
-
{ [_xN]: _UT }]
|
|
2524
|
-
];
|
|
2525
|
-
var VpcSecurityGroupIdList = [1, n0, _VSGIL,
|
|
2526
|
-
0, [0,
|
|
2527
|
-
{ [_xN]: _VSGIp }]
|
|
2528
|
-
];
|
|
2529
|
-
var VpcSecurityGroupMembershipList = [1, n0, _VSGML,
|
|
2530
|
-
0, [() => VpcSecurityGroupMembership$,
|
|
2531
|
-
{ [_xN]: _VSGM }]
|
|
2532
|
-
];
|
|
2533
|
-
var AddSourceIdentifierToSubscription$ = [9, n0, _ASITS,
|
|
2534
|
-
0, () => AddSourceIdentifierToSubscriptionMessage$, () => AddSourceIdentifierToSubscriptionResult$
|
|
2535
|
-
];
|
|
2536
|
-
var AddTagsToResource$ = [9, n0, _ATTR,
|
|
2537
|
-
0, () => AddTagsToResourceMessage$, () => __Unit
|
|
2538
|
-
];
|
|
2539
|
-
var ApplyPendingMaintenanceAction$ = [9, n0, _APMA,
|
|
2540
|
-
0, () => ApplyPendingMaintenanceActionMessage$, () => ApplyPendingMaintenanceActionResult$
|
|
2541
|
-
];
|
|
2542
|
-
var CopyDBClusterParameterGroup$ = [9, n0, _CDBCPG,
|
|
2543
|
-
0, () => CopyDBClusterParameterGroupMessage$, () => CopyDBClusterParameterGroupResult$
|
|
2544
|
-
];
|
|
2545
|
-
var CopyDBClusterSnapshot$ = [9, n0, _CDBCS,
|
|
2546
|
-
0, () => CopyDBClusterSnapshotMessage$, () => CopyDBClusterSnapshotResult$
|
|
2547
|
-
];
|
|
2548
|
-
var CreateDBCluster$ = [9, n0, _CDBC,
|
|
2549
|
-
0, () => CreateDBClusterMessage$, () => CreateDBClusterResult$
|
|
2550
|
-
];
|
|
2551
|
-
var CreateDBClusterParameterGroup$ = [9, n0, _CDBCPGr,
|
|
2552
|
-
0, () => CreateDBClusterParameterGroupMessage$, () => CreateDBClusterParameterGroupResult$
|
|
2553
|
-
];
|
|
2554
|
-
var CreateDBClusterSnapshot$ = [9, n0, _CDBCSr,
|
|
2555
|
-
0, () => CreateDBClusterSnapshotMessage$, () => CreateDBClusterSnapshotResult$
|
|
2556
|
-
];
|
|
2557
|
-
var CreateDBInstance$ = [9, n0, _CDBI,
|
|
2558
|
-
0, () => CreateDBInstanceMessage$, () => CreateDBInstanceResult$
|
|
2559
|
-
];
|
|
2560
|
-
var CreateDBSubnetGroup$ = [9, n0, _CDBSG,
|
|
2561
|
-
0, () => CreateDBSubnetGroupMessage$, () => CreateDBSubnetGroupResult$
|
|
2562
|
-
];
|
|
2563
|
-
var CreateEventSubscription$ = [9, n0, _CES,
|
|
2564
|
-
0, () => CreateEventSubscriptionMessage$, () => CreateEventSubscriptionResult$
|
|
2565
|
-
];
|
|
2566
|
-
var CreateGlobalCluster$ = [9, n0, _CGC,
|
|
2567
|
-
0, () => CreateGlobalClusterMessage$, () => CreateGlobalClusterResult$
|
|
2568
|
-
];
|
|
2569
|
-
var DeleteDBCluster$ = [9, n0, _DDBC,
|
|
2570
|
-
0, () => DeleteDBClusterMessage$, () => DeleteDBClusterResult$
|
|
2571
|
-
];
|
|
2572
|
-
var DeleteDBClusterParameterGroup$ = [9, n0, _DDBCPG,
|
|
2573
|
-
0, () => DeleteDBClusterParameterGroupMessage$, () => __Unit
|
|
2574
|
-
];
|
|
2575
|
-
var DeleteDBClusterSnapshot$ = [9, n0, _DDBCS,
|
|
2576
|
-
0, () => DeleteDBClusterSnapshotMessage$, () => DeleteDBClusterSnapshotResult$
|
|
2577
|
-
];
|
|
2578
|
-
var DeleteDBInstance$ = [9, n0, _DDBI,
|
|
2579
|
-
0, () => DeleteDBInstanceMessage$, () => DeleteDBInstanceResult$
|
|
2580
|
-
];
|
|
2581
|
-
var DeleteDBSubnetGroup$ = [9, n0, _DDBSG,
|
|
2582
|
-
0, () => DeleteDBSubnetGroupMessage$, () => __Unit
|
|
2583
|
-
];
|
|
2584
|
-
var DeleteEventSubscription$ = [9, n0, _DES,
|
|
2585
|
-
0, () => DeleteEventSubscriptionMessage$, () => DeleteEventSubscriptionResult$
|
|
2586
|
-
];
|
|
2587
|
-
var DeleteGlobalCluster$ = [9, n0, _DGC,
|
|
2588
|
-
0, () => DeleteGlobalClusterMessage$, () => DeleteGlobalClusterResult$
|
|
2589
|
-
];
|
|
2590
|
-
var DescribeCertificates$ = [9, n0, _DC,
|
|
2591
|
-
0, () => DescribeCertificatesMessage$, () => CertificateMessage$
|
|
2592
|
-
];
|
|
2593
|
-
var DescribeDBClusterParameterGroups$ = [9, n0, _DDBCPGe,
|
|
2594
|
-
0, () => DescribeDBClusterParameterGroupsMessage$, () => DBClusterParameterGroupsMessage$
|
|
2595
|
-
];
|
|
2596
|
-
var DescribeDBClusterParameters$ = [9, n0, _DDBCP,
|
|
2597
|
-
0, () => DescribeDBClusterParametersMessage$, () => DBClusterParameterGroupDetails$
|
|
2598
|
-
];
|
|
2599
|
-
var DescribeDBClusters$ = [9, n0, _DDBCe,
|
|
2600
|
-
0, () => DescribeDBClustersMessage$, () => DBClusterMessage$
|
|
2601
|
-
];
|
|
2602
|
-
var DescribeDBClusterSnapshotAttributes$ = [9, n0, _DDBCSA,
|
|
2603
|
-
0, () => DescribeDBClusterSnapshotAttributesMessage$, () => DescribeDBClusterSnapshotAttributesResult$
|
|
2604
|
-
];
|
|
2605
|
-
var DescribeDBClusterSnapshots$ = [9, n0, _DDBCSe,
|
|
2606
|
-
0, () => DescribeDBClusterSnapshotsMessage$, () => DBClusterSnapshotMessage$
|
|
2607
|
-
];
|
|
2608
|
-
var DescribeDBEngineVersions$ = [9, n0, _DDBEV,
|
|
2609
|
-
0, () => DescribeDBEngineVersionsMessage$, () => DBEngineVersionMessage$
|
|
2610
|
-
];
|
|
2611
|
-
var DescribeDBInstances$ = [9, n0, _DDBIe,
|
|
2612
|
-
0, () => DescribeDBInstancesMessage$, () => DBInstanceMessage$
|
|
2613
|
-
];
|
|
2614
|
-
var DescribeDBSubnetGroups$ = [9, n0, _DDBSGe,
|
|
2615
|
-
0, () => DescribeDBSubnetGroupsMessage$, () => DBSubnetGroupMessage$
|
|
2616
|
-
];
|
|
2617
|
-
var DescribeEngineDefaultClusterParameters$ = [9, n0, _DEDCP,
|
|
2618
|
-
0, () => DescribeEngineDefaultClusterParametersMessage$, () => DescribeEngineDefaultClusterParametersResult$
|
|
2619
|
-
];
|
|
2620
|
-
var DescribeEventCategories$ = [9, n0, _DEC,
|
|
2621
|
-
0, () => DescribeEventCategoriesMessage$, () => EventCategoriesMessage$
|
|
2622
|
-
];
|
|
2623
|
-
var DescribeEvents$ = [9, n0, _DE,
|
|
2624
|
-
0, () => DescribeEventsMessage$, () => EventsMessage$
|
|
2625
|
-
];
|
|
2626
|
-
var DescribeEventSubscriptions$ = [9, n0, _DESe,
|
|
2627
|
-
0, () => DescribeEventSubscriptionsMessage$, () => EventSubscriptionsMessage$
|
|
2628
|
-
];
|
|
2629
|
-
var DescribeGlobalClusters$ = [9, n0, _DGCe,
|
|
2630
|
-
0, () => DescribeGlobalClustersMessage$, () => GlobalClustersMessage$
|
|
2631
|
-
];
|
|
2632
|
-
var DescribeOrderableDBInstanceOptions$ = [9, n0, _DODBIO,
|
|
2633
|
-
0, () => DescribeOrderableDBInstanceOptionsMessage$, () => OrderableDBInstanceOptionsMessage$
|
|
2634
|
-
];
|
|
2635
|
-
var DescribePendingMaintenanceActions$ = [9, n0, _DPMA,
|
|
2636
|
-
0, () => DescribePendingMaintenanceActionsMessage$, () => PendingMaintenanceActionsMessage$
|
|
2637
|
-
];
|
|
2638
|
-
var FailoverDBCluster$ = [9, n0, _FDBC,
|
|
2639
|
-
0, () => FailoverDBClusterMessage$, () => FailoverDBClusterResult$
|
|
2640
|
-
];
|
|
2641
|
-
var FailoverGlobalCluster$ = [9, n0, _FGC,
|
|
2642
|
-
0, () => FailoverGlobalClusterMessage$, () => FailoverGlobalClusterResult$
|
|
2643
|
-
];
|
|
2644
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2645
|
-
0, () => ListTagsForResourceMessage$, () => TagListMessage$
|
|
2646
|
-
];
|
|
2647
|
-
var ModifyDBCluster$ = [9, n0, _MDBC,
|
|
2648
|
-
0, () => ModifyDBClusterMessage$, () => ModifyDBClusterResult$
|
|
2649
|
-
];
|
|
2650
|
-
var ModifyDBClusterParameterGroup$ = [9, n0, _MDBCPG,
|
|
2651
|
-
0, () => ModifyDBClusterParameterGroupMessage$, () => DBClusterParameterGroupNameMessage$
|
|
2652
|
-
];
|
|
2653
|
-
var ModifyDBClusterSnapshotAttribute$ = [9, n0, _MDBCSA,
|
|
2654
|
-
0, () => ModifyDBClusterSnapshotAttributeMessage$, () => ModifyDBClusterSnapshotAttributeResult$
|
|
2655
|
-
];
|
|
2656
|
-
var ModifyDBInstance$ = [9, n0, _MDBI,
|
|
2657
|
-
0, () => ModifyDBInstanceMessage$, () => ModifyDBInstanceResult$
|
|
2658
|
-
];
|
|
2659
|
-
var ModifyDBSubnetGroup$ = [9, n0, _MDBSG,
|
|
2660
|
-
0, () => ModifyDBSubnetGroupMessage$, () => ModifyDBSubnetGroupResult$
|
|
2661
|
-
];
|
|
2662
|
-
var ModifyEventSubscription$ = [9, n0, _MES,
|
|
2663
|
-
0, () => ModifyEventSubscriptionMessage$, () => ModifyEventSubscriptionResult$
|
|
2664
|
-
];
|
|
2665
|
-
var ModifyGlobalCluster$ = [9, n0, _MGC,
|
|
2666
|
-
0, () => ModifyGlobalClusterMessage$, () => ModifyGlobalClusterResult$
|
|
2667
|
-
];
|
|
2668
|
-
var RebootDBInstance$ = [9, n0, _RDBI,
|
|
2669
|
-
0, () => RebootDBInstanceMessage$, () => RebootDBInstanceResult$
|
|
2670
|
-
];
|
|
2671
|
-
var RemoveFromGlobalCluster$ = [9, n0, _RFGC,
|
|
2672
|
-
0, () => RemoveFromGlobalClusterMessage$, () => RemoveFromGlobalClusterResult$
|
|
2673
|
-
];
|
|
2674
|
-
var RemoveSourceIdentifierFromSubscription$ = [9, n0, _RSIFS,
|
|
2675
|
-
0, () => RemoveSourceIdentifierFromSubscriptionMessage$, () => RemoveSourceIdentifierFromSubscriptionResult$
|
|
2676
|
-
];
|
|
2677
|
-
var RemoveTagsFromResource$ = [9, n0, _RTFR,
|
|
2678
|
-
0, () => RemoveTagsFromResourceMessage$, () => __Unit
|
|
2679
|
-
];
|
|
2680
|
-
var ResetDBClusterParameterGroup$ = [9, n0, _RDBCPG,
|
|
2681
|
-
0, () => ResetDBClusterParameterGroupMessage$, () => DBClusterParameterGroupNameMessage$
|
|
2682
|
-
];
|
|
2683
|
-
var RestoreDBClusterFromSnapshot$ = [9, n0, _RDBCFS,
|
|
2684
|
-
0, () => RestoreDBClusterFromSnapshotMessage$, () => RestoreDBClusterFromSnapshotResult$
|
|
2685
|
-
];
|
|
2686
|
-
var RestoreDBClusterToPointInTime$ = [9, n0, _RDBCTPIT,
|
|
2687
|
-
0, () => RestoreDBClusterToPointInTimeMessage$, () => RestoreDBClusterToPointInTimeResult$
|
|
2688
|
-
];
|
|
2689
|
-
var StartDBCluster$ = [9, n0, _SDBC,
|
|
2690
|
-
0, () => StartDBClusterMessage$, () => StartDBClusterResult$
|
|
2691
|
-
];
|
|
2692
|
-
var StopDBCluster$ = [9, n0, _SDBCt,
|
|
2693
|
-
0, () => StopDBClusterMessage$, () => StopDBClusterResult$
|
|
2694
|
-
];
|
|
2695
|
-
var SwitchoverGlobalCluster$ = [9, n0, _SGC,
|
|
2696
|
-
0, () => SwitchoverGlobalClusterMessage$, () => SwitchoverGlobalClusterResult$
|
|
2697
|
-
];
|
|
2698
|
-
|
|
2699
118
|
class AddSourceIdentifierToSubscriptionCommand extends smithyClient.Command
|
|
2700
119
|
.classBuilder()
|
|
2701
120
|
.ep(commonParams)
|
|
@@ -2704,7 +123,7 @@ class AddSourceIdentifierToSubscriptionCommand extends smithyClient.Command
|
|
|
2704
123
|
})
|
|
2705
124
|
.s("AmazonRDSv19", "AddSourceIdentifierToSubscription", {})
|
|
2706
125
|
.n("DocDBClient", "AddSourceIdentifierToSubscriptionCommand")
|
|
2707
|
-
.sc(AddSourceIdentifierToSubscription$)
|
|
126
|
+
.sc(schemas_0.AddSourceIdentifierToSubscription$)
|
|
2708
127
|
.build() {
|
|
2709
128
|
}
|
|
2710
129
|
|
|
@@ -2716,7 +135,7 @@ class AddTagsToResourceCommand extends smithyClient.Command
|
|
|
2716
135
|
})
|
|
2717
136
|
.s("AmazonRDSv19", "AddTagsToResource", {})
|
|
2718
137
|
.n("DocDBClient", "AddTagsToResourceCommand")
|
|
2719
|
-
.sc(AddTagsToResource$)
|
|
138
|
+
.sc(schemas_0.AddTagsToResource$)
|
|
2720
139
|
.build() {
|
|
2721
140
|
}
|
|
2722
141
|
|
|
@@ -2728,7 +147,7 @@ class ApplyPendingMaintenanceActionCommand extends smithyClient.Command
|
|
|
2728
147
|
})
|
|
2729
148
|
.s("AmazonRDSv19", "ApplyPendingMaintenanceAction", {})
|
|
2730
149
|
.n("DocDBClient", "ApplyPendingMaintenanceActionCommand")
|
|
2731
|
-
.sc(ApplyPendingMaintenanceAction$)
|
|
150
|
+
.sc(schemas_0.ApplyPendingMaintenanceAction$)
|
|
2732
151
|
.build() {
|
|
2733
152
|
}
|
|
2734
153
|
|
|
@@ -2740,7 +159,7 @@ class CopyDBClusterParameterGroupCommand extends smithyClient.Command
|
|
|
2740
159
|
})
|
|
2741
160
|
.s("AmazonRDSv19", "CopyDBClusterParameterGroup", {})
|
|
2742
161
|
.n("DocDBClient", "CopyDBClusterParameterGroupCommand")
|
|
2743
|
-
.sc(CopyDBClusterParameterGroup$)
|
|
162
|
+
.sc(schemas_0.CopyDBClusterParameterGroup$)
|
|
2744
163
|
.build() {
|
|
2745
164
|
}
|
|
2746
165
|
|
|
@@ -2755,7 +174,7 @@ class CopyDBClusterSnapshotCommand extends smithyClient.Command
|
|
|
2755
174
|
})
|
|
2756
175
|
.s("AmazonRDSv19", "CopyDBClusterSnapshot", {})
|
|
2757
176
|
.n("DocDBClient", "CopyDBClusterSnapshotCommand")
|
|
2758
|
-
.sc(CopyDBClusterSnapshot$)
|
|
177
|
+
.sc(schemas_0.CopyDBClusterSnapshot$)
|
|
2759
178
|
.build() {
|
|
2760
179
|
}
|
|
2761
180
|
|
|
@@ -2767,7 +186,7 @@ class CreateDBClusterCommand extends smithyClient.Command
|
|
|
2767
186
|
})
|
|
2768
187
|
.s("AmazonRDSv19", "CreateDBCluster", {})
|
|
2769
188
|
.n("DocDBClient", "CreateDBClusterCommand")
|
|
2770
|
-
.sc(CreateDBCluster$)
|
|
189
|
+
.sc(schemas_0.CreateDBCluster$)
|
|
2771
190
|
.build() {
|
|
2772
191
|
}
|
|
2773
192
|
|
|
@@ -2779,7 +198,7 @@ class CreateDBClusterParameterGroupCommand extends smithyClient.Command
|
|
|
2779
198
|
})
|
|
2780
199
|
.s("AmazonRDSv19", "CreateDBClusterParameterGroup", {})
|
|
2781
200
|
.n("DocDBClient", "CreateDBClusterParameterGroupCommand")
|
|
2782
|
-
.sc(CreateDBClusterParameterGroup$)
|
|
201
|
+
.sc(schemas_0.CreateDBClusterParameterGroup$)
|
|
2783
202
|
.build() {
|
|
2784
203
|
}
|
|
2785
204
|
|
|
@@ -2791,7 +210,7 @@ class CreateDBClusterSnapshotCommand extends smithyClient.Command
|
|
|
2791
210
|
})
|
|
2792
211
|
.s("AmazonRDSv19", "CreateDBClusterSnapshot", {})
|
|
2793
212
|
.n("DocDBClient", "CreateDBClusterSnapshotCommand")
|
|
2794
|
-
.sc(CreateDBClusterSnapshot$)
|
|
213
|
+
.sc(schemas_0.CreateDBClusterSnapshot$)
|
|
2795
214
|
.build() {
|
|
2796
215
|
}
|
|
2797
216
|
|
|
@@ -2803,7 +222,7 @@ class CreateDBInstanceCommand extends smithyClient.Command
|
|
|
2803
222
|
})
|
|
2804
223
|
.s("AmazonRDSv19", "CreateDBInstance", {})
|
|
2805
224
|
.n("DocDBClient", "CreateDBInstanceCommand")
|
|
2806
|
-
.sc(CreateDBInstance$)
|
|
225
|
+
.sc(schemas_0.CreateDBInstance$)
|
|
2807
226
|
.build() {
|
|
2808
227
|
}
|
|
2809
228
|
|
|
@@ -2815,7 +234,7 @@ class CreateDBSubnetGroupCommand extends smithyClient.Command
|
|
|
2815
234
|
})
|
|
2816
235
|
.s("AmazonRDSv19", "CreateDBSubnetGroup", {})
|
|
2817
236
|
.n("DocDBClient", "CreateDBSubnetGroupCommand")
|
|
2818
|
-
.sc(CreateDBSubnetGroup$)
|
|
237
|
+
.sc(schemas_0.CreateDBSubnetGroup$)
|
|
2819
238
|
.build() {
|
|
2820
239
|
}
|
|
2821
240
|
|
|
@@ -2827,7 +246,7 @@ class CreateEventSubscriptionCommand extends smithyClient.Command
|
|
|
2827
246
|
})
|
|
2828
247
|
.s("AmazonRDSv19", "CreateEventSubscription", {})
|
|
2829
248
|
.n("DocDBClient", "CreateEventSubscriptionCommand")
|
|
2830
|
-
.sc(CreateEventSubscription$)
|
|
249
|
+
.sc(schemas_0.CreateEventSubscription$)
|
|
2831
250
|
.build() {
|
|
2832
251
|
}
|
|
2833
252
|
|
|
@@ -2839,7 +258,7 @@ class CreateGlobalClusterCommand extends smithyClient.Command
|
|
|
2839
258
|
})
|
|
2840
259
|
.s("AmazonRDSv19", "CreateGlobalCluster", {})
|
|
2841
260
|
.n("DocDBClient", "CreateGlobalClusterCommand")
|
|
2842
|
-
.sc(CreateGlobalCluster$)
|
|
261
|
+
.sc(schemas_0.CreateGlobalCluster$)
|
|
2843
262
|
.build() {
|
|
2844
263
|
}
|
|
2845
264
|
|
|
@@ -2851,7 +270,7 @@ class DeleteDBClusterCommand extends smithyClient.Command
|
|
|
2851
270
|
})
|
|
2852
271
|
.s("AmazonRDSv19", "DeleteDBCluster", {})
|
|
2853
272
|
.n("DocDBClient", "DeleteDBClusterCommand")
|
|
2854
|
-
.sc(DeleteDBCluster$)
|
|
273
|
+
.sc(schemas_0.DeleteDBCluster$)
|
|
2855
274
|
.build() {
|
|
2856
275
|
}
|
|
2857
276
|
|
|
@@ -2863,7 +282,7 @@ class DeleteDBClusterParameterGroupCommand extends smithyClient.Command
|
|
|
2863
282
|
})
|
|
2864
283
|
.s("AmazonRDSv19", "DeleteDBClusterParameterGroup", {})
|
|
2865
284
|
.n("DocDBClient", "DeleteDBClusterParameterGroupCommand")
|
|
2866
|
-
.sc(DeleteDBClusterParameterGroup$)
|
|
285
|
+
.sc(schemas_0.DeleteDBClusterParameterGroup$)
|
|
2867
286
|
.build() {
|
|
2868
287
|
}
|
|
2869
288
|
|
|
@@ -2875,7 +294,7 @@ class DeleteDBClusterSnapshotCommand extends smithyClient.Command
|
|
|
2875
294
|
})
|
|
2876
295
|
.s("AmazonRDSv19", "DeleteDBClusterSnapshot", {})
|
|
2877
296
|
.n("DocDBClient", "DeleteDBClusterSnapshotCommand")
|
|
2878
|
-
.sc(DeleteDBClusterSnapshot$)
|
|
297
|
+
.sc(schemas_0.DeleteDBClusterSnapshot$)
|
|
2879
298
|
.build() {
|
|
2880
299
|
}
|
|
2881
300
|
|
|
@@ -2887,7 +306,7 @@ class DeleteDBInstanceCommand extends smithyClient.Command
|
|
|
2887
306
|
})
|
|
2888
307
|
.s("AmazonRDSv19", "DeleteDBInstance", {})
|
|
2889
308
|
.n("DocDBClient", "DeleteDBInstanceCommand")
|
|
2890
|
-
.sc(DeleteDBInstance$)
|
|
309
|
+
.sc(schemas_0.DeleteDBInstance$)
|
|
2891
310
|
.build() {
|
|
2892
311
|
}
|
|
2893
312
|
|
|
@@ -2899,7 +318,7 @@ class DeleteDBSubnetGroupCommand extends smithyClient.Command
|
|
|
2899
318
|
})
|
|
2900
319
|
.s("AmazonRDSv19", "DeleteDBSubnetGroup", {})
|
|
2901
320
|
.n("DocDBClient", "DeleteDBSubnetGroupCommand")
|
|
2902
|
-
.sc(DeleteDBSubnetGroup$)
|
|
321
|
+
.sc(schemas_0.DeleteDBSubnetGroup$)
|
|
2903
322
|
.build() {
|
|
2904
323
|
}
|
|
2905
324
|
|
|
@@ -2911,7 +330,7 @@ class DeleteEventSubscriptionCommand extends smithyClient.Command
|
|
|
2911
330
|
})
|
|
2912
331
|
.s("AmazonRDSv19", "DeleteEventSubscription", {})
|
|
2913
332
|
.n("DocDBClient", "DeleteEventSubscriptionCommand")
|
|
2914
|
-
.sc(DeleteEventSubscription$)
|
|
333
|
+
.sc(schemas_0.DeleteEventSubscription$)
|
|
2915
334
|
.build() {
|
|
2916
335
|
}
|
|
2917
336
|
|
|
@@ -2923,7 +342,7 @@ class DeleteGlobalClusterCommand extends smithyClient.Command
|
|
|
2923
342
|
})
|
|
2924
343
|
.s("AmazonRDSv19", "DeleteGlobalCluster", {})
|
|
2925
344
|
.n("DocDBClient", "DeleteGlobalClusterCommand")
|
|
2926
|
-
.sc(DeleteGlobalCluster$)
|
|
345
|
+
.sc(schemas_0.DeleteGlobalCluster$)
|
|
2927
346
|
.build() {
|
|
2928
347
|
}
|
|
2929
348
|
|
|
@@ -2935,7 +354,7 @@ class DescribeCertificatesCommand extends smithyClient.Command
|
|
|
2935
354
|
})
|
|
2936
355
|
.s("AmazonRDSv19", "DescribeCertificates", {})
|
|
2937
356
|
.n("DocDBClient", "DescribeCertificatesCommand")
|
|
2938
|
-
.sc(DescribeCertificates$)
|
|
357
|
+
.sc(schemas_0.DescribeCertificates$)
|
|
2939
358
|
.build() {
|
|
2940
359
|
}
|
|
2941
360
|
|
|
@@ -2947,7 +366,7 @@ class DescribeDBClusterParameterGroupsCommand extends smithyClient.Command
|
|
|
2947
366
|
})
|
|
2948
367
|
.s("AmazonRDSv19", "DescribeDBClusterParameterGroups", {})
|
|
2949
368
|
.n("DocDBClient", "DescribeDBClusterParameterGroupsCommand")
|
|
2950
|
-
.sc(DescribeDBClusterParameterGroups$)
|
|
369
|
+
.sc(schemas_0.DescribeDBClusterParameterGroups$)
|
|
2951
370
|
.build() {
|
|
2952
371
|
}
|
|
2953
372
|
|
|
@@ -2959,7 +378,7 @@ class DescribeDBClusterParametersCommand extends smithyClient.Command
|
|
|
2959
378
|
})
|
|
2960
379
|
.s("AmazonRDSv19", "DescribeDBClusterParameters", {})
|
|
2961
380
|
.n("DocDBClient", "DescribeDBClusterParametersCommand")
|
|
2962
|
-
.sc(DescribeDBClusterParameters$)
|
|
381
|
+
.sc(schemas_0.DescribeDBClusterParameters$)
|
|
2963
382
|
.build() {
|
|
2964
383
|
}
|
|
2965
384
|
|
|
@@ -2971,7 +390,7 @@ class DescribeDBClustersCommand extends smithyClient.Command
|
|
|
2971
390
|
})
|
|
2972
391
|
.s("AmazonRDSv19", "DescribeDBClusters", {})
|
|
2973
392
|
.n("DocDBClient", "DescribeDBClustersCommand")
|
|
2974
|
-
.sc(DescribeDBClusters$)
|
|
393
|
+
.sc(schemas_0.DescribeDBClusters$)
|
|
2975
394
|
.build() {
|
|
2976
395
|
}
|
|
2977
396
|
|
|
@@ -2983,7 +402,7 @@ class DescribeDBClusterSnapshotAttributesCommand extends smithyClient.Command
|
|
|
2983
402
|
})
|
|
2984
403
|
.s("AmazonRDSv19", "DescribeDBClusterSnapshotAttributes", {})
|
|
2985
404
|
.n("DocDBClient", "DescribeDBClusterSnapshotAttributesCommand")
|
|
2986
|
-
.sc(DescribeDBClusterSnapshotAttributes$)
|
|
405
|
+
.sc(schemas_0.DescribeDBClusterSnapshotAttributes$)
|
|
2987
406
|
.build() {
|
|
2988
407
|
}
|
|
2989
408
|
|
|
@@ -2995,7 +414,7 @@ class DescribeDBClusterSnapshotsCommand extends smithyClient.Command
|
|
|
2995
414
|
})
|
|
2996
415
|
.s("AmazonRDSv19", "DescribeDBClusterSnapshots", {})
|
|
2997
416
|
.n("DocDBClient", "DescribeDBClusterSnapshotsCommand")
|
|
2998
|
-
.sc(DescribeDBClusterSnapshots$)
|
|
417
|
+
.sc(schemas_0.DescribeDBClusterSnapshots$)
|
|
2999
418
|
.build() {
|
|
3000
419
|
}
|
|
3001
420
|
|
|
@@ -3007,7 +426,7 @@ class DescribeDBEngineVersionsCommand extends smithyClient.Command
|
|
|
3007
426
|
})
|
|
3008
427
|
.s("AmazonRDSv19", "DescribeDBEngineVersions", {})
|
|
3009
428
|
.n("DocDBClient", "DescribeDBEngineVersionsCommand")
|
|
3010
|
-
.sc(DescribeDBEngineVersions$)
|
|
429
|
+
.sc(schemas_0.DescribeDBEngineVersions$)
|
|
3011
430
|
.build() {
|
|
3012
431
|
}
|
|
3013
432
|
|
|
@@ -3019,7 +438,7 @@ class DescribeDBInstancesCommand extends smithyClient.Command
|
|
|
3019
438
|
})
|
|
3020
439
|
.s("AmazonRDSv19", "DescribeDBInstances", {})
|
|
3021
440
|
.n("DocDBClient", "DescribeDBInstancesCommand")
|
|
3022
|
-
.sc(DescribeDBInstances$)
|
|
441
|
+
.sc(schemas_0.DescribeDBInstances$)
|
|
3023
442
|
.build() {
|
|
3024
443
|
}
|
|
3025
444
|
|
|
@@ -3031,7 +450,7 @@ class DescribeDBSubnetGroupsCommand extends smithyClient.Command
|
|
|
3031
450
|
})
|
|
3032
451
|
.s("AmazonRDSv19", "DescribeDBSubnetGroups", {})
|
|
3033
452
|
.n("DocDBClient", "DescribeDBSubnetGroupsCommand")
|
|
3034
|
-
.sc(DescribeDBSubnetGroups$)
|
|
453
|
+
.sc(schemas_0.DescribeDBSubnetGroups$)
|
|
3035
454
|
.build() {
|
|
3036
455
|
}
|
|
3037
456
|
|
|
@@ -3043,7 +462,7 @@ class DescribeEngineDefaultClusterParametersCommand extends smithyClient.Command
|
|
|
3043
462
|
})
|
|
3044
463
|
.s("AmazonRDSv19", "DescribeEngineDefaultClusterParameters", {})
|
|
3045
464
|
.n("DocDBClient", "DescribeEngineDefaultClusterParametersCommand")
|
|
3046
|
-
.sc(DescribeEngineDefaultClusterParameters$)
|
|
465
|
+
.sc(schemas_0.DescribeEngineDefaultClusterParameters$)
|
|
3047
466
|
.build() {
|
|
3048
467
|
}
|
|
3049
468
|
|
|
@@ -3055,7 +474,7 @@ class DescribeEventCategoriesCommand extends smithyClient.Command
|
|
|
3055
474
|
})
|
|
3056
475
|
.s("AmazonRDSv19", "DescribeEventCategories", {})
|
|
3057
476
|
.n("DocDBClient", "DescribeEventCategoriesCommand")
|
|
3058
|
-
.sc(DescribeEventCategories$)
|
|
477
|
+
.sc(schemas_0.DescribeEventCategories$)
|
|
3059
478
|
.build() {
|
|
3060
479
|
}
|
|
3061
480
|
|
|
@@ -3067,7 +486,7 @@ class DescribeEventsCommand extends smithyClient.Command
|
|
|
3067
486
|
})
|
|
3068
487
|
.s("AmazonRDSv19", "DescribeEvents", {})
|
|
3069
488
|
.n("DocDBClient", "DescribeEventsCommand")
|
|
3070
|
-
.sc(DescribeEvents$)
|
|
489
|
+
.sc(schemas_0.DescribeEvents$)
|
|
3071
490
|
.build() {
|
|
3072
491
|
}
|
|
3073
492
|
|
|
@@ -3079,7 +498,7 @@ class DescribeEventSubscriptionsCommand extends smithyClient.Command
|
|
|
3079
498
|
})
|
|
3080
499
|
.s("AmazonRDSv19", "DescribeEventSubscriptions", {})
|
|
3081
500
|
.n("DocDBClient", "DescribeEventSubscriptionsCommand")
|
|
3082
|
-
.sc(DescribeEventSubscriptions$)
|
|
501
|
+
.sc(schemas_0.DescribeEventSubscriptions$)
|
|
3083
502
|
.build() {
|
|
3084
503
|
}
|
|
3085
504
|
|
|
@@ -3091,7 +510,7 @@ class DescribeGlobalClustersCommand extends smithyClient.Command
|
|
|
3091
510
|
})
|
|
3092
511
|
.s("AmazonRDSv19", "DescribeGlobalClusters", {})
|
|
3093
512
|
.n("DocDBClient", "DescribeGlobalClustersCommand")
|
|
3094
|
-
.sc(DescribeGlobalClusters$)
|
|
513
|
+
.sc(schemas_0.DescribeGlobalClusters$)
|
|
3095
514
|
.build() {
|
|
3096
515
|
}
|
|
3097
516
|
|
|
@@ -3103,7 +522,7 @@ class DescribeOrderableDBInstanceOptionsCommand extends smithyClient.Command
|
|
|
3103
522
|
})
|
|
3104
523
|
.s("AmazonRDSv19", "DescribeOrderableDBInstanceOptions", {})
|
|
3105
524
|
.n("DocDBClient", "DescribeOrderableDBInstanceOptionsCommand")
|
|
3106
|
-
.sc(DescribeOrderableDBInstanceOptions$)
|
|
525
|
+
.sc(schemas_0.DescribeOrderableDBInstanceOptions$)
|
|
3107
526
|
.build() {
|
|
3108
527
|
}
|
|
3109
528
|
|
|
@@ -3115,7 +534,7 @@ class DescribePendingMaintenanceActionsCommand extends smithyClient.Command
|
|
|
3115
534
|
})
|
|
3116
535
|
.s("AmazonRDSv19", "DescribePendingMaintenanceActions", {})
|
|
3117
536
|
.n("DocDBClient", "DescribePendingMaintenanceActionsCommand")
|
|
3118
|
-
.sc(DescribePendingMaintenanceActions$)
|
|
537
|
+
.sc(schemas_0.DescribePendingMaintenanceActions$)
|
|
3119
538
|
.build() {
|
|
3120
539
|
}
|
|
3121
540
|
|
|
@@ -3127,7 +546,7 @@ class FailoverDBClusterCommand extends smithyClient.Command
|
|
|
3127
546
|
})
|
|
3128
547
|
.s("AmazonRDSv19", "FailoverDBCluster", {})
|
|
3129
548
|
.n("DocDBClient", "FailoverDBClusterCommand")
|
|
3130
|
-
.sc(FailoverDBCluster$)
|
|
549
|
+
.sc(schemas_0.FailoverDBCluster$)
|
|
3131
550
|
.build() {
|
|
3132
551
|
}
|
|
3133
552
|
|
|
@@ -3139,7 +558,7 @@ class FailoverGlobalClusterCommand extends smithyClient.Command
|
|
|
3139
558
|
})
|
|
3140
559
|
.s("AmazonRDSv19", "FailoverGlobalCluster", {})
|
|
3141
560
|
.n("DocDBClient", "FailoverGlobalClusterCommand")
|
|
3142
|
-
.sc(FailoverGlobalCluster$)
|
|
561
|
+
.sc(schemas_0.FailoverGlobalCluster$)
|
|
3143
562
|
.build() {
|
|
3144
563
|
}
|
|
3145
564
|
|
|
@@ -3151,7 +570,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3151
570
|
})
|
|
3152
571
|
.s("AmazonRDSv19", "ListTagsForResource", {})
|
|
3153
572
|
.n("DocDBClient", "ListTagsForResourceCommand")
|
|
3154
|
-
.sc(ListTagsForResource$)
|
|
573
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3155
574
|
.build() {
|
|
3156
575
|
}
|
|
3157
576
|
|
|
@@ -3163,7 +582,7 @@ class ModifyDBClusterCommand extends smithyClient.Command
|
|
|
3163
582
|
})
|
|
3164
583
|
.s("AmazonRDSv19", "ModifyDBCluster", {})
|
|
3165
584
|
.n("DocDBClient", "ModifyDBClusterCommand")
|
|
3166
|
-
.sc(ModifyDBCluster$)
|
|
585
|
+
.sc(schemas_0.ModifyDBCluster$)
|
|
3167
586
|
.build() {
|
|
3168
587
|
}
|
|
3169
588
|
|
|
@@ -3175,7 +594,7 @@ class ModifyDBClusterParameterGroupCommand extends smithyClient.Command
|
|
|
3175
594
|
})
|
|
3176
595
|
.s("AmazonRDSv19", "ModifyDBClusterParameterGroup", {})
|
|
3177
596
|
.n("DocDBClient", "ModifyDBClusterParameterGroupCommand")
|
|
3178
|
-
.sc(ModifyDBClusterParameterGroup$)
|
|
597
|
+
.sc(schemas_0.ModifyDBClusterParameterGroup$)
|
|
3179
598
|
.build() {
|
|
3180
599
|
}
|
|
3181
600
|
|
|
@@ -3187,7 +606,7 @@ class ModifyDBClusterSnapshotAttributeCommand extends smithyClient.Command
|
|
|
3187
606
|
})
|
|
3188
607
|
.s("AmazonRDSv19", "ModifyDBClusterSnapshotAttribute", {})
|
|
3189
608
|
.n("DocDBClient", "ModifyDBClusterSnapshotAttributeCommand")
|
|
3190
|
-
.sc(ModifyDBClusterSnapshotAttribute$)
|
|
609
|
+
.sc(schemas_0.ModifyDBClusterSnapshotAttribute$)
|
|
3191
610
|
.build() {
|
|
3192
611
|
}
|
|
3193
612
|
|
|
@@ -3199,7 +618,7 @@ class ModifyDBInstanceCommand extends smithyClient.Command
|
|
|
3199
618
|
})
|
|
3200
619
|
.s("AmazonRDSv19", "ModifyDBInstance", {})
|
|
3201
620
|
.n("DocDBClient", "ModifyDBInstanceCommand")
|
|
3202
|
-
.sc(ModifyDBInstance$)
|
|
621
|
+
.sc(schemas_0.ModifyDBInstance$)
|
|
3203
622
|
.build() {
|
|
3204
623
|
}
|
|
3205
624
|
|
|
@@ -3211,7 +630,7 @@ class ModifyDBSubnetGroupCommand extends smithyClient.Command
|
|
|
3211
630
|
})
|
|
3212
631
|
.s("AmazonRDSv19", "ModifyDBSubnetGroup", {})
|
|
3213
632
|
.n("DocDBClient", "ModifyDBSubnetGroupCommand")
|
|
3214
|
-
.sc(ModifyDBSubnetGroup$)
|
|
633
|
+
.sc(schemas_0.ModifyDBSubnetGroup$)
|
|
3215
634
|
.build() {
|
|
3216
635
|
}
|
|
3217
636
|
|
|
@@ -3223,7 +642,7 @@ class ModifyEventSubscriptionCommand extends smithyClient.Command
|
|
|
3223
642
|
})
|
|
3224
643
|
.s("AmazonRDSv19", "ModifyEventSubscription", {})
|
|
3225
644
|
.n("DocDBClient", "ModifyEventSubscriptionCommand")
|
|
3226
|
-
.sc(ModifyEventSubscription$)
|
|
645
|
+
.sc(schemas_0.ModifyEventSubscription$)
|
|
3227
646
|
.build() {
|
|
3228
647
|
}
|
|
3229
648
|
|
|
@@ -3235,7 +654,7 @@ class ModifyGlobalClusterCommand extends smithyClient.Command
|
|
|
3235
654
|
})
|
|
3236
655
|
.s("AmazonRDSv19", "ModifyGlobalCluster", {})
|
|
3237
656
|
.n("DocDBClient", "ModifyGlobalClusterCommand")
|
|
3238
|
-
.sc(ModifyGlobalCluster$)
|
|
657
|
+
.sc(schemas_0.ModifyGlobalCluster$)
|
|
3239
658
|
.build() {
|
|
3240
659
|
}
|
|
3241
660
|
|
|
@@ -3247,7 +666,7 @@ class RebootDBInstanceCommand extends smithyClient.Command
|
|
|
3247
666
|
})
|
|
3248
667
|
.s("AmazonRDSv19", "RebootDBInstance", {})
|
|
3249
668
|
.n("DocDBClient", "RebootDBInstanceCommand")
|
|
3250
|
-
.sc(RebootDBInstance$)
|
|
669
|
+
.sc(schemas_0.RebootDBInstance$)
|
|
3251
670
|
.build() {
|
|
3252
671
|
}
|
|
3253
672
|
|
|
@@ -3259,7 +678,7 @@ class RemoveFromGlobalClusterCommand extends smithyClient.Command
|
|
|
3259
678
|
})
|
|
3260
679
|
.s("AmazonRDSv19", "RemoveFromGlobalCluster", {})
|
|
3261
680
|
.n("DocDBClient", "RemoveFromGlobalClusterCommand")
|
|
3262
|
-
.sc(RemoveFromGlobalCluster$)
|
|
681
|
+
.sc(schemas_0.RemoveFromGlobalCluster$)
|
|
3263
682
|
.build() {
|
|
3264
683
|
}
|
|
3265
684
|
|
|
@@ -3271,7 +690,7 @@ class RemoveSourceIdentifierFromSubscriptionCommand extends smithyClient.Command
|
|
|
3271
690
|
})
|
|
3272
691
|
.s("AmazonRDSv19", "RemoveSourceIdentifierFromSubscription", {})
|
|
3273
692
|
.n("DocDBClient", "RemoveSourceIdentifierFromSubscriptionCommand")
|
|
3274
|
-
.sc(RemoveSourceIdentifierFromSubscription$)
|
|
693
|
+
.sc(schemas_0.RemoveSourceIdentifierFromSubscription$)
|
|
3275
694
|
.build() {
|
|
3276
695
|
}
|
|
3277
696
|
|
|
@@ -3283,7 +702,7 @@ class RemoveTagsFromResourceCommand extends smithyClient.Command
|
|
|
3283
702
|
})
|
|
3284
703
|
.s("AmazonRDSv19", "RemoveTagsFromResource", {})
|
|
3285
704
|
.n("DocDBClient", "RemoveTagsFromResourceCommand")
|
|
3286
|
-
.sc(RemoveTagsFromResource$)
|
|
705
|
+
.sc(schemas_0.RemoveTagsFromResource$)
|
|
3287
706
|
.build() {
|
|
3288
707
|
}
|
|
3289
708
|
|
|
@@ -3295,7 +714,7 @@ class ResetDBClusterParameterGroupCommand extends smithyClient.Command
|
|
|
3295
714
|
})
|
|
3296
715
|
.s("AmazonRDSv19", "ResetDBClusterParameterGroup", {})
|
|
3297
716
|
.n("DocDBClient", "ResetDBClusterParameterGroupCommand")
|
|
3298
|
-
.sc(ResetDBClusterParameterGroup$)
|
|
717
|
+
.sc(schemas_0.ResetDBClusterParameterGroup$)
|
|
3299
718
|
.build() {
|
|
3300
719
|
}
|
|
3301
720
|
|
|
@@ -3307,7 +726,7 @@ class RestoreDBClusterFromSnapshotCommand extends smithyClient.Command
|
|
|
3307
726
|
})
|
|
3308
727
|
.s("AmazonRDSv19", "RestoreDBClusterFromSnapshot", {})
|
|
3309
728
|
.n("DocDBClient", "RestoreDBClusterFromSnapshotCommand")
|
|
3310
|
-
.sc(RestoreDBClusterFromSnapshot$)
|
|
729
|
+
.sc(schemas_0.RestoreDBClusterFromSnapshot$)
|
|
3311
730
|
.build() {
|
|
3312
731
|
}
|
|
3313
732
|
|
|
@@ -3319,7 +738,7 @@ class RestoreDBClusterToPointInTimeCommand extends smithyClient.Command
|
|
|
3319
738
|
})
|
|
3320
739
|
.s("AmazonRDSv19", "RestoreDBClusterToPointInTime", {})
|
|
3321
740
|
.n("DocDBClient", "RestoreDBClusterToPointInTimeCommand")
|
|
3322
|
-
.sc(RestoreDBClusterToPointInTime$)
|
|
741
|
+
.sc(schemas_0.RestoreDBClusterToPointInTime$)
|
|
3323
742
|
.build() {
|
|
3324
743
|
}
|
|
3325
744
|
|
|
@@ -3331,7 +750,7 @@ class StartDBClusterCommand extends smithyClient.Command
|
|
|
3331
750
|
})
|
|
3332
751
|
.s("AmazonRDSv19", "StartDBCluster", {})
|
|
3333
752
|
.n("DocDBClient", "StartDBClusterCommand")
|
|
3334
|
-
.sc(StartDBCluster$)
|
|
753
|
+
.sc(schemas_0.StartDBCluster$)
|
|
3335
754
|
.build() {
|
|
3336
755
|
}
|
|
3337
756
|
|
|
@@ -3343,7 +762,7 @@ class StopDBClusterCommand extends smithyClient.Command
|
|
|
3343
762
|
})
|
|
3344
763
|
.s("AmazonRDSv19", "StopDBCluster", {})
|
|
3345
764
|
.n("DocDBClient", "StopDBClusterCommand")
|
|
3346
|
-
.sc(StopDBCluster$)
|
|
765
|
+
.sc(schemas_0.StopDBCluster$)
|
|
3347
766
|
.build() {
|
|
3348
767
|
}
|
|
3349
768
|
|
|
@@ -3355,7 +774,7 @@ class SwitchoverGlobalClusterCommand extends smithyClient.Command
|
|
|
3355
774
|
})
|
|
3356
775
|
.s("AmazonRDSv19", "SwitchoverGlobalCluster", {})
|
|
3357
776
|
.n("DocDBClient", "SwitchoverGlobalClusterCommand")
|
|
3358
|
-
.sc(SwitchoverGlobalCluster$)
|
|
777
|
+
.sc(schemas_0.SwitchoverGlobalCluster$)
|
|
3359
778
|
.build() {
|
|
3360
779
|
}
|
|
3361
780
|
|
|
@@ -3709,383 +1128,71 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3709
1128
|
enumerable: true,
|
|
3710
1129
|
get: function () { return smithyClient.Client; }
|
|
3711
1130
|
});
|
|
3712
|
-
exports
|
|
1131
|
+
Object.defineProperty(exports, "DocDBServiceException", {
|
|
1132
|
+
enumerable: true,
|
|
1133
|
+
get: function () { return DocDBServiceException.DocDBServiceException; }
|
|
1134
|
+
});
|
|
3713
1135
|
exports.AddSourceIdentifierToSubscriptionCommand = AddSourceIdentifierToSubscriptionCommand;
|
|
3714
|
-
exports.AddSourceIdentifierToSubscriptionMessage$ = AddSourceIdentifierToSubscriptionMessage$;
|
|
3715
|
-
exports.AddSourceIdentifierToSubscriptionResult$ = AddSourceIdentifierToSubscriptionResult$;
|
|
3716
|
-
exports.AddTagsToResource$ = AddTagsToResource$;
|
|
3717
1136
|
exports.AddTagsToResourceCommand = AddTagsToResourceCommand;
|
|
3718
|
-
exports.AddTagsToResourceMessage$ = AddTagsToResourceMessage$;
|
|
3719
1137
|
exports.ApplyMethod = ApplyMethod;
|
|
3720
|
-
exports.ApplyPendingMaintenanceAction$ = ApplyPendingMaintenanceAction$;
|
|
3721
1138
|
exports.ApplyPendingMaintenanceActionCommand = ApplyPendingMaintenanceActionCommand;
|
|
3722
|
-
exports.ApplyPendingMaintenanceActionMessage$ = ApplyPendingMaintenanceActionMessage$;
|
|
3723
|
-
exports.ApplyPendingMaintenanceActionResult$ = ApplyPendingMaintenanceActionResult$;
|
|
3724
|
-
exports.AuthorizationNotFoundFault = AuthorizationNotFoundFault;
|
|
3725
|
-
exports.AuthorizationNotFoundFault$ = AuthorizationNotFoundFault$;
|
|
3726
|
-
exports.AvailabilityZone$ = AvailabilityZone$;
|
|
3727
|
-
exports.Certificate$ = Certificate$;
|
|
3728
|
-
exports.CertificateDetails$ = CertificateDetails$;
|
|
3729
|
-
exports.CertificateMessage$ = CertificateMessage$;
|
|
3730
|
-
exports.CertificateNotFoundFault = CertificateNotFoundFault;
|
|
3731
|
-
exports.CertificateNotFoundFault$ = CertificateNotFoundFault$;
|
|
3732
|
-
exports.CloudwatchLogsExportConfiguration$ = CloudwatchLogsExportConfiguration$;
|
|
3733
|
-
exports.ClusterMasterUserSecret$ = ClusterMasterUserSecret$;
|
|
3734
|
-
exports.CopyDBClusterParameterGroup$ = CopyDBClusterParameterGroup$;
|
|
3735
1139
|
exports.CopyDBClusterParameterGroupCommand = CopyDBClusterParameterGroupCommand;
|
|
3736
|
-
exports.CopyDBClusterParameterGroupMessage$ = CopyDBClusterParameterGroupMessage$;
|
|
3737
|
-
exports.CopyDBClusterParameterGroupResult$ = CopyDBClusterParameterGroupResult$;
|
|
3738
|
-
exports.CopyDBClusterSnapshot$ = CopyDBClusterSnapshot$;
|
|
3739
1140
|
exports.CopyDBClusterSnapshotCommand = CopyDBClusterSnapshotCommand;
|
|
3740
|
-
exports.CopyDBClusterSnapshotMessage$ = CopyDBClusterSnapshotMessage$;
|
|
3741
|
-
exports.CopyDBClusterSnapshotResult$ = CopyDBClusterSnapshotResult$;
|
|
3742
|
-
exports.CreateDBCluster$ = CreateDBCluster$;
|
|
3743
1141
|
exports.CreateDBClusterCommand = CreateDBClusterCommand;
|
|
3744
|
-
exports.CreateDBClusterMessage$ = CreateDBClusterMessage$;
|
|
3745
|
-
exports.CreateDBClusterParameterGroup$ = CreateDBClusterParameterGroup$;
|
|
3746
1142
|
exports.CreateDBClusterParameterGroupCommand = CreateDBClusterParameterGroupCommand;
|
|
3747
|
-
exports.CreateDBClusterParameterGroupMessage$ = CreateDBClusterParameterGroupMessage$;
|
|
3748
|
-
exports.CreateDBClusterParameterGroupResult$ = CreateDBClusterParameterGroupResult$;
|
|
3749
|
-
exports.CreateDBClusterResult$ = CreateDBClusterResult$;
|
|
3750
|
-
exports.CreateDBClusterSnapshot$ = CreateDBClusterSnapshot$;
|
|
3751
1143
|
exports.CreateDBClusterSnapshotCommand = CreateDBClusterSnapshotCommand;
|
|
3752
|
-
exports.CreateDBClusterSnapshotMessage$ = CreateDBClusterSnapshotMessage$;
|
|
3753
|
-
exports.CreateDBClusterSnapshotResult$ = CreateDBClusterSnapshotResult$;
|
|
3754
|
-
exports.CreateDBInstance$ = CreateDBInstance$;
|
|
3755
1144
|
exports.CreateDBInstanceCommand = CreateDBInstanceCommand;
|
|
3756
|
-
exports.CreateDBInstanceMessage$ = CreateDBInstanceMessage$;
|
|
3757
|
-
exports.CreateDBInstanceResult$ = CreateDBInstanceResult$;
|
|
3758
|
-
exports.CreateDBSubnetGroup$ = CreateDBSubnetGroup$;
|
|
3759
1145
|
exports.CreateDBSubnetGroupCommand = CreateDBSubnetGroupCommand;
|
|
3760
|
-
exports.CreateDBSubnetGroupMessage$ = CreateDBSubnetGroupMessage$;
|
|
3761
|
-
exports.CreateDBSubnetGroupResult$ = CreateDBSubnetGroupResult$;
|
|
3762
|
-
exports.CreateEventSubscription$ = CreateEventSubscription$;
|
|
3763
1146
|
exports.CreateEventSubscriptionCommand = CreateEventSubscriptionCommand;
|
|
3764
|
-
exports.CreateEventSubscriptionMessage$ = CreateEventSubscriptionMessage$;
|
|
3765
|
-
exports.CreateEventSubscriptionResult$ = CreateEventSubscriptionResult$;
|
|
3766
|
-
exports.CreateGlobalCluster$ = CreateGlobalCluster$;
|
|
3767
1147
|
exports.CreateGlobalClusterCommand = CreateGlobalClusterCommand;
|
|
3768
|
-
exports.CreateGlobalClusterMessage$ = CreateGlobalClusterMessage$;
|
|
3769
|
-
exports.CreateGlobalClusterResult$ = CreateGlobalClusterResult$;
|
|
3770
|
-
exports.DBCluster$ = DBCluster$;
|
|
3771
|
-
exports.DBClusterAlreadyExistsFault = DBClusterAlreadyExistsFault;
|
|
3772
|
-
exports.DBClusterAlreadyExistsFault$ = DBClusterAlreadyExistsFault$;
|
|
3773
|
-
exports.DBClusterMember$ = DBClusterMember$;
|
|
3774
|
-
exports.DBClusterMessage$ = DBClusterMessage$;
|
|
3775
|
-
exports.DBClusterNotFoundFault = DBClusterNotFoundFault;
|
|
3776
|
-
exports.DBClusterNotFoundFault$ = DBClusterNotFoundFault$;
|
|
3777
|
-
exports.DBClusterParameterGroup$ = DBClusterParameterGroup$;
|
|
3778
|
-
exports.DBClusterParameterGroupDetails$ = DBClusterParameterGroupDetails$;
|
|
3779
|
-
exports.DBClusterParameterGroupNameMessage$ = DBClusterParameterGroupNameMessage$;
|
|
3780
|
-
exports.DBClusterParameterGroupNotFoundFault = DBClusterParameterGroupNotFoundFault;
|
|
3781
|
-
exports.DBClusterParameterGroupNotFoundFault$ = DBClusterParameterGroupNotFoundFault$;
|
|
3782
|
-
exports.DBClusterParameterGroupsMessage$ = DBClusterParameterGroupsMessage$;
|
|
3783
|
-
exports.DBClusterQuotaExceededFault = DBClusterQuotaExceededFault;
|
|
3784
|
-
exports.DBClusterQuotaExceededFault$ = DBClusterQuotaExceededFault$;
|
|
3785
|
-
exports.DBClusterRole$ = DBClusterRole$;
|
|
3786
|
-
exports.DBClusterSnapshot$ = DBClusterSnapshot$;
|
|
3787
|
-
exports.DBClusterSnapshotAlreadyExistsFault = DBClusterSnapshotAlreadyExistsFault;
|
|
3788
|
-
exports.DBClusterSnapshotAlreadyExistsFault$ = DBClusterSnapshotAlreadyExistsFault$;
|
|
3789
|
-
exports.DBClusterSnapshotAttribute$ = DBClusterSnapshotAttribute$;
|
|
3790
|
-
exports.DBClusterSnapshotAttributesResult$ = DBClusterSnapshotAttributesResult$;
|
|
3791
|
-
exports.DBClusterSnapshotMessage$ = DBClusterSnapshotMessage$;
|
|
3792
|
-
exports.DBClusterSnapshotNotFoundFault = DBClusterSnapshotNotFoundFault;
|
|
3793
|
-
exports.DBClusterSnapshotNotFoundFault$ = DBClusterSnapshotNotFoundFault$;
|
|
3794
|
-
exports.DBEngineVersion$ = DBEngineVersion$;
|
|
3795
|
-
exports.DBEngineVersionMessage$ = DBEngineVersionMessage$;
|
|
3796
|
-
exports.DBInstance$ = DBInstance$;
|
|
3797
|
-
exports.DBInstanceAlreadyExistsFault = DBInstanceAlreadyExistsFault;
|
|
3798
|
-
exports.DBInstanceAlreadyExistsFault$ = DBInstanceAlreadyExistsFault$;
|
|
3799
|
-
exports.DBInstanceMessage$ = DBInstanceMessage$;
|
|
3800
|
-
exports.DBInstanceNotFoundFault = DBInstanceNotFoundFault;
|
|
3801
|
-
exports.DBInstanceNotFoundFault$ = DBInstanceNotFoundFault$;
|
|
3802
|
-
exports.DBInstanceStatusInfo$ = DBInstanceStatusInfo$;
|
|
3803
|
-
exports.DBParameterGroupAlreadyExistsFault = DBParameterGroupAlreadyExistsFault;
|
|
3804
|
-
exports.DBParameterGroupAlreadyExistsFault$ = DBParameterGroupAlreadyExistsFault$;
|
|
3805
|
-
exports.DBParameterGroupNotFoundFault = DBParameterGroupNotFoundFault;
|
|
3806
|
-
exports.DBParameterGroupNotFoundFault$ = DBParameterGroupNotFoundFault$;
|
|
3807
|
-
exports.DBParameterGroupQuotaExceededFault = DBParameterGroupQuotaExceededFault;
|
|
3808
|
-
exports.DBParameterGroupQuotaExceededFault$ = DBParameterGroupQuotaExceededFault$;
|
|
3809
|
-
exports.DBSecurityGroupNotFoundFault = DBSecurityGroupNotFoundFault;
|
|
3810
|
-
exports.DBSecurityGroupNotFoundFault$ = DBSecurityGroupNotFoundFault$;
|
|
3811
|
-
exports.DBSnapshotAlreadyExistsFault = DBSnapshotAlreadyExistsFault;
|
|
3812
|
-
exports.DBSnapshotAlreadyExistsFault$ = DBSnapshotAlreadyExistsFault$;
|
|
3813
|
-
exports.DBSnapshotNotFoundFault = DBSnapshotNotFoundFault;
|
|
3814
|
-
exports.DBSnapshotNotFoundFault$ = DBSnapshotNotFoundFault$;
|
|
3815
|
-
exports.DBSubnetGroup$ = DBSubnetGroup$;
|
|
3816
|
-
exports.DBSubnetGroupAlreadyExistsFault = DBSubnetGroupAlreadyExistsFault;
|
|
3817
|
-
exports.DBSubnetGroupAlreadyExistsFault$ = DBSubnetGroupAlreadyExistsFault$;
|
|
3818
|
-
exports.DBSubnetGroupDoesNotCoverEnoughAZs = DBSubnetGroupDoesNotCoverEnoughAZs;
|
|
3819
|
-
exports.DBSubnetGroupDoesNotCoverEnoughAZs$ = DBSubnetGroupDoesNotCoverEnoughAZs$;
|
|
3820
|
-
exports.DBSubnetGroupMessage$ = DBSubnetGroupMessage$;
|
|
3821
|
-
exports.DBSubnetGroupNotFoundFault = DBSubnetGroupNotFoundFault;
|
|
3822
|
-
exports.DBSubnetGroupNotFoundFault$ = DBSubnetGroupNotFoundFault$;
|
|
3823
|
-
exports.DBSubnetGroupQuotaExceededFault = DBSubnetGroupQuotaExceededFault;
|
|
3824
|
-
exports.DBSubnetGroupQuotaExceededFault$ = DBSubnetGroupQuotaExceededFault$;
|
|
3825
|
-
exports.DBSubnetQuotaExceededFault = DBSubnetQuotaExceededFault;
|
|
3826
|
-
exports.DBSubnetQuotaExceededFault$ = DBSubnetQuotaExceededFault$;
|
|
3827
|
-
exports.DBUpgradeDependencyFailureFault = DBUpgradeDependencyFailureFault;
|
|
3828
|
-
exports.DBUpgradeDependencyFailureFault$ = DBUpgradeDependencyFailureFault$;
|
|
3829
|
-
exports.DeleteDBCluster$ = DeleteDBCluster$;
|
|
3830
1148
|
exports.DeleteDBClusterCommand = DeleteDBClusterCommand;
|
|
3831
|
-
exports.DeleteDBClusterMessage$ = DeleteDBClusterMessage$;
|
|
3832
|
-
exports.DeleteDBClusterParameterGroup$ = DeleteDBClusterParameterGroup$;
|
|
3833
1149
|
exports.DeleteDBClusterParameterGroupCommand = DeleteDBClusterParameterGroupCommand;
|
|
3834
|
-
exports.DeleteDBClusterParameterGroupMessage$ = DeleteDBClusterParameterGroupMessage$;
|
|
3835
|
-
exports.DeleteDBClusterResult$ = DeleteDBClusterResult$;
|
|
3836
|
-
exports.DeleteDBClusterSnapshot$ = DeleteDBClusterSnapshot$;
|
|
3837
1150
|
exports.DeleteDBClusterSnapshotCommand = DeleteDBClusterSnapshotCommand;
|
|
3838
|
-
exports.DeleteDBClusterSnapshotMessage$ = DeleteDBClusterSnapshotMessage$;
|
|
3839
|
-
exports.DeleteDBClusterSnapshotResult$ = DeleteDBClusterSnapshotResult$;
|
|
3840
|
-
exports.DeleteDBInstance$ = DeleteDBInstance$;
|
|
3841
1151
|
exports.DeleteDBInstanceCommand = DeleteDBInstanceCommand;
|
|
3842
|
-
exports.DeleteDBInstanceMessage$ = DeleteDBInstanceMessage$;
|
|
3843
|
-
exports.DeleteDBInstanceResult$ = DeleteDBInstanceResult$;
|
|
3844
|
-
exports.DeleteDBSubnetGroup$ = DeleteDBSubnetGroup$;
|
|
3845
1152
|
exports.DeleteDBSubnetGroupCommand = DeleteDBSubnetGroupCommand;
|
|
3846
|
-
exports.DeleteDBSubnetGroupMessage$ = DeleteDBSubnetGroupMessage$;
|
|
3847
|
-
exports.DeleteEventSubscription$ = DeleteEventSubscription$;
|
|
3848
1153
|
exports.DeleteEventSubscriptionCommand = DeleteEventSubscriptionCommand;
|
|
3849
|
-
exports.DeleteEventSubscriptionMessage$ = DeleteEventSubscriptionMessage$;
|
|
3850
|
-
exports.DeleteEventSubscriptionResult$ = DeleteEventSubscriptionResult$;
|
|
3851
|
-
exports.DeleteGlobalCluster$ = DeleteGlobalCluster$;
|
|
3852
1154
|
exports.DeleteGlobalClusterCommand = DeleteGlobalClusterCommand;
|
|
3853
|
-
exports.DeleteGlobalClusterMessage$ = DeleteGlobalClusterMessage$;
|
|
3854
|
-
exports.DeleteGlobalClusterResult$ = DeleteGlobalClusterResult$;
|
|
3855
|
-
exports.DescribeCertificates$ = DescribeCertificates$;
|
|
3856
1155
|
exports.DescribeCertificatesCommand = DescribeCertificatesCommand;
|
|
3857
|
-
exports.DescribeCertificatesMessage$ = DescribeCertificatesMessage$;
|
|
3858
|
-
exports.DescribeDBClusterParameterGroups$ = DescribeDBClusterParameterGroups$;
|
|
3859
1156
|
exports.DescribeDBClusterParameterGroupsCommand = DescribeDBClusterParameterGroupsCommand;
|
|
3860
|
-
exports.DescribeDBClusterParameterGroupsMessage$ = DescribeDBClusterParameterGroupsMessage$;
|
|
3861
|
-
exports.DescribeDBClusterParameters$ = DescribeDBClusterParameters$;
|
|
3862
1157
|
exports.DescribeDBClusterParametersCommand = DescribeDBClusterParametersCommand;
|
|
3863
|
-
exports.DescribeDBClusterParametersMessage$ = DescribeDBClusterParametersMessage$;
|
|
3864
|
-
exports.DescribeDBClusterSnapshotAttributes$ = DescribeDBClusterSnapshotAttributes$;
|
|
3865
1158
|
exports.DescribeDBClusterSnapshotAttributesCommand = DescribeDBClusterSnapshotAttributesCommand;
|
|
3866
|
-
exports.DescribeDBClusterSnapshotAttributesMessage$ = DescribeDBClusterSnapshotAttributesMessage$;
|
|
3867
|
-
exports.DescribeDBClusterSnapshotAttributesResult$ = DescribeDBClusterSnapshotAttributesResult$;
|
|
3868
|
-
exports.DescribeDBClusterSnapshots$ = DescribeDBClusterSnapshots$;
|
|
3869
1159
|
exports.DescribeDBClusterSnapshotsCommand = DescribeDBClusterSnapshotsCommand;
|
|
3870
|
-
exports.DescribeDBClusterSnapshotsMessage$ = DescribeDBClusterSnapshotsMessage$;
|
|
3871
|
-
exports.DescribeDBClusters$ = DescribeDBClusters$;
|
|
3872
1160
|
exports.DescribeDBClustersCommand = DescribeDBClustersCommand;
|
|
3873
|
-
exports.DescribeDBClustersMessage$ = DescribeDBClustersMessage$;
|
|
3874
|
-
exports.DescribeDBEngineVersions$ = DescribeDBEngineVersions$;
|
|
3875
1161
|
exports.DescribeDBEngineVersionsCommand = DescribeDBEngineVersionsCommand;
|
|
3876
|
-
exports.DescribeDBEngineVersionsMessage$ = DescribeDBEngineVersionsMessage$;
|
|
3877
|
-
exports.DescribeDBInstances$ = DescribeDBInstances$;
|
|
3878
1162
|
exports.DescribeDBInstancesCommand = DescribeDBInstancesCommand;
|
|
3879
|
-
exports.DescribeDBInstancesMessage$ = DescribeDBInstancesMessage$;
|
|
3880
|
-
exports.DescribeDBSubnetGroups$ = DescribeDBSubnetGroups$;
|
|
3881
1163
|
exports.DescribeDBSubnetGroupsCommand = DescribeDBSubnetGroupsCommand;
|
|
3882
|
-
exports.DescribeDBSubnetGroupsMessage$ = DescribeDBSubnetGroupsMessage$;
|
|
3883
|
-
exports.DescribeEngineDefaultClusterParameters$ = DescribeEngineDefaultClusterParameters$;
|
|
3884
1164
|
exports.DescribeEngineDefaultClusterParametersCommand = DescribeEngineDefaultClusterParametersCommand;
|
|
3885
|
-
exports.DescribeEngineDefaultClusterParametersMessage$ = DescribeEngineDefaultClusterParametersMessage$;
|
|
3886
|
-
exports.DescribeEngineDefaultClusterParametersResult$ = DescribeEngineDefaultClusterParametersResult$;
|
|
3887
|
-
exports.DescribeEventCategories$ = DescribeEventCategories$;
|
|
3888
1165
|
exports.DescribeEventCategoriesCommand = DescribeEventCategoriesCommand;
|
|
3889
|
-
exports.DescribeEventCategoriesMessage$ = DescribeEventCategoriesMessage$;
|
|
3890
|
-
exports.DescribeEventSubscriptions$ = DescribeEventSubscriptions$;
|
|
3891
1166
|
exports.DescribeEventSubscriptionsCommand = DescribeEventSubscriptionsCommand;
|
|
3892
|
-
exports.DescribeEventSubscriptionsMessage$ = DescribeEventSubscriptionsMessage$;
|
|
3893
|
-
exports.DescribeEvents$ = DescribeEvents$;
|
|
3894
1167
|
exports.DescribeEventsCommand = DescribeEventsCommand;
|
|
3895
|
-
exports.DescribeEventsMessage$ = DescribeEventsMessage$;
|
|
3896
|
-
exports.DescribeGlobalClusters$ = DescribeGlobalClusters$;
|
|
3897
1168
|
exports.DescribeGlobalClustersCommand = DescribeGlobalClustersCommand;
|
|
3898
|
-
exports.DescribeGlobalClustersMessage$ = DescribeGlobalClustersMessage$;
|
|
3899
|
-
exports.DescribeOrderableDBInstanceOptions$ = DescribeOrderableDBInstanceOptions$;
|
|
3900
1169
|
exports.DescribeOrderableDBInstanceOptionsCommand = DescribeOrderableDBInstanceOptionsCommand;
|
|
3901
|
-
exports.DescribeOrderableDBInstanceOptionsMessage$ = DescribeOrderableDBInstanceOptionsMessage$;
|
|
3902
|
-
exports.DescribePendingMaintenanceActions$ = DescribePendingMaintenanceActions$;
|
|
3903
1170
|
exports.DescribePendingMaintenanceActionsCommand = DescribePendingMaintenanceActionsCommand;
|
|
3904
|
-
exports.DescribePendingMaintenanceActionsMessage$ = DescribePendingMaintenanceActionsMessage$;
|
|
3905
1171
|
exports.DocDB = DocDB;
|
|
3906
1172
|
exports.DocDBClient = DocDBClient;
|
|
3907
|
-
exports.DocDBServiceException = DocDBServiceException;
|
|
3908
|
-
exports.DocDBServiceException$ = DocDBServiceException$;
|
|
3909
|
-
exports.Endpoint$ = Endpoint$;
|
|
3910
|
-
exports.EngineDefaults$ = EngineDefaults$;
|
|
3911
|
-
exports.Event$ = Event$;
|
|
3912
|
-
exports.EventCategoriesMap$ = EventCategoriesMap$;
|
|
3913
|
-
exports.EventCategoriesMessage$ = EventCategoriesMessage$;
|
|
3914
|
-
exports.EventSubscription$ = EventSubscription$;
|
|
3915
|
-
exports.EventSubscriptionQuotaExceededFault = EventSubscriptionQuotaExceededFault;
|
|
3916
|
-
exports.EventSubscriptionQuotaExceededFault$ = EventSubscriptionQuotaExceededFault$;
|
|
3917
|
-
exports.EventSubscriptionsMessage$ = EventSubscriptionsMessage$;
|
|
3918
|
-
exports.EventsMessage$ = EventsMessage$;
|
|
3919
|
-
exports.FailoverDBCluster$ = FailoverDBCluster$;
|
|
3920
1173
|
exports.FailoverDBClusterCommand = FailoverDBClusterCommand;
|
|
3921
|
-
exports.FailoverDBClusterMessage$ = FailoverDBClusterMessage$;
|
|
3922
|
-
exports.FailoverDBClusterResult$ = FailoverDBClusterResult$;
|
|
3923
|
-
exports.FailoverGlobalCluster$ = FailoverGlobalCluster$;
|
|
3924
1174
|
exports.FailoverGlobalClusterCommand = FailoverGlobalClusterCommand;
|
|
3925
|
-
exports.FailoverGlobalClusterMessage$ = FailoverGlobalClusterMessage$;
|
|
3926
|
-
exports.FailoverGlobalClusterResult$ = FailoverGlobalClusterResult$;
|
|
3927
|
-
exports.FailoverState$ = FailoverState$;
|
|
3928
1175
|
exports.FailoverStatus = FailoverStatus;
|
|
3929
|
-
exports.Filter$ = Filter$;
|
|
3930
|
-
exports.GlobalCluster$ = GlobalCluster$;
|
|
3931
|
-
exports.GlobalClusterAlreadyExistsFault = GlobalClusterAlreadyExistsFault;
|
|
3932
|
-
exports.GlobalClusterAlreadyExistsFault$ = GlobalClusterAlreadyExistsFault$;
|
|
3933
|
-
exports.GlobalClusterMember$ = GlobalClusterMember$;
|
|
3934
1176
|
exports.GlobalClusterMemberSynchronizationStatus = GlobalClusterMemberSynchronizationStatus;
|
|
3935
|
-
exports.GlobalClusterNotFoundFault = GlobalClusterNotFoundFault;
|
|
3936
|
-
exports.GlobalClusterNotFoundFault$ = GlobalClusterNotFoundFault$;
|
|
3937
|
-
exports.GlobalClusterQuotaExceededFault = GlobalClusterQuotaExceededFault;
|
|
3938
|
-
exports.GlobalClusterQuotaExceededFault$ = GlobalClusterQuotaExceededFault$;
|
|
3939
|
-
exports.GlobalClustersMessage$ = GlobalClustersMessage$;
|
|
3940
|
-
exports.InstanceQuotaExceededFault = InstanceQuotaExceededFault;
|
|
3941
|
-
exports.InstanceQuotaExceededFault$ = InstanceQuotaExceededFault$;
|
|
3942
|
-
exports.InsufficientDBClusterCapacityFault = InsufficientDBClusterCapacityFault;
|
|
3943
|
-
exports.InsufficientDBClusterCapacityFault$ = InsufficientDBClusterCapacityFault$;
|
|
3944
|
-
exports.InsufficientDBInstanceCapacityFault = InsufficientDBInstanceCapacityFault;
|
|
3945
|
-
exports.InsufficientDBInstanceCapacityFault$ = InsufficientDBInstanceCapacityFault$;
|
|
3946
|
-
exports.InsufficientStorageClusterCapacityFault = InsufficientStorageClusterCapacityFault;
|
|
3947
|
-
exports.InsufficientStorageClusterCapacityFault$ = InsufficientStorageClusterCapacityFault$;
|
|
3948
|
-
exports.InvalidDBClusterSnapshotStateFault = InvalidDBClusterSnapshotStateFault;
|
|
3949
|
-
exports.InvalidDBClusterSnapshotStateFault$ = InvalidDBClusterSnapshotStateFault$;
|
|
3950
|
-
exports.InvalidDBClusterStateFault = InvalidDBClusterStateFault;
|
|
3951
|
-
exports.InvalidDBClusterStateFault$ = InvalidDBClusterStateFault$;
|
|
3952
|
-
exports.InvalidDBInstanceStateFault = InvalidDBInstanceStateFault;
|
|
3953
|
-
exports.InvalidDBInstanceStateFault$ = InvalidDBInstanceStateFault$;
|
|
3954
|
-
exports.InvalidDBParameterGroupStateFault = InvalidDBParameterGroupStateFault;
|
|
3955
|
-
exports.InvalidDBParameterGroupStateFault$ = InvalidDBParameterGroupStateFault$;
|
|
3956
|
-
exports.InvalidDBSecurityGroupStateFault = InvalidDBSecurityGroupStateFault;
|
|
3957
|
-
exports.InvalidDBSecurityGroupStateFault$ = InvalidDBSecurityGroupStateFault$;
|
|
3958
|
-
exports.InvalidDBSnapshotStateFault = InvalidDBSnapshotStateFault;
|
|
3959
|
-
exports.InvalidDBSnapshotStateFault$ = InvalidDBSnapshotStateFault$;
|
|
3960
|
-
exports.InvalidDBSubnetGroupStateFault = InvalidDBSubnetGroupStateFault;
|
|
3961
|
-
exports.InvalidDBSubnetGroupStateFault$ = InvalidDBSubnetGroupStateFault$;
|
|
3962
|
-
exports.InvalidDBSubnetStateFault = InvalidDBSubnetStateFault;
|
|
3963
|
-
exports.InvalidDBSubnetStateFault$ = InvalidDBSubnetStateFault$;
|
|
3964
|
-
exports.InvalidEventSubscriptionStateFault = InvalidEventSubscriptionStateFault;
|
|
3965
|
-
exports.InvalidEventSubscriptionStateFault$ = InvalidEventSubscriptionStateFault$;
|
|
3966
|
-
exports.InvalidGlobalClusterStateFault = InvalidGlobalClusterStateFault;
|
|
3967
|
-
exports.InvalidGlobalClusterStateFault$ = InvalidGlobalClusterStateFault$;
|
|
3968
|
-
exports.InvalidRestoreFault = InvalidRestoreFault;
|
|
3969
|
-
exports.InvalidRestoreFault$ = InvalidRestoreFault$;
|
|
3970
|
-
exports.InvalidSubnet = InvalidSubnet;
|
|
3971
|
-
exports.InvalidSubnet$ = InvalidSubnet$;
|
|
3972
|
-
exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault;
|
|
3973
|
-
exports.InvalidVPCNetworkStateFault$ = InvalidVPCNetworkStateFault$;
|
|
3974
|
-
exports.KMSKeyNotAccessibleFault = KMSKeyNotAccessibleFault;
|
|
3975
|
-
exports.KMSKeyNotAccessibleFault$ = KMSKeyNotAccessibleFault$;
|
|
3976
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3977
1177
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3978
|
-
exports.ListTagsForResourceMessage$ = ListTagsForResourceMessage$;
|
|
3979
|
-
exports.ModifyDBCluster$ = ModifyDBCluster$;
|
|
3980
1178
|
exports.ModifyDBClusterCommand = ModifyDBClusterCommand;
|
|
3981
|
-
exports.ModifyDBClusterMessage$ = ModifyDBClusterMessage$;
|
|
3982
|
-
exports.ModifyDBClusterParameterGroup$ = ModifyDBClusterParameterGroup$;
|
|
3983
1179
|
exports.ModifyDBClusterParameterGroupCommand = ModifyDBClusterParameterGroupCommand;
|
|
3984
|
-
exports.ModifyDBClusterParameterGroupMessage$ = ModifyDBClusterParameterGroupMessage$;
|
|
3985
|
-
exports.ModifyDBClusterResult$ = ModifyDBClusterResult$;
|
|
3986
|
-
exports.ModifyDBClusterSnapshotAttribute$ = ModifyDBClusterSnapshotAttribute$;
|
|
3987
1180
|
exports.ModifyDBClusterSnapshotAttributeCommand = ModifyDBClusterSnapshotAttributeCommand;
|
|
3988
|
-
exports.ModifyDBClusterSnapshotAttributeMessage$ = ModifyDBClusterSnapshotAttributeMessage$;
|
|
3989
|
-
exports.ModifyDBClusterSnapshotAttributeResult$ = ModifyDBClusterSnapshotAttributeResult$;
|
|
3990
|
-
exports.ModifyDBInstance$ = ModifyDBInstance$;
|
|
3991
1181
|
exports.ModifyDBInstanceCommand = ModifyDBInstanceCommand;
|
|
3992
|
-
exports.ModifyDBInstanceMessage$ = ModifyDBInstanceMessage$;
|
|
3993
|
-
exports.ModifyDBInstanceResult$ = ModifyDBInstanceResult$;
|
|
3994
|
-
exports.ModifyDBSubnetGroup$ = ModifyDBSubnetGroup$;
|
|
3995
1182
|
exports.ModifyDBSubnetGroupCommand = ModifyDBSubnetGroupCommand;
|
|
3996
|
-
exports.ModifyDBSubnetGroupMessage$ = ModifyDBSubnetGroupMessage$;
|
|
3997
|
-
exports.ModifyDBSubnetGroupResult$ = ModifyDBSubnetGroupResult$;
|
|
3998
|
-
exports.ModifyEventSubscription$ = ModifyEventSubscription$;
|
|
3999
1183
|
exports.ModifyEventSubscriptionCommand = ModifyEventSubscriptionCommand;
|
|
4000
|
-
exports.ModifyEventSubscriptionMessage$ = ModifyEventSubscriptionMessage$;
|
|
4001
|
-
exports.ModifyEventSubscriptionResult$ = ModifyEventSubscriptionResult$;
|
|
4002
|
-
exports.ModifyGlobalCluster$ = ModifyGlobalCluster$;
|
|
4003
1184
|
exports.ModifyGlobalClusterCommand = ModifyGlobalClusterCommand;
|
|
4004
|
-
exports.ModifyGlobalClusterMessage$ = ModifyGlobalClusterMessage$;
|
|
4005
|
-
exports.ModifyGlobalClusterResult$ = ModifyGlobalClusterResult$;
|
|
4006
|
-
exports.NetworkTypeNotSupported = NetworkTypeNotSupported;
|
|
4007
|
-
exports.NetworkTypeNotSupported$ = NetworkTypeNotSupported$;
|
|
4008
|
-
exports.OrderableDBInstanceOption$ = OrderableDBInstanceOption$;
|
|
4009
|
-
exports.OrderableDBInstanceOptionsMessage$ = OrderableDBInstanceOptionsMessage$;
|
|
4010
|
-
exports.Parameter$ = Parameter$;
|
|
4011
|
-
exports.PendingCloudwatchLogsExports$ = PendingCloudwatchLogsExports$;
|
|
4012
|
-
exports.PendingMaintenanceAction$ = PendingMaintenanceAction$;
|
|
4013
|
-
exports.PendingMaintenanceActionsMessage$ = PendingMaintenanceActionsMessage$;
|
|
4014
|
-
exports.PendingModifiedValues$ = PendingModifiedValues$;
|
|
4015
|
-
exports.RebootDBInstance$ = RebootDBInstance$;
|
|
4016
1185
|
exports.RebootDBInstanceCommand = RebootDBInstanceCommand;
|
|
4017
|
-
exports.RebootDBInstanceMessage$ = RebootDBInstanceMessage$;
|
|
4018
|
-
exports.RebootDBInstanceResult$ = RebootDBInstanceResult$;
|
|
4019
|
-
exports.RemoveFromGlobalCluster$ = RemoveFromGlobalCluster$;
|
|
4020
1186
|
exports.RemoveFromGlobalClusterCommand = RemoveFromGlobalClusterCommand;
|
|
4021
|
-
exports.RemoveFromGlobalClusterMessage$ = RemoveFromGlobalClusterMessage$;
|
|
4022
|
-
exports.RemoveFromGlobalClusterResult$ = RemoveFromGlobalClusterResult$;
|
|
4023
|
-
exports.RemoveSourceIdentifierFromSubscription$ = RemoveSourceIdentifierFromSubscription$;
|
|
4024
1187
|
exports.RemoveSourceIdentifierFromSubscriptionCommand = RemoveSourceIdentifierFromSubscriptionCommand;
|
|
4025
|
-
exports.RemoveSourceIdentifierFromSubscriptionMessage$ = RemoveSourceIdentifierFromSubscriptionMessage$;
|
|
4026
|
-
exports.RemoveSourceIdentifierFromSubscriptionResult$ = RemoveSourceIdentifierFromSubscriptionResult$;
|
|
4027
|
-
exports.RemoveTagsFromResource$ = RemoveTagsFromResource$;
|
|
4028
1188
|
exports.RemoveTagsFromResourceCommand = RemoveTagsFromResourceCommand;
|
|
4029
|
-
exports.RemoveTagsFromResourceMessage$ = RemoveTagsFromResourceMessage$;
|
|
4030
|
-
exports.ResetDBClusterParameterGroup$ = ResetDBClusterParameterGroup$;
|
|
4031
1189
|
exports.ResetDBClusterParameterGroupCommand = ResetDBClusterParameterGroupCommand;
|
|
4032
|
-
exports.ResetDBClusterParameterGroupMessage$ = ResetDBClusterParameterGroupMessage$;
|
|
4033
|
-
exports.ResourceNotFoundFault = ResourceNotFoundFault;
|
|
4034
|
-
exports.ResourceNotFoundFault$ = ResourceNotFoundFault$;
|
|
4035
|
-
exports.ResourcePendingMaintenanceActions$ = ResourcePendingMaintenanceActions$;
|
|
4036
|
-
exports.RestoreDBClusterFromSnapshot$ = RestoreDBClusterFromSnapshot$;
|
|
4037
1190
|
exports.RestoreDBClusterFromSnapshotCommand = RestoreDBClusterFromSnapshotCommand;
|
|
4038
|
-
exports.RestoreDBClusterFromSnapshotMessage$ = RestoreDBClusterFromSnapshotMessage$;
|
|
4039
|
-
exports.RestoreDBClusterFromSnapshotResult$ = RestoreDBClusterFromSnapshotResult$;
|
|
4040
|
-
exports.RestoreDBClusterToPointInTime$ = RestoreDBClusterToPointInTime$;
|
|
4041
1191
|
exports.RestoreDBClusterToPointInTimeCommand = RestoreDBClusterToPointInTimeCommand;
|
|
4042
|
-
exports.RestoreDBClusterToPointInTimeMessage$ = RestoreDBClusterToPointInTimeMessage$;
|
|
4043
|
-
exports.RestoreDBClusterToPointInTimeResult$ = RestoreDBClusterToPointInTimeResult$;
|
|
4044
|
-
exports.SNSInvalidTopicFault = SNSInvalidTopicFault;
|
|
4045
|
-
exports.SNSInvalidTopicFault$ = SNSInvalidTopicFault$;
|
|
4046
|
-
exports.SNSNoAuthorizationFault = SNSNoAuthorizationFault;
|
|
4047
|
-
exports.SNSNoAuthorizationFault$ = SNSNoAuthorizationFault$;
|
|
4048
|
-
exports.SNSTopicArnNotFoundFault = SNSTopicArnNotFoundFault;
|
|
4049
|
-
exports.SNSTopicArnNotFoundFault$ = SNSTopicArnNotFoundFault$;
|
|
4050
|
-
exports.ServerlessV2FeaturesSupport$ = ServerlessV2FeaturesSupport$;
|
|
4051
|
-
exports.ServerlessV2ScalingConfiguration$ = ServerlessV2ScalingConfiguration$;
|
|
4052
|
-
exports.ServerlessV2ScalingConfigurationInfo$ = ServerlessV2ScalingConfigurationInfo$;
|
|
4053
|
-
exports.SharedSnapshotQuotaExceededFault = SharedSnapshotQuotaExceededFault;
|
|
4054
|
-
exports.SharedSnapshotQuotaExceededFault$ = SharedSnapshotQuotaExceededFault$;
|
|
4055
|
-
exports.SnapshotQuotaExceededFault = SnapshotQuotaExceededFault;
|
|
4056
|
-
exports.SnapshotQuotaExceededFault$ = SnapshotQuotaExceededFault$;
|
|
4057
|
-
exports.SourceNotFoundFault = SourceNotFoundFault;
|
|
4058
|
-
exports.SourceNotFoundFault$ = SourceNotFoundFault$;
|
|
4059
1192
|
exports.SourceType = SourceType;
|
|
4060
|
-
exports.StartDBCluster$ = StartDBCluster$;
|
|
4061
1193
|
exports.StartDBClusterCommand = StartDBClusterCommand;
|
|
4062
|
-
exports.StartDBClusterMessage$ = StartDBClusterMessage$;
|
|
4063
|
-
exports.StartDBClusterResult$ = StartDBClusterResult$;
|
|
4064
|
-
exports.StopDBCluster$ = StopDBCluster$;
|
|
4065
1194
|
exports.StopDBClusterCommand = StopDBClusterCommand;
|
|
4066
|
-
exports.StopDBClusterMessage$ = StopDBClusterMessage$;
|
|
4067
|
-
exports.StopDBClusterResult$ = StopDBClusterResult$;
|
|
4068
|
-
exports.StorageQuotaExceededFault = StorageQuotaExceededFault;
|
|
4069
|
-
exports.StorageQuotaExceededFault$ = StorageQuotaExceededFault$;
|
|
4070
|
-
exports.StorageTypeNotSupportedFault = StorageTypeNotSupportedFault;
|
|
4071
|
-
exports.StorageTypeNotSupportedFault$ = StorageTypeNotSupportedFault$;
|
|
4072
|
-
exports.Subnet$ = Subnet$;
|
|
4073
|
-
exports.SubnetAlreadyInUse = SubnetAlreadyInUse;
|
|
4074
|
-
exports.SubnetAlreadyInUse$ = SubnetAlreadyInUse$;
|
|
4075
|
-
exports.SubscriptionAlreadyExistFault = SubscriptionAlreadyExistFault;
|
|
4076
|
-
exports.SubscriptionAlreadyExistFault$ = SubscriptionAlreadyExistFault$;
|
|
4077
|
-
exports.SubscriptionCategoryNotFoundFault = SubscriptionCategoryNotFoundFault;
|
|
4078
|
-
exports.SubscriptionCategoryNotFoundFault$ = SubscriptionCategoryNotFoundFault$;
|
|
4079
|
-
exports.SubscriptionNotFoundFault = SubscriptionNotFoundFault;
|
|
4080
|
-
exports.SubscriptionNotFoundFault$ = SubscriptionNotFoundFault$;
|
|
4081
|
-
exports.SwitchoverGlobalCluster$ = SwitchoverGlobalCluster$;
|
|
4082
1195
|
exports.SwitchoverGlobalClusterCommand = SwitchoverGlobalClusterCommand;
|
|
4083
|
-
exports.SwitchoverGlobalClusterMessage$ = SwitchoverGlobalClusterMessage$;
|
|
4084
|
-
exports.SwitchoverGlobalClusterResult$ = SwitchoverGlobalClusterResult$;
|
|
4085
|
-
exports.Tag$ = Tag$;
|
|
4086
|
-
exports.TagListMessage$ = TagListMessage$;
|
|
4087
|
-
exports.UpgradeTarget$ = UpgradeTarget$;
|
|
4088
|
-
exports.VpcSecurityGroupMembership$ = VpcSecurityGroupMembership$;
|
|
4089
1196
|
exports.paginateDescribeCertificates = paginateDescribeCertificates;
|
|
4090
1197
|
exports.paginateDescribeDBClusterParameterGroups = paginateDescribeDBClusterParameterGroups;
|
|
4091
1198
|
exports.paginateDescribeDBClusterParameters = paginateDescribeDBClusterParameters;
|
|
@@ -4103,3 +1210,15 @@ exports.waitForDBInstanceAvailable = waitForDBInstanceAvailable;
|
|
|
4103
1210
|
exports.waitForDBInstanceDeleted = waitForDBInstanceDeleted;
|
|
4104
1211
|
exports.waitUntilDBInstanceAvailable = waitUntilDBInstanceAvailable;
|
|
4105
1212
|
exports.waitUntilDBInstanceDeleted = waitUntilDBInstanceDeleted;
|
|
1213
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1214
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1215
|
+
enumerable: true,
|
|
1216
|
+
get: function () { return schemas_0[k]; }
|
|
1217
|
+
});
|
|
1218
|
+
});
|
|
1219
|
+
Object.keys(errors).forEach(function (k) {
|
|
1220
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1221
|
+
enumerable: true,
|
|
1222
|
+
get: function () { return errors[k]; }
|
|
1223
|
+
});
|
|
1224
|
+
});
|