@aws-sdk/client-rds 3.51.0 → 3.54.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/RDSServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +1281 -4
  5. package/dist-cjs/models/models_1.js +303 -3
  6. package/dist-cjs/protocols/Aws_query.js +1480 -5262
  7. package/dist-es/index.js +1 -0
  8. package/dist-es/models/RDSServiceException.js +12 -0
  9. package/dist-es/models/models_0.js +1178 -1
  10. package/dist-es/models/models_1.js +278 -1
  11. package/dist-es/protocols/Aws_query.js +3113 -5521
  12. package/dist-types/RDS.d.ts +1 -56
  13. package/dist-types/RDSClient.d.ts +2 -2
  14. package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +0 -3
  15. package/dist-types/commands/CreateDBClusterCommand.d.ts +0 -3
  16. package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +0 -3
  17. package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +0 -3
  18. package/dist-types/commands/DeleteDBClusterCommand.d.ts +0 -3
  19. package/dist-types/commands/DeleteDBClusterParameterGroupCommand.d.ts +0 -3
  20. package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +0 -3
  21. package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +0 -3
  22. package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +0 -3
  23. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +0 -3
  24. package/dist-types/commands/DescribeDBClustersCommand.d.ts +0 -3
  25. package/dist-types/commands/FailoverDBClusterCommand.d.ts +0 -3
  26. package/dist-types/commands/ModifyDBClusterCommand.d.ts +0 -3
  27. package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +0 -3
  28. package/dist-types/commands/RebootDBClusterCommand.d.ts +1 -2
  29. package/dist-types/commands/RemoveRoleFromDBClusterCommand.d.ts +0 -3
  30. package/dist-types/commands/ResetDBClusterParameterGroupCommand.d.ts +0 -3
  31. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +0 -3
  32. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +0 -3
  33. package/dist-types/index.d.ts +1 -0
  34. package/dist-types/models/RDSServiceException.d.ts +10 -0
  35. package/dist-types/models/models_0.d.ts +799 -416
  36. package/dist-types/models/models_1.d.ts +245 -140
  37. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  38. package/dist-types/runtimeConfig.d.ts +1 -1
  39. package/dist-types/runtimeConfig.native.d.ts +1 -1
  40. package/dist-types/ts3.4/RDSClient.d.ts +2 -2
  41. package/dist-types/ts3.4/index.d.ts +1 -0
  42. package/dist-types/ts3.4/models/RDSServiceException.d.ts +6 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +496 -393
  44. package/dist-types/ts3.4/models/models_1.d.ts +117 -93
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  48. package/package.json +35 -35
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { RDSServiceException as __BaseException } from "./RDSServiceException";
2
3
  /**
3
4
  * <p>Describes a quota for an Amazon Web Services account.</p>
4
5
  * <p>The following are account quotas:</p>
@@ -176,34 +177,46 @@ export declare namespace AddRoleToDBClusterMessage {
176
177
  * <code>DBClusterIdentifier</code> doesn't refer to an existing DB cluster.
177
178
  * </p>
178
179
  */
179
- export interface DBClusterNotFoundFault extends __SmithyException, $MetadataBearer {
180
- name: "DBClusterNotFoundFault";
181
- $fault: "client";
182
- message?: string;
180
+ export declare class DBClusterNotFoundFault extends __BaseException {
181
+ readonly name: "DBClusterNotFoundFault";
182
+ readonly $fault: "client";
183
+ /**
184
+ * @internal
185
+ */
186
+ constructor(opts: __ExceptionOptionType<DBClusterNotFoundFault, __BaseException>);
183
187
  }
184
188
  /**
185
189
  * <p>The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.</p>
186
190
  */
187
- export interface DBClusterRoleAlreadyExistsFault extends __SmithyException, $MetadataBearer {
188
- name: "DBClusterRoleAlreadyExistsFault";
189
- $fault: "client";
190
- message?: string;
191
+ export declare class DBClusterRoleAlreadyExistsFault extends __BaseException {
192
+ readonly name: "DBClusterRoleAlreadyExistsFault";
193
+ readonly $fault: "client";
194
+ /**
195
+ * @internal
196
+ */
197
+ constructor(opts: __ExceptionOptionType<DBClusterRoleAlreadyExistsFault, __BaseException>);
191
198
  }
192
199
  /**
193
200
  * <p>You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.</p>
194
201
  */
195
- export interface DBClusterRoleQuotaExceededFault extends __SmithyException, $MetadataBearer {
196
- name: "DBClusterRoleQuotaExceededFault";
197
- $fault: "client";
198
- message?: string;
202
+ export declare class DBClusterRoleQuotaExceededFault extends __BaseException {
203
+ readonly name: "DBClusterRoleQuotaExceededFault";
204
+ readonly $fault: "client";
205
+ /**
206
+ * @internal
207
+ */
208
+ constructor(opts: __ExceptionOptionType<DBClusterRoleQuotaExceededFault, __BaseException>);
199
209
  }
200
210
  /**
201
211
  * <p>The requested operation can't be performed while the cluster is in this state.</p>
202
212
  */
203
- export interface InvalidDBClusterStateFault extends __SmithyException, $MetadataBearer {
204
- name: "InvalidDBClusterStateFault";
205
- $fault: "client";
206
- message?: string;
213
+ export declare class InvalidDBClusterStateFault extends __BaseException {
214
+ readonly name: "InvalidDBClusterStateFault";
215
+ readonly $fault: "client";
216
+ /**
217
+ * @internal
218
+ */
219
+ constructor(opts: __ExceptionOptionType<InvalidDBClusterStateFault, __BaseException>);
207
220
  }
208
221
  export interface AddRoleToDBInstanceMessage {
209
222
  /**
@@ -233,34 +246,46 @@ export declare namespace AddRoleToDBInstanceMessage {
233
246
  * <code>DBInstanceIdentifier</code> doesn't refer to an existing DB instance.
234
247
  * </p>
235
248
  */
236
- export interface DBInstanceNotFoundFault extends __SmithyException, $MetadataBearer {
237
- name: "DBInstanceNotFoundFault";
238
- $fault: "client";
239
- message?: string;
249
+ export declare class DBInstanceNotFoundFault extends __BaseException {
250
+ readonly name: "DBInstanceNotFoundFault";
251
+ readonly $fault: "client";
252
+ /**
253
+ * @internal
254
+ */
255
+ constructor(opts: __ExceptionOptionType<DBInstanceNotFoundFault, __BaseException>);
240
256
  }
241
257
  /**
242
258
  * <p>The specified <code>RoleArn</code> or <code>FeatureName</code> value is already associated with the DB instance.</p>
243
259
  */
244
- export interface DBInstanceRoleAlreadyExistsFault extends __SmithyException, $MetadataBearer {
245
- name: "DBInstanceRoleAlreadyExistsFault";
246
- $fault: "client";
247
- message?: string;
260
+ export declare class DBInstanceRoleAlreadyExistsFault extends __BaseException {
261
+ readonly name: "DBInstanceRoleAlreadyExistsFault";
262
+ readonly $fault: "client";
263
+ /**
264
+ * @internal
265
+ */
266
+ constructor(opts: __ExceptionOptionType<DBInstanceRoleAlreadyExistsFault, __BaseException>);
248
267
  }
249
268
  /**
250
269
  * <p>You can't associate any more Amazon Web Services Identity and Access Management (IAM) roles with the DB instance because the quota has been reached.</p>
251
270
  */
252
- export interface DBInstanceRoleQuotaExceededFault extends __SmithyException, $MetadataBearer {
253
- name: "DBInstanceRoleQuotaExceededFault";
254
- $fault: "client";
255
- message?: string;
271
+ export declare class DBInstanceRoleQuotaExceededFault extends __BaseException {
272
+ readonly name: "DBInstanceRoleQuotaExceededFault";
273
+ readonly $fault: "client";
274
+ /**
275
+ * @internal
276
+ */
277
+ constructor(opts: __ExceptionOptionType<DBInstanceRoleQuotaExceededFault, __BaseException>);
256
278
  }
257
279
  /**
258
280
  * <p>The DB instance isn't in a valid state.</p>
259
281
  */
260
- export interface InvalidDBInstanceStateFault extends __SmithyException, $MetadataBearer {
261
- name: "InvalidDBInstanceStateFault";
262
- $fault: "client";
263
- message?: string;
282
+ export declare class InvalidDBInstanceStateFault extends __BaseException {
283
+ readonly name: "InvalidDBInstanceStateFault";
284
+ readonly $fault: "client";
285
+ /**
286
+ * @internal
287
+ */
288
+ constructor(opts: __ExceptionOptionType<InvalidDBInstanceStateFault, __BaseException>);
264
289
  }
265
290
  /**
266
291
  * <p></p>
@@ -374,18 +399,24 @@ export declare namespace AddSourceIdentifierToSubscriptionResult {
374
399
  /**
375
400
  * <p>The requested source could not be found.</p>
376
401
  */
377
- export interface SourceNotFoundFault extends __SmithyException, $MetadataBearer {
378
- name: "SourceNotFoundFault";
379
- $fault: "client";
380
- message?: string;
402
+ export declare class SourceNotFoundFault extends __BaseException {
403
+ readonly name: "SourceNotFoundFault";
404
+ readonly $fault: "client";
405
+ /**
406
+ * @internal
407
+ */
408
+ constructor(opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>);
381
409
  }
382
410
  /**
383
411
  * <p>The subscription name does not exist.</p>
384
412
  */
385
- export interface SubscriptionNotFoundFault extends __SmithyException, $MetadataBearer {
386
- name: "SubscriptionNotFoundFault";
387
- $fault: "client";
388
- message?: string;
413
+ export declare class SubscriptionNotFoundFault extends __BaseException {
414
+ readonly name: "SubscriptionNotFoundFault";
415
+ readonly $fault: "client";
416
+ /**
417
+ * @internal
418
+ */
419
+ constructor(opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>);
389
420
  }
390
421
  /**
391
422
  * <p>Metadata assigned to an Amazon RDS resource consisting of a key-value pair.</p>
@@ -431,28 +462,37 @@ export declare namespace AddTagsToResourceMessage {
431
462
  /**
432
463
  * <p>The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
433
464
  */
434
- export interface DBProxyNotFoundFault extends __SmithyException, $MetadataBearer {
435
- name: "DBProxyNotFoundFault";
436
- $fault: "client";
437
- message?: string;
465
+ export declare class DBProxyNotFoundFault extends __BaseException {
466
+ readonly name: "DBProxyNotFoundFault";
467
+ readonly $fault: "client";
468
+ /**
469
+ * @internal
470
+ */
471
+ constructor(opts: __ExceptionOptionType<DBProxyNotFoundFault, __BaseException>);
438
472
  }
439
473
  /**
440
474
  * <p>The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
441
475
  */
442
- export interface DBProxyTargetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
443
- name: "DBProxyTargetGroupNotFoundFault";
444
- $fault: "client";
445
- message?: string;
476
+ export declare class DBProxyTargetGroupNotFoundFault extends __BaseException {
477
+ readonly name: "DBProxyTargetGroupNotFoundFault";
478
+ readonly $fault: "client";
479
+ /**
480
+ * @internal
481
+ */
482
+ constructor(opts: __ExceptionOptionType<DBProxyTargetGroupNotFoundFault, __BaseException>);
446
483
  }
447
484
  /**
448
485
  * <p>
449
486
  * <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.
450
487
  * </p>
451
488
  */
452
- export interface DBSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
453
- name: "DBSnapshotNotFoundFault";
454
- $fault: "client";
455
- message?: string;
489
+ export declare class DBSnapshotNotFoundFault extends __BaseException {
490
+ readonly name: "DBSnapshotNotFoundFault";
491
+ readonly $fault: "client";
492
+ /**
493
+ * @internal
494
+ */
495
+ constructor(opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>);
456
496
  }
457
497
  /**
458
498
  * <p></p>
@@ -583,27 +623,36 @@ export declare namespace ApplyPendingMaintenanceActionResult {
583
623
  /**
584
624
  * <p>The specified resource ID was not found.</p>
585
625
  */
586
- export interface ResourceNotFoundFault extends __SmithyException, $MetadataBearer {
587
- name: "ResourceNotFoundFault";
588
- $fault: "client";
589
- message?: string;
626
+ export declare class ResourceNotFoundFault extends __BaseException {
627
+ readonly name: "ResourceNotFoundFault";
628
+ readonly $fault: "client";
629
+ /**
630
+ * @internal
631
+ */
632
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
590
633
  }
591
634
  /**
592
635
  * <p>The specified CIDR IP range or Amazon EC2 security group is already authorized for
593
636
  * the specified DB security group.</p>
594
637
  */
595
- export interface AuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
596
- name: "AuthorizationAlreadyExistsFault";
597
- $fault: "client";
598
- message?: string;
638
+ export declare class AuthorizationAlreadyExistsFault extends __BaseException {
639
+ readonly name: "AuthorizationAlreadyExistsFault";
640
+ readonly $fault: "client";
641
+ /**
642
+ * @internal
643
+ */
644
+ constructor(opts: __ExceptionOptionType<AuthorizationAlreadyExistsFault, __BaseException>);
599
645
  }
600
646
  /**
601
647
  * <p>The DB security group authorization quota has been reached.</p>
602
648
  */
603
- export interface AuthorizationQuotaExceededFault extends __SmithyException, $MetadataBearer {
604
- name: "AuthorizationQuotaExceededFault";
605
- $fault: "client";
606
- message?: string;
649
+ export declare class AuthorizationQuotaExceededFault extends __BaseException {
650
+ readonly name: "AuthorizationQuotaExceededFault";
651
+ readonly $fault: "client";
652
+ /**
653
+ * @internal
654
+ */
655
+ constructor(opts: __ExceptionOptionType<AuthorizationQuotaExceededFault, __BaseException>);
607
656
  }
608
657
  /**
609
658
  * <p></p>
@@ -787,18 +836,24 @@ export declare namespace AuthorizeDBSecurityGroupIngressResult {
787
836
  * <code>DBSecurityGroupName</code> doesn't refer to an existing DB security group.
788
837
  * </p>
789
838
  */
790
- export interface DBSecurityGroupNotFoundFault extends __SmithyException, $MetadataBearer {
791
- name: "DBSecurityGroupNotFoundFault";
792
- $fault: "client";
793
- message?: string;
839
+ export declare class DBSecurityGroupNotFoundFault extends __BaseException {
840
+ readonly name: "DBSecurityGroupNotFoundFault";
841
+ readonly $fault: "client";
842
+ /**
843
+ * @internal
844
+ */
845
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupNotFoundFault, __BaseException>);
794
846
  }
795
847
  /**
796
848
  * <p>The state of the DB security group doesn't allow deletion.</p>
797
849
  */
798
- export interface InvalidDBSecurityGroupStateFault extends __SmithyException, $MetadataBearer {
799
- name: "InvalidDBSecurityGroupStateFault";
800
- $fault: "client";
801
- message?: string;
850
+ export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
851
+ readonly name: "InvalidDBSecurityGroupStateFault";
852
+ readonly $fault: "client";
853
+ /**
854
+ * @internal
855
+ */
856
+ constructor(opts: __ExceptionOptionType<InvalidDBSecurityGroupStateFault, __BaseException>);
802
857
  }
803
858
  /**
804
859
  * <p></p>
@@ -1034,18 +1089,24 @@ export declare namespace ExportTask {
1034
1089
  /**
1035
1090
  * <p>The export task doesn't exist.</p>
1036
1091
  */
1037
- export interface ExportTaskNotFoundFault extends __SmithyException, $MetadataBearer {
1038
- name: "ExportTaskNotFoundFault";
1039
- $fault: "client";
1040
- message?: string;
1092
+ export declare class ExportTaskNotFoundFault extends __BaseException {
1093
+ readonly name: "ExportTaskNotFoundFault";
1094
+ readonly $fault: "client";
1095
+ /**
1096
+ * @internal
1097
+ */
1098
+ constructor(opts: __ExceptionOptionType<ExportTaskNotFoundFault, __BaseException>);
1041
1099
  }
1042
1100
  /**
1043
1101
  * <p>You can't cancel an export task that has completed.</p>
1044
1102
  */
1045
- export interface InvalidExportTaskStateFault extends __SmithyException, $MetadataBearer {
1046
- name: "InvalidExportTaskStateFault";
1047
- $fault: "client";
1048
- message?: string;
1103
+ export declare class InvalidExportTaskStateFault extends __BaseException {
1104
+ readonly name: "InvalidExportTaskStateFault";
1105
+ readonly $fault: "client";
1106
+ /**
1107
+ * @internal
1108
+ */
1109
+ constructor(opts: __ExceptionOptionType<InvalidExportTaskStateFault, __BaseException>);
1049
1110
  }
1050
1111
  export interface CopyDBClusterParameterGroupMessage {
1051
1112
  /**
@@ -1149,10 +1210,13 @@ export declare namespace CopyDBClusterParameterGroupResult {
1149
1210
  /**
1150
1211
  * <p>A DB parameter group with the same name exists.</p>
1151
1212
  */
1152
- export interface DBParameterGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1153
- name: "DBParameterGroupAlreadyExistsFault";
1154
- $fault: "client";
1155
- message?: string;
1213
+ export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
1214
+ readonly name: "DBParameterGroupAlreadyExistsFault";
1215
+ readonly $fault: "client";
1216
+ /**
1217
+ * @internal
1218
+ */
1219
+ constructor(opts: __ExceptionOptionType<DBParameterGroupAlreadyExistsFault, __BaseException>);
1156
1220
  }
1157
1221
  /**
1158
1222
  * <p>
@@ -1160,19 +1224,25 @@ export interface DBParameterGroupAlreadyExistsFault extends __SmithyException, $
1160
1224
  * existing DB parameter group.
1161
1225
  * </p>
1162
1226
  */
1163
- export interface DBParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
1164
- name: "DBParameterGroupNotFoundFault";
1165
- $fault: "client";
1166
- message?: string;
1227
+ export declare class DBParameterGroupNotFoundFault extends __BaseException {
1228
+ readonly name: "DBParameterGroupNotFoundFault";
1229
+ readonly $fault: "client";
1230
+ /**
1231
+ * @internal
1232
+ */
1233
+ constructor(opts: __ExceptionOptionType<DBParameterGroupNotFoundFault, __BaseException>);
1167
1234
  }
1168
1235
  /**
1169
1236
  * <p>The request would result in the user exceeding the allowed number of DB parameter
1170
1237
  * groups.</p>
1171
1238
  */
1172
- export interface DBParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
1173
- name: "DBParameterGroupQuotaExceededFault";
1174
- $fault: "client";
1175
- message?: string;
1239
+ export declare class DBParameterGroupQuotaExceededFault extends __BaseException {
1240
+ readonly name: "DBParameterGroupQuotaExceededFault";
1241
+ readonly $fault: "client";
1242
+ /**
1243
+ * @internal
1244
+ */
1245
+ constructor(opts: __ExceptionOptionType<DBParameterGroupQuotaExceededFault, __BaseException>);
1176
1246
  }
1177
1247
  /**
1178
1248
  * <p></p>
@@ -1441,45 +1511,60 @@ export declare namespace CopyDBClusterSnapshotResult {
1441
1511
  /**
1442
1512
  * <p>The user already has a DB cluster snapshot with the given identifier.</p>
1443
1513
  */
1444
- export interface DBClusterSnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1445
- name: "DBClusterSnapshotAlreadyExistsFault";
1446
- $fault: "client";
1447
- message?: string;
1514
+ export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
1515
+ readonly name: "DBClusterSnapshotAlreadyExistsFault";
1516
+ readonly $fault: "client";
1517
+ /**
1518
+ * @internal
1519
+ */
1520
+ constructor(opts: __ExceptionOptionType<DBClusterSnapshotAlreadyExistsFault, __BaseException>);
1448
1521
  }
1449
1522
  /**
1450
1523
  * <p>
1451
1524
  * <code>DBClusterSnapshotIdentifier</code> doesn't refer to an existing DB cluster snapshot.
1452
1525
  * </p>
1453
1526
  */
1454
- export interface DBClusterSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
1455
- name: "DBClusterSnapshotNotFoundFault";
1456
- $fault: "client";
1457
- message?: string;
1527
+ export declare class DBClusterSnapshotNotFoundFault extends __BaseException {
1528
+ readonly name: "DBClusterSnapshotNotFoundFault";
1529
+ readonly $fault: "client";
1530
+ /**
1531
+ * @internal
1532
+ */
1533
+ constructor(opts: __ExceptionOptionType<DBClusterSnapshotNotFoundFault, __BaseException>);
1458
1534
  }
1459
1535
  /**
1460
1536
  * <p>The supplied value isn't a valid DB cluster snapshot state.</p>
1461
1537
  */
1462
- export interface InvalidDBClusterSnapshotStateFault extends __SmithyException, $MetadataBearer {
1463
- name: "InvalidDBClusterSnapshotStateFault";
1464
- $fault: "client";
1465
- message?: string;
1538
+ export declare class InvalidDBClusterSnapshotStateFault extends __BaseException {
1539
+ readonly name: "InvalidDBClusterSnapshotStateFault";
1540
+ readonly $fault: "client";
1541
+ /**
1542
+ * @internal
1543
+ */
1544
+ constructor(opts: __ExceptionOptionType<InvalidDBClusterSnapshotStateFault, __BaseException>);
1466
1545
  }
1467
1546
  /**
1468
1547
  * <p>An error occurred accessing an Amazon Web Services KMS key.</p>
1469
1548
  */
1470
- export interface KMSKeyNotAccessibleFault extends __SmithyException, $MetadataBearer {
1471
- name: "KMSKeyNotAccessibleFault";
1472
- $fault: "client";
1473
- message?: string;
1549
+ export declare class KMSKeyNotAccessibleFault extends __BaseException {
1550
+ readonly name: "KMSKeyNotAccessibleFault";
1551
+ readonly $fault: "client";
1552
+ /**
1553
+ * @internal
1554
+ */
1555
+ constructor(opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>);
1474
1556
  }
1475
1557
  /**
1476
1558
  * <p>The request would result in the user exceeding the allowed number of DB
1477
1559
  * snapshots.</p>
1478
1560
  */
1479
- export interface SnapshotQuotaExceededFault extends __SmithyException, $MetadataBearer {
1480
- name: "SnapshotQuotaExceededFault";
1481
- $fault: "client";
1482
- message?: string;
1561
+ export declare class SnapshotQuotaExceededFault extends __BaseException {
1562
+ readonly name: "SnapshotQuotaExceededFault";
1563
+ readonly $fault: "client";
1564
+ /**
1565
+ * @internal
1566
+ */
1567
+ constructor(opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>);
1483
1568
  }
1484
1569
  /**
1485
1570
  * <p></p>
@@ -2027,28 +2112,37 @@ export declare namespace CopyDBSnapshotResult {
2027
2112
  * <code>CustomAvailabilityZoneId</code> doesn't refer to an existing custom
2028
2113
  * Availability Zone identifier.</p>
2029
2114
  */
2030
- export interface CustomAvailabilityZoneNotFoundFault extends __SmithyException, $MetadataBearer {
2031
- name: "CustomAvailabilityZoneNotFoundFault";
2032
- $fault: "client";
2033
- message?: string;
2115
+ export declare class CustomAvailabilityZoneNotFoundFault extends __BaseException {
2116
+ readonly name: "CustomAvailabilityZoneNotFoundFault";
2117
+ readonly $fault: "client";
2118
+ /**
2119
+ * @internal
2120
+ */
2121
+ constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneNotFoundFault, __BaseException>);
2034
2122
  }
2035
2123
  /**
2036
2124
  * <p>
2037
2125
  * <code>DBSnapshotIdentifier</code> is already used by an existing snapshot.
2038
2126
  * </p>
2039
2127
  */
2040
- export interface DBSnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2041
- name: "DBSnapshotAlreadyExistsFault";
2042
- $fault: "client";
2043
- message?: string;
2128
+ export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
2129
+ readonly name: "DBSnapshotAlreadyExistsFault";
2130
+ readonly $fault: "client";
2131
+ /**
2132
+ * @internal
2133
+ */
2134
+ constructor(opts: __ExceptionOptionType<DBSnapshotAlreadyExistsFault, __BaseException>);
2044
2135
  }
2045
2136
  /**
2046
2137
  * <p>The state of the DB snapshot doesn't allow deletion.</p>
2047
2138
  */
2048
- export interface InvalidDBSnapshotStateFault extends __SmithyException, $MetadataBearer {
2049
- name: "InvalidDBSnapshotStateFault";
2050
- $fault: "client";
2051
- message?: string;
2139
+ export declare class InvalidDBSnapshotStateFault extends __BaseException {
2140
+ readonly name: "InvalidDBSnapshotStateFault";
2141
+ readonly $fault: "client";
2142
+ /**
2143
+ * @internal
2144
+ */
2145
+ constructor(opts: __ExceptionOptionType<InvalidDBSnapshotStateFault, __BaseException>);
2052
2146
  }
2053
2147
  /**
2054
2148
  * <p></p>
@@ -2323,26 +2417,35 @@ export declare namespace CopyOptionGroupResult {
2323
2417
  /**
2324
2418
  * <p>The option group you are trying to create already exists.</p>
2325
2419
  */
2326
- export interface OptionGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2327
- name: "OptionGroupAlreadyExistsFault";
2328
- $fault: "client";
2329
- message?: string;
2420
+ export declare class OptionGroupAlreadyExistsFault extends __BaseException {
2421
+ readonly name: "OptionGroupAlreadyExistsFault";
2422
+ readonly $fault: "client";
2423
+ /**
2424
+ * @internal
2425
+ */
2426
+ constructor(opts: __ExceptionOptionType<OptionGroupAlreadyExistsFault, __BaseException>);
2330
2427
  }
2331
2428
  /**
2332
2429
  * <p>The specified option group could not be found.</p>
2333
2430
  */
2334
- export interface OptionGroupNotFoundFault extends __SmithyException, $MetadataBearer {
2335
- name: "OptionGroupNotFoundFault";
2336
- $fault: "client";
2337
- message?: string;
2431
+ export declare class OptionGroupNotFoundFault extends __BaseException {
2432
+ readonly name: "OptionGroupNotFoundFault";
2433
+ readonly $fault: "client";
2434
+ /**
2435
+ * @internal
2436
+ */
2437
+ constructor(opts: __ExceptionOptionType<OptionGroupNotFoundFault, __BaseException>);
2338
2438
  }
2339
2439
  /**
2340
2440
  * <p>The quota of 20 option groups was exceeded for this Amazon Web Services account.</p>
2341
2441
  */
2342
- export interface OptionGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2343
- name: "OptionGroupQuotaExceededFault";
2344
- $fault: "client";
2345
- message?: string;
2442
+ export declare class OptionGroupQuotaExceededFault extends __BaseException {
2443
+ readonly name: "OptionGroupQuotaExceededFault";
2444
+ readonly $fault: "client";
2445
+ /**
2446
+ * @internal
2447
+ */
2448
+ constructor(opts: __ExceptionOptionType<OptionGroupQuotaExceededFault, __BaseException>);
2346
2449
  }
2347
2450
  /**
2348
2451
  * <p></p>
@@ -2467,18 +2570,24 @@ export declare namespace CreateCustomAvailabilityZoneResult {
2467
2570
  * <code>CustomAvailabilityZoneName</code> is already used by an existing custom
2468
2571
  * Availability Zone.</p>
2469
2572
  */
2470
- export interface CustomAvailabilityZoneAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2471
- name: "CustomAvailabilityZoneAlreadyExistsFault";
2472
- $fault: "client";
2473
- message?: string;
2573
+ export declare class CustomAvailabilityZoneAlreadyExistsFault extends __BaseException {
2574
+ readonly name: "CustomAvailabilityZoneAlreadyExistsFault";
2575
+ readonly $fault: "client";
2576
+ /**
2577
+ * @internal
2578
+ */
2579
+ constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneAlreadyExistsFault, __BaseException>);
2474
2580
  }
2475
2581
  /**
2476
2582
  * <p>You have exceeded the maximum number of custom Availability Zones.</p>
2477
2583
  */
2478
- export interface CustomAvailabilityZoneQuotaExceededFault extends __SmithyException, $MetadataBearer {
2479
- name: "CustomAvailabilityZoneQuotaExceededFault";
2480
- $fault: "client";
2481
- message?: string;
2584
+ export declare class CustomAvailabilityZoneQuotaExceededFault extends __BaseException {
2585
+ readonly name: "CustomAvailabilityZoneQuotaExceededFault";
2586
+ readonly $fault: "client";
2587
+ /**
2588
+ * @internal
2589
+ */
2590
+ constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneQuotaExceededFault, __BaseException>);
2482
2591
  }
2483
2592
  export interface CreateCustomDBEngineVersionMessage {
2484
2593
  /**
@@ -2566,18 +2675,24 @@ export declare namespace CreateCustomDBEngineVersionMessage {
2566
2675
  /**
2567
2676
  * <p>A CEV with the specified name already exists.</p>
2568
2677
  */
2569
- export interface CustomDBEngineVersionAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2570
- name: "CustomDBEngineVersionAlreadyExistsFault";
2571
- $fault: "client";
2572
- message?: string;
2678
+ export declare class CustomDBEngineVersionAlreadyExistsFault extends __BaseException {
2679
+ readonly name: "CustomDBEngineVersionAlreadyExistsFault";
2680
+ readonly $fault: "client";
2681
+ /**
2682
+ * @internal
2683
+ */
2684
+ constructor(opts: __ExceptionOptionType<CustomDBEngineVersionAlreadyExistsFault, __BaseException>);
2573
2685
  }
2574
2686
  /**
2575
2687
  * <p>You have exceeded your CEV quota.</p>
2576
2688
  */
2577
- export interface CustomDBEngineVersionQuotaExceededFault extends __SmithyException, $MetadataBearer {
2578
- name: "CustomDBEngineVersionQuotaExceededFault";
2579
- $fault: "client";
2580
- message?: string;
2689
+ export declare class CustomDBEngineVersionQuotaExceededFault extends __BaseException {
2690
+ readonly name: "CustomDBEngineVersionQuotaExceededFault";
2691
+ readonly $fault: "client";
2692
+ /**
2693
+ * @internal
2694
+ */
2695
+ constructor(opts: __ExceptionOptionType<CustomDBEngineVersionQuotaExceededFault, __BaseException>);
2581
2696
  }
2582
2697
  /**
2583
2698
  * <p>
@@ -2659,6 +2774,10 @@ export interface UpgradeTarget {
2659
2774
  * <p>A value that indicates whether you can use Aurora global databases with the target engine version.</p>
2660
2775
  */
2661
2776
  SupportsGlobalDatabases?: boolean;
2777
+ /**
2778
+ * <p>A value that indicates whether you can use Babelfish for Aurora PostgreSQL with the target engine version.</p>
2779
+ */
2780
+ SupportsBabelfish?: boolean;
2662
2781
  }
2663
2782
  export declare namespace UpgradeTarget {
2664
2783
  /**
@@ -2798,6 +2917,10 @@ export interface DBEngineVersion {
2798
2917
  * </p>
2799
2918
  */
2800
2919
  TagList?: Tag[];
2920
+ /**
2921
+ * <p>A value that indicates whether the engine version supports Babelfish for Aurora PostgreSQL.</p>
2922
+ */
2923
+ SupportsBabelfish?: boolean;
2801
2924
  }
2802
2925
  export declare namespace DBEngineVersion {
2803
2926
  /**
@@ -3234,8 +3357,15 @@ export interface CreateDBClusterMessage {
3234
3357
  BacktrackWindow?: number;
3235
3358
  /**
3236
3359
  * <p>The list of log types that need to be enabled for exporting to CloudWatch Logs. The values
3237
- * in the list depend on the DB engine being used. For more information, see
3238
- * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
3360
+ * in the list depend on the DB engine being used.</p>
3361
+ * <p>
3362
+ * <b>RDS for MySQL</b>
3363
+ * </p>
3364
+ * <p>Possible values are <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
3365
+ * <p>
3366
+ * <b>RDS for PostgreSQL</b>
3367
+ * </p>
3368
+ * <p>Possible values are <code>postgresql</code> and <code>upgrade</code>.</p>
3239
3369
  * <p>
3240
3370
  * <b>Aurora MySQL</b>
3241
3371
  * </p>
@@ -3244,7 +3374,10 @@ export interface CreateDBClusterMessage {
3244
3374
  * <b>Aurora PostgreSQL</b>
3245
3375
  * </p>
3246
3376
  * <p>Possible value is <code>postgresql</code>.</p>
3247
- * <p>Valid for: Aurora DB clusters only</p>
3377
+ * <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Relational Database
3378
+ * Service User Guide</i>.</p>
3379
+ * <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
3380
+ * <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
3248
3381
  */
3249
3382
  EnableCloudwatchLogsExports?: string[];
3250
3383
  /**
@@ -3322,7 +3455,7 @@ export interface CreateDBClusterMessage {
3322
3455
  /**
3323
3456
  * <p>A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster.
3324
3457
  * The default is not to copy them.</p>
3325
- * <p>Valid for: Aurora DB clusters only</p>
3458
+ * <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
3326
3459
  */
3327
3460
  CopyTagsToSnapshot?: boolean;
3328
3461
  /**
@@ -3723,9 +3856,6 @@ export declare namespace ScalingConfigurationInfo {
3723
3856
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
3724
3857
  * Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
3725
3858
  * </p>
3726
- * <note>
3727
- * <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
3728
- * </note>
3729
3859
  */
3730
3860
  export interface DBCluster {
3731
3861
  /**
@@ -4091,9 +4221,6 @@ export interface CreateDBClusterResult {
4091
4221
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
4092
4222
  * Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
4093
4223
  * </p>
4094
- * <note>
4095
- * <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
4096
- * </note>
4097
4224
  */
4098
4225
  DBCluster?: DBCluster;
4099
4226
  }
@@ -4106,117 +4233,156 @@ export declare namespace CreateDBClusterResult {
4106
4233
  /**
4107
4234
  * <p>The user already has a DB cluster with the given identifier.</p>
4108
4235
  */
4109
- export interface DBClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4110
- name: "DBClusterAlreadyExistsFault";
4111
- $fault: "client";
4112
- message?: string;
4236
+ export declare class DBClusterAlreadyExistsFault extends __BaseException {
4237
+ readonly name: "DBClusterAlreadyExistsFault";
4238
+ readonly $fault: "client";
4239
+ /**
4240
+ * @internal
4241
+ */
4242
+ constructor(opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>);
4113
4243
  }
4114
4244
  /**
4115
4245
  * <p>
4116
4246
  * <code>DBClusterParameterGroupName</code> doesn't refer to an existing DB
4117
4247
  * cluster parameter group. </p>
4118
4248
  */
4119
- export interface DBClusterParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
4120
- name: "DBClusterParameterGroupNotFoundFault";
4121
- $fault: "client";
4122
- message?: string;
4249
+ export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
4250
+ readonly name: "DBClusterParameterGroupNotFoundFault";
4251
+ readonly $fault: "client";
4252
+ /**
4253
+ * @internal
4254
+ */
4255
+ constructor(opts: __ExceptionOptionType<DBClusterParameterGroupNotFoundFault, __BaseException>);
4123
4256
  }
4124
4257
  /**
4125
4258
  * <p>The user attempted to create a new DB cluster and the user has already reached the
4126
4259
  * maximum allowed DB cluster quota.</p>
4127
4260
  */
4128
- export interface DBClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
4129
- name: "DBClusterQuotaExceededFault";
4130
- $fault: "client";
4131
- message?: string;
4261
+ export declare class DBClusterQuotaExceededFault extends __BaseException {
4262
+ readonly name: "DBClusterQuotaExceededFault";
4263
+ readonly $fault: "client";
4264
+ /**
4265
+ * @internal
4266
+ */
4267
+ constructor(opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>);
4132
4268
  }
4133
4269
  /**
4134
4270
  * <p>Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.</p>
4135
4271
  */
4136
- export interface DBSubnetGroupDoesNotCoverEnoughAZs extends __SmithyException, $MetadataBearer {
4137
- name: "DBSubnetGroupDoesNotCoverEnoughAZs";
4138
- $fault: "client";
4139
- message?: string;
4272
+ export declare class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
4273
+ readonly name: "DBSubnetGroupDoesNotCoverEnoughAZs";
4274
+ readonly $fault: "client";
4275
+ /**
4276
+ * @internal
4277
+ */
4278
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupDoesNotCoverEnoughAZs, __BaseException>);
4140
4279
  }
4141
4280
  /**
4142
4281
  * <p>
4143
4282
  * <code>DBSubnetGroupName</code> doesn't refer to an existing DB subnet group.
4144
4283
  * </p>
4145
4284
  */
4146
- export interface DBSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
4147
- name: "DBSubnetGroupNotFoundFault";
4148
- $fault: "client";
4149
- message?: string;
4285
+ export declare class DBSubnetGroupNotFoundFault extends __BaseException {
4286
+ readonly name: "DBSubnetGroupNotFoundFault";
4287
+ readonly $fault: "client";
4288
+ /**
4289
+ * @internal
4290
+ */
4291
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupNotFoundFault, __BaseException>);
4150
4292
  }
4151
4293
  /**
4152
4294
  * <p>
4153
4295
  * <code>Domain</code> doesn't refer to an existing Active Directory domain.
4154
4296
  * </p>
4155
4297
  */
4156
- export interface DomainNotFoundFault extends __SmithyException, $MetadataBearer {
4157
- name: "DomainNotFoundFault";
4158
- $fault: "client";
4159
- message?: string;
4298
+ export declare class DomainNotFoundFault extends __BaseException {
4299
+ readonly name: "DomainNotFoundFault";
4300
+ readonly $fault: "client";
4301
+ /**
4302
+ * @internal
4303
+ */
4304
+ constructor(opts: __ExceptionOptionType<DomainNotFoundFault, __BaseException>);
4160
4305
  }
4161
4306
  /**
4162
4307
  * <p>The <code>GlobalClusterIdentifier</code> doesn't refer to an existing global database cluster. </p>
4163
4308
  */
4164
- export interface GlobalClusterNotFoundFault extends __SmithyException, $MetadataBearer {
4165
- name: "GlobalClusterNotFoundFault";
4166
- $fault: "client";
4167
- message?: string;
4309
+ export declare class GlobalClusterNotFoundFault extends __BaseException {
4310
+ readonly name: "GlobalClusterNotFoundFault";
4311
+ readonly $fault: "client";
4312
+ /**
4313
+ * @internal
4314
+ */
4315
+ constructor(opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>);
4168
4316
  }
4169
4317
  /**
4170
4318
  * <p>There is insufficient storage available for the current action. You might be able to
4171
4319
  * resolve this error by updating your subnet group to use different Availability Zones
4172
4320
  * that have more storage available.</p>
4173
4321
  */
4174
- export interface InsufficientStorageClusterCapacityFault extends __SmithyException, $MetadataBearer {
4175
- name: "InsufficientStorageClusterCapacityFault";
4176
- $fault: "client";
4177
- message?: string;
4322
+ export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
4323
+ readonly name: "InsufficientStorageClusterCapacityFault";
4324
+ readonly $fault: "client";
4325
+ /**
4326
+ * @internal
4327
+ */
4328
+ constructor(opts: __ExceptionOptionType<InsufficientStorageClusterCapacityFault, __BaseException>);
4178
4329
  }
4179
4330
  /**
4180
4331
  * <p>The DB subnet group cannot be deleted because it's in use.</p>
4181
4332
  */
4182
- export interface InvalidDBSubnetGroupStateFault extends __SmithyException, $MetadataBearer {
4183
- name: "InvalidDBSubnetGroupStateFault";
4184
- $fault: "client";
4185
- message?: string;
4333
+ export declare class InvalidDBSubnetGroupStateFault extends __BaseException {
4334
+ readonly name: "InvalidDBSubnetGroupStateFault";
4335
+ readonly $fault: "client";
4336
+ /**
4337
+ * @internal
4338
+ */
4339
+ constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupStateFault, __BaseException>);
4186
4340
  }
4187
4341
  /**
4188
4342
  * <p>The global cluster is in an invalid state and can't perform the requested operation. </p>
4189
4343
  */
4190
- export interface InvalidGlobalClusterStateFault extends __SmithyException, $MetadataBearer {
4191
- name: "InvalidGlobalClusterStateFault";
4192
- $fault: "client";
4193
- message?: string;
4344
+ export declare class InvalidGlobalClusterStateFault extends __BaseException {
4345
+ readonly name: "InvalidGlobalClusterStateFault";
4346
+ readonly $fault: "client";
4347
+ /**
4348
+ * @internal
4349
+ */
4350
+ constructor(opts: __ExceptionOptionType<InvalidGlobalClusterStateFault, __BaseException>);
4194
4351
  }
4195
4352
  /**
4196
4353
  * <p>The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.</p>
4197
4354
  */
4198
- export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
4199
- name: "InvalidSubnet";
4200
- $fault: "client";
4201
- message?: string;
4355
+ export declare class InvalidSubnet extends __BaseException {
4356
+ readonly name: "InvalidSubnet";
4357
+ readonly $fault: "client";
4358
+ /**
4359
+ * @internal
4360
+ */
4361
+ constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
4202
4362
  }
4203
4363
  /**
4204
4364
  * <p>The DB subnet group doesn't cover all Availability Zones after it's
4205
4365
  * created because of users' change.</p>
4206
4366
  */
4207
- export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
4208
- name: "InvalidVPCNetworkStateFault";
4209
- $fault: "client";
4210
- message?: string;
4367
+ export declare class InvalidVPCNetworkStateFault extends __BaseException {
4368
+ readonly name: "InvalidVPCNetworkStateFault";
4369
+ readonly $fault: "client";
4370
+ /**
4371
+ * @internal
4372
+ */
4373
+ constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
4211
4374
  }
4212
4375
  /**
4213
4376
  * <p>The request would result in the user exceeding the allowed amount of storage
4214
4377
  * available across all DB instances.</p>
4215
4378
  */
4216
- export interface StorageQuotaExceededFault extends __SmithyException, $MetadataBearer {
4217
- name: "StorageQuotaExceededFault";
4218
- $fault: "client";
4219
- message?: string;
4379
+ export declare class StorageQuotaExceededFault extends __BaseException {
4380
+ readonly name: "StorageQuotaExceededFault";
4381
+ readonly $fault: "client";
4382
+ /**
4383
+ * @internal
4384
+ */
4385
+ constructor(opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>);
4220
4386
  }
4221
4387
  export interface CreateDBClusterEndpointMessage {
4222
4388
  /**
@@ -4337,18 +4503,24 @@ export declare namespace DBClusterEndpoint {
4337
4503
  /**
4338
4504
  * <p>The specified custom endpoint can't be created because it already exists.</p>
4339
4505
  */
4340
- export interface DBClusterEndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4341
- name: "DBClusterEndpointAlreadyExistsFault";
4342
- $fault: "client";
4343
- message?: string;
4506
+ export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
4507
+ readonly name: "DBClusterEndpointAlreadyExistsFault";
4508
+ readonly $fault: "client";
4509
+ /**
4510
+ * @internal
4511
+ */
4512
+ constructor(opts: __ExceptionOptionType<DBClusterEndpointAlreadyExistsFault, __BaseException>);
4344
4513
  }
4345
4514
  /**
4346
4515
  * <p>The cluster already has the maximum number of custom endpoints.</p>
4347
4516
  */
4348
- export interface DBClusterEndpointQuotaExceededFault extends __SmithyException, $MetadataBearer {
4349
- name: "DBClusterEndpointQuotaExceededFault";
4350
- $fault: "client";
4351
- message?: string;
4517
+ export declare class DBClusterEndpointQuotaExceededFault extends __BaseException {
4518
+ readonly name: "DBClusterEndpointQuotaExceededFault";
4519
+ readonly $fault: "client";
4520
+ /**
4521
+ * @internal
4522
+ */
4523
+ constructor(opts: __ExceptionOptionType<DBClusterEndpointQuotaExceededFault, __BaseException>);
4352
4524
  }
4353
4525
  /**
4354
4526
  * <p></p>
@@ -4526,15 +4698,21 @@ export declare namespace CreateDBClusterSnapshotResult {
4526
4698
  * <p>Or, RDS might not be authorized to perform necessary actions using IAM on your
4527
4699
  * behalf.</p>
4528
4700
  */
4529
- export interface AuthorizationNotFoundFault extends __SmithyException, $MetadataBearer {
4530
- name: "AuthorizationNotFoundFault";
4531
- $fault: "client";
4532
- message?: string;
4701
+ export declare class AuthorizationNotFoundFault extends __BaseException {
4702
+ readonly name: "AuthorizationNotFoundFault";
4703
+ readonly $fault: "client";
4704
+ /**
4705
+ * @internal
4706
+ */
4707
+ constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
4533
4708
  }
4534
- export interface BackupPolicyNotFoundFault extends __SmithyException, $MetadataBearer {
4535
- name: "BackupPolicyNotFoundFault";
4536
- $fault: "client";
4537
- message?: string;
4709
+ export declare class BackupPolicyNotFoundFault extends __BaseException {
4710
+ readonly name: "BackupPolicyNotFoundFault";
4711
+ readonly $fault: "client";
4712
+ /**
4713
+ * @internal
4714
+ */
4715
+ constructor(opts: __ExceptionOptionType<BackupPolicyNotFoundFault, __BaseException>);
4538
4716
  }
4539
4717
  /**
4540
4718
  * <p></p>
@@ -6510,45 +6688,60 @@ export declare namespace CreateDBInstanceResult {
6510
6688
  /**
6511
6689
  * <p>The user already has a DB instance with the given identifier.</p>
6512
6690
  */
6513
- export interface DBInstanceAlreadyExistsFault extends __SmithyException, $MetadataBearer {
6514
- name: "DBInstanceAlreadyExistsFault";
6515
- $fault: "client";
6516
- message?: string;
6691
+ export declare class DBInstanceAlreadyExistsFault extends __BaseException {
6692
+ readonly name: "DBInstanceAlreadyExistsFault";
6693
+ readonly $fault: "client";
6694
+ /**
6695
+ * @internal
6696
+ */
6697
+ constructor(opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>);
6517
6698
  }
6518
6699
  /**
6519
6700
  * <p>The request would result in the user exceeding the allowed number of DB
6520
6701
  * instances.</p>
6521
6702
  */
6522
- export interface InstanceQuotaExceededFault extends __SmithyException, $MetadataBearer {
6523
- name: "InstanceQuotaExceededFault";
6524
- $fault: "client";
6525
- message?: string;
6703
+ export declare class InstanceQuotaExceededFault extends __BaseException {
6704
+ readonly name: "InstanceQuotaExceededFault";
6705
+ readonly $fault: "client";
6706
+ /**
6707
+ * @internal
6708
+ */
6709
+ constructor(opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>);
6526
6710
  }
6527
6711
  /**
6528
6712
  * <p>The specified DB instance class isn't available in the specified Availability
6529
6713
  * Zone.</p>
6530
6714
  */
6531
- export interface InsufficientDBInstanceCapacityFault extends __SmithyException, $MetadataBearer {
6532
- name: "InsufficientDBInstanceCapacityFault";
6533
- $fault: "client";
6534
- message?: string;
6715
+ export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
6716
+ readonly name: "InsufficientDBInstanceCapacityFault";
6717
+ readonly $fault: "client";
6718
+ /**
6719
+ * @internal
6720
+ */
6721
+ constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
6535
6722
  }
6536
6723
  /**
6537
6724
  * <p>Provisioned IOPS not available in the specified Availability Zone.</p>
6538
6725
  */
6539
- export interface ProvisionedIopsNotAvailableInAZFault extends __SmithyException, $MetadataBearer {
6540
- name: "ProvisionedIopsNotAvailableInAZFault";
6541
- $fault: "client";
6542
- message?: string;
6726
+ export declare class ProvisionedIopsNotAvailableInAZFault extends __BaseException {
6727
+ readonly name: "ProvisionedIopsNotAvailableInAZFault";
6728
+ readonly $fault: "client";
6729
+ /**
6730
+ * @internal
6731
+ */
6732
+ constructor(opts: __ExceptionOptionType<ProvisionedIopsNotAvailableInAZFault, __BaseException>);
6543
6733
  }
6544
6734
  /**
6545
6735
  * <p>Storage of the <code>StorageType</code> specified can't be associated
6546
6736
  * with the DB instance. </p>
6547
6737
  */
6548
- export interface StorageTypeNotSupportedFault extends __SmithyException, $MetadataBearer {
6549
- name: "StorageTypeNotSupportedFault";
6550
- $fault: "client";
6551
- message?: string;
6738
+ export declare class StorageTypeNotSupportedFault extends __BaseException {
6739
+ readonly name: "StorageTypeNotSupportedFault";
6740
+ readonly $fault: "client";
6741
+ /**
6742
+ * @internal
6743
+ */
6744
+ constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
6552
6745
  }
6553
6746
  export interface CreateDBInstanceReadReplicaMessage {
6554
6747
  /**
@@ -7007,19 +7200,25 @@ export declare namespace CreateDBInstanceReadReplicaResult {
7007
7200
  * <p>The DBSubnetGroup shouldn't be specified while creating read replicas that lie
7008
7201
  * in the same region as the source instance.</p>
7009
7202
  */
7010
- export interface DBSubnetGroupNotAllowedFault extends __SmithyException, $MetadataBearer {
7011
- name: "DBSubnetGroupNotAllowedFault";
7012
- $fault: "client";
7013
- message?: string;
7203
+ export declare class DBSubnetGroupNotAllowedFault extends __BaseException {
7204
+ readonly name: "DBSubnetGroupNotAllowedFault";
7205
+ readonly $fault: "client";
7206
+ /**
7207
+ * @internal
7208
+ */
7209
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupNotAllowedFault, __BaseException>);
7014
7210
  }
7015
7211
  /**
7016
7212
  * <p>The DBSubnetGroup doesn't belong to the same VPC as that of an existing
7017
7213
  * cross-region read replica of the same source instance.</p>
7018
7214
  */
7019
- export interface InvalidDBSubnetGroupFault extends __SmithyException, $MetadataBearer {
7020
- name: "InvalidDBSubnetGroupFault";
7021
- $fault: "client";
7022
- message?: string;
7215
+ export declare class InvalidDBSubnetGroupFault extends __BaseException {
7216
+ readonly name: "InvalidDBSubnetGroupFault";
7217
+ readonly $fault: "client";
7218
+ /**
7219
+ * @internal
7220
+ */
7221
+ constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupFault, __BaseException>);
7023
7222
  }
7024
7223
  /**
7025
7224
  * <p></p>
@@ -7404,18 +7603,24 @@ export declare namespace CreateDBProxyResponse {
7404
7603
  /**
7405
7604
  * <p>The specified proxy name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
7406
7605
  */
7407
- export interface DBProxyAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7408
- name: "DBProxyAlreadyExistsFault";
7409
- $fault: "client";
7410
- message?: string;
7606
+ export declare class DBProxyAlreadyExistsFault extends __BaseException {
7607
+ readonly name: "DBProxyAlreadyExistsFault";
7608
+ readonly $fault: "client";
7609
+ /**
7610
+ * @internal
7611
+ */
7612
+ constructor(opts: __ExceptionOptionType<DBProxyAlreadyExistsFault, __BaseException>);
7411
7613
  }
7412
7614
  /**
7413
7615
  * <p>Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.</p>
7414
7616
  */
7415
- export interface DBProxyQuotaExceededFault extends __SmithyException, $MetadataBearer {
7416
- name: "DBProxyQuotaExceededFault";
7417
- $fault: "client";
7418
- message?: string;
7617
+ export declare class DBProxyQuotaExceededFault extends __BaseException {
7618
+ readonly name: "DBProxyQuotaExceededFault";
7619
+ readonly $fault: "client";
7620
+ /**
7621
+ * @internal
7622
+ */
7623
+ constructor(opts: __ExceptionOptionType<DBProxyQuotaExceededFault, __BaseException>);
7419
7624
  }
7420
7625
  export declare enum DBProxyEndpointTargetRole {
7421
7626
  READ_ONLY = "READ_ONLY",
@@ -7550,26 +7755,35 @@ export declare namespace CreateDBProxyEndpointResponse {
7550
7755
  /**
7551
7756
  * <p>The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
7552
7757
  */
7553
- export interface DBProxyEndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7554
- name: "DBProxyEndpointAlreadyExistsFault";
7555
- $fault: "client";
7556
- message?: string;
7758
+ export declare class DBProxyEndpointAlreadyExistsFault extends __BaseException {
7759
+ readonly name: "DBProxyEndpointAlreadyExistsFault";
7760
+ readonly $fault: "client";
7761
+ /**
7762
+ * @internal
7763
+ */
7764
+ constructor(opts: __ExceptionOptionType<DBProxyEndpointAlreadyExistsFault, __BaseException>);
7557
7765
  }
7558
7766
  /**
7559
7767
  * <p>The DB proxy already has the maximum number of endpoints.</p>
7560
7768
  */
7561
- export interface DBProxyEndpointQuotaExceededFault extends __SmithyException, $MetadataBearer {
7562
- name: "DBProxyEndpointQuotaExceededFault";
7563
- $fault: "client";
7564
- message?: string;
7769
+ export declare class DBProxyEndpointQuotaExceededFault extends __BaseException {
7770
+ readonly name: "DBProxyEndpointQuotaExceededFault";
7771
+ readonly $fault: "client";
7772
+ /**
7773
+ * @internal
7774
+ */
7775
+ constructor(opts: __ExceptionOptionType<DBProxyEndpointQuotaExceededFault, __BaseException>);
7565
7776
  }
7566
7777
  /**
7567
7778
  * <p>The requested operation can't be performed while the proxy is in this state.</p>
7568
7779
  */
7569
- export interface InvalidDBProxyStateFault extends __SmithyException, $MetadataBearer {
7570
- name: "InvalidDBProxyStateFault";
7571
- $fault: "client";
7572
- message?: string;
7780
+ export declare class InvalidDBProxyStateFault extends __BaseException {
7781
+ readonly name: "InvalidDBProxyStateFault";
7782
+ readonly $fault: "client";
7783
+ /**
7784
+ * @internal
7785
+ */
7786
+ constructor(opts: __ExceptionOptionType<InvalidDBProxyStateFault, __BaseException>);
7573
7787
  }
7574
7788
  /**
7575
7789
  * <p></p>
@@ -7633,27 +7847,36 @@ export declare namespace CreateDBSecurityGroupResult {
7633
7847
  * <code>DBSecurityGroupName</code> already exists.
7634
7848
  * </p>
7635
7849
  */
7636
- export interface DBSecurityGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7637
- name: "DBSecurityGroupAlreadyExistsFault";
7638
- $fault: "client";
7639
- message?: string;
7850
+ export declare class DBSecurityGroupAlreadyExistsFault extends __BaseException {
7851
+ readonly name: "DBSecurityGroupAlreadyExistsFault";
7852
+ readonly $fault: "client";
7853
+ /**
7854
+ * @internal
7855
+ */
7856
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupAlreadyExistsFault, __BaseException>);
7640
7857
  }
7641
7858
  /**
7642
7859
  * <p>A DB security group isn't allowed for this action.</p>
7643
7860
  */
7644
- export interface DBSecurityGroupNotSupportedFault extends __SmithyException, $MetadataBearer {
7645
- name: "DBSecurityGroupNotSupportedFault";
7646
- $fault: "client";
7647
- message?: string;
7861
+ export declare class DBSecurityGroupNotSupportedFault extends __BaseException {
7862
+ readonly name: "DBSecurityGroupNotSupportedFault";
7863
+ readonly $fault: "client";
7864
+ /**
7865
+ * @internal
7866
+ */
7867
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupNotSupportedFault, __BaseException>);
7648
7868
  }
7649
7869
  /**
7650
7870
  * <p>The request would result in the user exceeding the allowed number of DB security
7651
7871
  * groups.</p>
7652
7872
  */
7653
- export interface DBSecurityGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
7654
- name: "DBSecurityGroupQuotaExceededFault";
7655
- $fault: "client";
7656
- message?: string;
7873
+ export declare class DBSecurityGroupQuotaExceededFault extends __BaseException {
7874
+ readonly name: "DBSecurityGroupQuotaExceededFault";
7875
+ readonly $fault: "client";
7876
+ /**
7877
+ * @internal
7878
+ */
7879
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupQuotaExceededFault, __BaseException>);
7657
7880
  }
7658
7881
  /**
7659
7882
  * <p></p>
@@ -7781,28 +8004,37 @@ export declare namespace CreateDBSubnetGroupResult {
7781
8004
  * <code>DBSubnetGroupName</code> is already used by an existing DB subnet group.
7782
8005
  * </p>
7783
8006
  */
7784
- export interface DBSubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7785
- name: "DBSubnetGroupAlreadyExistsFault";
7786
- $fault: "client";
7787
- message?: string;
8007
+ export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
8008
+ readonly name: "DBSubnetGroupAlreadyExistsFault";
8009
+ readonly $fault: "client";
8010
+ /**
8011
+ * @internal
8012
+ */
8013
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupAlreadyExistsFault, __BaseException>);
7788
8014
  }
7789
8015
  /**
7790
8016
  * <p>The request would result in the user exceeding the allowed number of DB subnet
7791
8017
  * groups.</p>
7792
8018
  */
7793
- export interface DBSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
7794
- name: "DBSubnetGroupQuotaExceededFault";
7795
- $fault: "client";
7796
- message?: string;
8019
+ export declare class DBSubnetGroupQuotaExceededFault extends __BaseException {
8020
+ readonly name: "DBSubnetGroupQuotaExceededFault";
8021
+ readonly $fault: "client";
8022
+ /**
8023
+ * @internal
8024
+ */
8025
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupQuotaExceededFault, __BaseException>);
7797
8026
  }
7798
8027
  /**
7799
8028
  * <p>The request would result in the user exceeding the allowed number of subnets in a
7800
8029
  * DB subnet groups.</p>
7801
8030
  */
7802
- export interface DBSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
7803
- name: "DBSubnetQuotaExceededFault";
7804
- $fault: "client";
7805
- message?: string;
8031
+ export declare class DBSubnetQuotaExceededFault extends __BaseException {
8032
+ readonly name: "DBSubnetQuotaExceededFault";
8033
+ readonly $fault: "client";
8034
+ /**
8035
+ * @internal
8036
+ */
8037
+ constructor(opts: __ExceptionOptionType<DBSubnetQuotaExceededFault, __BaseException>);
7806
8038
  }
7807
8039
  /**
7808
8040
  * <p></p>
@@ -7904,50 +8136,68 @@ export declare namespace CreateEventSubscriptionResult {
7904
8136
  /**
7905
8137
  * <p>You have reached the maximum number of event subscriptions.</p>
7906
8138
  */
7907
- export interface EventSubscriptionQuotaExceededFault extends __SmithyException, $MetadataBearer {
7908
- name: "EventSubscriptionQuotaExceededFault";
7909
- $fault: "client";
7910
- message?: string;
8139
+ export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
8140
+ readonly name: "EventSubscriptionQuotaExceededFault";
8141
+ readonly $fault: "client";
8142
+ /**
8143
+ * @internal
8144
+ */
8145
+ constructor(opts: __ExceptionOptionType<EventSubscriptionQuotaExceededFault, __BaseException>);
7911
8146
  }
7912
8147
  /**
7913
8148
  * <p>SNS has responded that there is a problem with the SNS topic specified.</p>
7914
8149
  */
7915
- export interface SNSInvalidTopicFault extends __SmithyException, $MetadataBearer {
7916
- name: "SNSInvalidTopicFault";
7917
- $fault: "client";
7918
- message?: string;
8150
+ export declare class SNSInvalidTopicFault extends __BaseException {
8151
+ readonly name: "SNSInvalidTopicFault";
8152
+ readonly $fault: "client";
8153
+ /**
8154
+ * @internal
8155
+ */
8156
+ constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
7919
8157
  }
7920
8158
  /**
7921
8159
  * <p>You do not have permission to publish to the SNS topic ARN.</p>
7922
8160
  */
7923
- export interface SNSNoAuthorizationFault extends __SmithyException, $MetadataBearer {
7924
- name: "SNSNoAuthorizationFault";
7925
- $fault: "client";
7926
- message?: string;
8161
+ export declare class SNSNoAuthorizationFault extends __BaseException {
8162
+ readonly name: "SNSNoAuthorizationFault";
8163
+ readonly $fault: "client";
8164
+ /**
8165
+ * @internal
8166
+ */
8167
+ constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
7927
8168
  }
7928
8169
  /**
7929
8170
  * <p>The SNS topic ARN does not exist.</p>
7930
8171
  */
7931
- export interface SNSTopicArnNotFoundFault extends __SmithyException, $MetadataBearer {
7932
- name: "SNSTopicArnNotFoundFault";
7933
- $fault: "client";
7934
- message?: string;
8172
+ export declare class SNSTopicArnNotFoundFault extends __BaseException {
8173
+ readonly name: "SNSTopicArnNotFoundFault";
8174
+ readonly $fault: "client";
8175
+ /**
8176
+ * @internal
8177
+ */
8178
+ constructor(opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>);
7935
8179
  }
7936
8180
  /**
7937
8181
  * <p>The supplied subscription name already exists.</p>
7938
8182
  */
7939
- export interface SubscriptionAlreadyExistFault extends __SmithyException, $MetadataBearer {
7940
- name: "SubscriptionAlreadyExistFault";
7941
- $fault: "client";
7942
- message?: string;
8183
+ export declare class SubscriptionAlreadyExistFault extends __BaseException {
8184
+ readonly name: "SubscriptionAlreadyExistFault";
8185
+ readonly $fault: "client";
8186
+ /**
8187
+ * @internal
8188
+ */
8189
+ constructor(opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>);
7943
8190
  }
7944
8191
  /**
7945
8192
  * <p>The supplied category does not exist.</p>
7946
8193
  */
7947
- export interface SubscriptionCategoryNotFoundFault extends __SmithyException, $MetadataBearer {
7948
- name: "SubscriptionCategoryNotFoundFault";
7949
- $fault: "client";
7950
- message?: string;
8194
+ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
8195
+ readonly name: "SubscriptionCategoryNotFoundFault";
8196
+ readonly $fault: "client";
8197
+ /**
8198
+ * @internal
8199
+ */
8200
+ constructor(opts: __ExceptionOptionType<SubscriptionCategoryNotFoundFault, __BaseException>);
7951
8201
  }
7952
8202
  export interface CreateGlobalClusterMessage {
7953
8203
  /**
@@ -8174,18 +8424,24 @@ export declare namespace CreateGlobalClusterResult {
8174
8424
  /**
8175
8425
  * <p>The <code>GlobalClusterIdentifier</code> already exists. Choose a new global database identifier (unique name) to create a new global database cluster.</p>
8176
8426
  */
8177
- export interface GlobalClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
8178
- name: "GlobalClusterAlreadyExistsFault";
8179
- $fault: "client";
8180
- message?: string;
8427
+ export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
8428
+ readonly name: "GlobalClusterAlreadyExistsFault";
8429
+ readonly $fault: "client";
8430
+ /**
8431
+ * @internal
8432
+ */
8433
+ constructor(opts: __ExceptionOptionType<GlobalClusterAlreadyExistsFault, __BaseException>);
8181
8434
  }
8182
8435
  /**
8183
8436
  * <p>The number of global database clusters for this account is already at the maximum allowed.</p>
8184
8437
  */
8185
- export interface GlobalClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
8186
- name: "GlobalClusterQuotaExceededFault";
8187
- $fault: "client";
8188
- message?: string;
8438
+ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
8439
+ readonly name: "GlobalClusterQuotaExceededFault";
8440
+ readonly $fault: "client";
8441
+ /**
8442
+ * @internal
8443
+ */
8444
+ constructor(opts: __ExceptionOptionType<GlobalClusterQuotaExceededFault, __BaseException>);
8189
8445
  }
8190
8446
  /**
8191
8447
  * <p></p>
@@ -8334,10 +8590,13 @@ export declare namespace DeleteCustomAvailabilityZoneResult {
8334
8590
  /**
8335
8591
  * <p>The specified CEV was not found.</p>
8336
8592
  */
8337
- export interface CustomDBEngineVersionNotFoundFault extends __SmithyException, $MetadataBearer {
8338
- name: "CustomDBEngineVersionNotFoundFault";
8339
- $fault: "client";
8340
- message?: string;
8593
+ export declare class CustomDBEngineVersionNotFoundFault extends __BaseException {
8594
+ readonly name: "CustomDBEngineVersionNotFoundFault";
8595
+ readonly $fault: "client";
8596
+ /**
8597
+ * @internal
8598
+ */
8599
+ constructor(opts: __ExceptionOptionType<CustomDBEngineVersionNotFoundFault, __BaseException>);
8341
8600
  }
8342
8601
  export interface DeleteCustomDBEngineVersionMessage {
8343
8602
  /**
@@ -8360,10 +8619,13 @@ export declare namespace DeleteCustomDBEngineVersionMessage {
8360
8619
  /**
8361
8620
  * <p>You can't delete the CEV.</p>
8362
8621
  */
8363
- export interface InvalidCustomDBEngineVersionStateFault extends __SmithyException, $MetadataBearer {
8364
- name: "InvalidCustomDBEngineVersionStateFault";
8365
- $fault: "client";
8366
- message?: string;
8622
+ export declare class InvalidCustomDBEngineVersionStateFault extends __BaseException {
8623
+ readonly name: "InvalidCustomDBEngineVersionStateFault";
8624
+ readonly $fault: "client";
8625
+ /**
8626
+ * @internal
8627
+ */
8628
+ constructor(opts: __ExceptionOptionType<InvalidCustomDBEngineVersionStateFault, __BaseException>);
8367
8629
  }
8368
8630
  /**
8369
8631
  * <p></p>
@@ -8441,9 +8703,6 @@ export interface DeleteDBClusterResult {
8441
8703
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
8442
8704
  * Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
8443
8705
  * </p>
8444
- * <note>
8445
- * <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
8446
- * </note>
8447
8706
  */
8448
8707
  DBCluster?: DBCluster;
8449
8708
  }
@@ -8456,10 +8715,13 @@ export declare namespace DeleteDBClusterResult {
8456
8715
  /**
8457
8716
  * <p>The specified custom endpoint doesn't exist.</p>
8458
8717
  */
8459
- export interface DBClusterEndpointNotFoundFault extends __SmithyException, $MetadataBearer {
8460
- name: "DBClusterEndpointNotFoundFault";
8461
- $fault: "client";
8462
- message?: string;
8718
+ export declare class DBClusterEndpointNotFoundFault extends __BaseException {
8719
+ readonly name: "DBClusterEndpointNotFoundFault";
8720
+ readonly $fault: "client";
8721
+ /**
8722
+ * @internal
8723
+ */
8724
+ constructor(opts: __ExceptionOptionType<DBClusterEndpointNotFoundFault, __BaseException>);
8463
8725
  }
8464
8726
  export interface DeleteDBClusterEndpointMessage {
8465
8727
  /**
@@ -8476,10 +8738,13 @@ export declare namespace DeleteDBClusterEndpointMessage {
8476
8738
  /**
8477
8739
  * <p>The requested operation can't be performed on the endpoint while the endpoint is in this state.</p>
8478
8740
  */
8479
- export interface InvalidDBClusterEndpointStateFault extends __SmithyException, $MetadataBearer {
8480
- name: "InvalidDBClusterEndpointStateFault";
8481
- $fault: "client";
8482
- message?: string;
8741
+ export declare class InvalidDBClusterEndpointStateFault extends __BaseException {
8742
+ readonly name: "InvalidDBClusterEndpointStateFault";
8743
+ readonly $fault: "client";
8744
+ /**
8745
+ * @internal
8746
+ */
8747
+ constructor(opts: __ExceptionOptionType<InvalidDBClusterEndpointStateFault, __BaseException>);
8483
8748
  }
8484
8749
  /**
8485
8750
  * <p></p>
@@ -8513,10 +8778,13 @@ export declare namespace DeleteDBClusterParameterGroupMessage {
8513
8778
  * to delete the parameter group, you can't delete it when the parameter group is in
8514
8779
  * this state.</p>
8515
8780
  */
8516
- export interface InvalidDBParameterGroupStateFault extends __SmithyException, $MetadataBearer {
8517
- name: "InvalidDBParameterGroupStateFault";
8518
- $fault: "client";
8519
- message?: string;
8781
+ export declare class InvalidDBParameterGroupStateFault extends __BaseException {
8782
+ readonly name: "InvalidDBParameterGroupStateFault";
8783
+ readonly $fault: "client";
8784
+ /**
8785
+ * @internal
8786
+ */
8787
+ constructor(opts: __ExceptionOptionType<InvalidDBParameterGroupStateFault, __BaseException>);
8520
8788
  }
8521
8789
  /**
8522
8790
  * <p></p>
@@ -8555,10 +8823,13 @@ export declare namespace DeleteDBClusterSnapshotResult {
8555
8823
  * from retaining any additional automated backups. The retained automated backups
8556
8824
  * quota is the same as your DB Instance quota.</p>
8557
8825
  */
8558
- export interface DBInstanceAutomatedBackupQuotaExceededFault extends __SmithyException, $MetadataBearer {
8559
- name: "DBInstanceAutomatedBackupQuotaExceededFault";
8560
- $fault: "client";
8561
- message?: string;
8826
+ export declare class DBInstanceAutomatedBackupQuotaExceededFault extends __BaseException {
8827
+ readonly name: "DBInstanceAutomatedBackupQuotaExceededFault";
8828
+ readonly $fault: "client";
8829
+ /**
8830
+ * @internal
8831
+ */
8832
+ constructor(opts: __ExceptionOptionType<DBInstanceAutomatedBackupQuotaExceededFault, __BaseException>);
8562
8833
  }
8563
8834
  /**
8564
8835
  * <p></p>
@@ -8649,10 +8920,13 @@ export declare namespace DeleteDBInstanceResult {
8649
8920
  /**
8650
8921
  * <p>No automated backup for this DB instance was found.</p>
8651
8922
  */
8652
- export interface DBInstanceAutomatedBackupNotFoundFault extends __SmithyException, $MetadataBearer {
8653
- name: "DBInstanceAutomatedBackupNotFoundFault";
8654
- $fault: "client";
8655
- message?: string;
8923
+ export declare class DBInstanceAutomatedBackupNotFoundFault extends __BaseException {
8924
+ readonly name: "DBInstanceAutomatedBackupNotFoundFault";
8925
+ readonly $fault: "client";
8926
+ /**
8927
+ * @internal
8928
+ */
8929
+ constructor(opts: __ExceptionOptionType<DBInstanceAutomatedBackupNotFoundFault, __BaseException>);
8656
8930
  }
8657
8931
  /**
8658
8932
  * <p>Parameter input for the <code>DeleteDBInstanceAutomatedBackup</code> operation.</p>
@@ -8858,10 +9132,13 @@ export declare namespace DeleteDBInstanceAutomatedBackupResult {
8858
9132
  * <p>The automated backup is in an invalid state.
8859
9133
  * For example, this automated backup is associated with an active instance. </p>
8860
9134
  */
8861
- export interface InvalidDBInstanceAutomatedBackupStateFault extends __SmithyException, $MetadataBearer {
8862
- name: "InvalidDBInstanceAutomatedBackupStateFault";
8863
- $fault: "client";
8864
- message?: string;
9135
+ export declare class InvalidDBInstanceAutomatedBackupStateFault extends __BaseException {
9136
+ readonly name: "InvalidDBInstanceAutomatedBackupStateFault";
9137
+ readonly $fault: "client";
9138
+ /**
9139
+ * @internal
9140
+ */
9141
+ constructor(opts: __ExceptionOptionType<InvalidDBInstanceAutomatedBackupStateFault, __BaseException>);
8865
9142
  }
8866
9143
  /**
8867
9144
  * <p></p>
@@ -8917,10 +9194,13 @@ export declare namespace DeleteDBProxyResponse {
8917
9194
  /**
8918
9195
  * <p>The DB proxy endpoint doesn't exist.</p>
8919
9196
  */
8920
- export interface DBProxyEndpointNotFoundFault extends __SmithyException, $MetadataBearer {
8921
- name: "DBProxyEndpointNotFoundFault";
8922
- $fault: "client";
8923
- message?: string;
9197
+ export declare class DBProxyEndpointNotFoundFault extends __BaseException {
9198
+ readonly name: "DBProxyEndpointNotFoundFault";
9199
+ readonly $fault: "client";
9200
+ /**
9201
+ * @internal
9202
+ */
9203
+ constructor(opts: __ExceptionOptionType<DBProxyEndpointNotFoundFault, __BaseException>);
8924
9204
  }
8925
9205
  export interface DeleteDBProxyEndpointRequest {
8926
9206
  /**
@@ -8949,10 +9229,13 @@ export declare namespace DeleteDBProxyEndpointResponse {
8949
9229
  /**
8950
9230
  * <p>You can't perform this operation while the DB proxy endpoint is in a particular state.</p>
8951
9231
  */
8952
- export interface InvalidDBProxyEndpointStateFault extends __SmithyException, $MetadataBearer {
8953
- name: "InvalidDBProxyEndpointStateFault";
8954
- $fault: "client";
8955
- message?: string;
9232
+ export declare class InvalidDBProxyEndpointStateFault extends __BaseException {
9233
+ readonly name: "InvalidDBProxyEndpointStateFault";
9234
+ readonly $fault: "client";
9235
+ /**
9236
+ * @internal
9237
+ */
9238
+ constructor(opts: __ExceptionOptionType<InvalidDBProxyEndpointStateFault, __BaseException>);
8956
9239
  }
8957
9240
  /**
8958
9241
  * <p></p>
@@ -9045,10 +9328,13 @@ export declare namespace DeleteDBSubnetGroupMessage {
9045
9328
  * The DB subnet isn't in the <i>available</i> state.
9046
9329
  * </p>
9047
9330
  */
9048
- export interface InvalidDBSubnetStateFault extends __SmithyException, $MetadataBearer {
9049
- name: "InvalidDBSubnetStateFault";
9050
- $fault: "client";
9051
- message?: string;
9331
+ export declare class InvalidDBSubnetStateFault extends __BaseException {
9332
+ readonly name: "InvalidDBSubnetStateFault";
9333
+ readonly $fault: "client";
9334
+ /**
9335
+ * @internal
9336
+ */
9337
+ constructor(opts: __ExceptionOptionType<InvalidDBSubnetStateFault, __BaseException>);
9052
9338
  }
9053
9339
  /**
9054
9340
  * <p></p>
@@ -9080,10 +9366,13 @@ export declare namespace DeleteEventSubscriptionResult {
9080
9366
  /**
9081
9367
  * <p>This error can occur if someone else is modifying a subscription. You should retry the action.</p>
9082
9368
  */
9083
- export interface InvalidEventSubscriptionStateFault extends __SmithyException, $MetadataBearer {
9084
- name: "InvalidEventSubscriptionStateFault";
9085
- $fault: "client";
9086
- message?: string;
9369
+ export declare class InvalidEventSubscriptionStateFault extends __BaseException {
9370
+ readonly name: "InvalidEventSubscriptionStateFault";
9371
+ readonly $fault: "client";
9372
+ /**
9373
+ * @internal
9374
+ */
9375
+ constructor(opts: __ExceptionOptionType<InvalidEventSubscriptionStateFault, __BaseException>);
9087
9376
  }
9088
9377
  export interface DeleteGlobalClusterMessage {
9089
9378
  /**
@@ -9188,10 +9477,13 @@ export declare namespace InstallationMedia {
9188
9477
  * <p>
9189
9478
  * <code>InstallationMediaID</code> doesn't refer to an existing installation medium.</p>
9190
9479
  */
9191
- export interface InstallationMediaNotFoundFault extends __SmithyException, $MetadataBearer {
9192
- name: "InstallationMediaNotFoundFault";
9193
- $fault: "client";
9194
- message?: string;
9480
+ export declare class InstallationMediaNotFoundFault extends __BaseException {
9481
+ readonly name: "InstallationMediaNotFoundFault";
9482
+ readonly $fault: "client";
9483
+ /**
9484
+ * @internal
9485
+ */
9486
+ constructor(opts: __ExceptionOptionType<InstallationMediaNotFoundFault, __BaseException>);
9195
9487
  }
9196
9488
  /**
9197
9489
  * <p></p>
@@ -9216,18 +9508,24 @@ export declare namespace DeleteOptionGroupMessage {
9216
9508
  * The option group isn't in the <i>available</i> state.
9217
9509
  * </p>
9218
9510
  */
9219
- export interface InvalidOptionGroupStateFault extends __SmithyException, $MetadataBearer {
9220
- name: "InvalidOptionGroupStateFault";
9221
- $fault: "client";
9222
- message?: string;
9511
+ export declare class InvalidOptionGroupStateFault extends __BaseException {
9512
+ readonly name: "InvalidOptionGroupStateFault";
9513
+ readonly $fault: "client";
9514
+ /**
9515
+ * @internal
9516
+ */
9517
+ constructor(opts: __ExceptionOptionType<InvalidOptionGroupStateFault, __BaseException>);
9223
9518
  }
9224
9519
  /**
9225
9520
  * <p>The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
9226
9521
  */
9227
- export interface DBProxyTargetNotFoundFault extends __SmithyException, $MetadataBearer {
9228
- name: "DBProxyTargetNotFoundFault";
9229
- $fault: "client";
9230
- message?: string;
9522
+ export declare class DBProxyTargetNotFoundFault extends __BaseException {
9523
+ readonly name: "DBProxyTargetNotFoundFault";
9524
+ readonly $fault: "client";
9525
+ /**
9526
+ * @internal
9527
+ */
9528
+ constructor(opts: __ExceptionOptionType<DBProxyTargetNotFoundFault, __BaseException>);
9231
9529
  }
9232
9530
  export interface DeregisterDBProxyTargetsRequest {
9233
9531
  /**
@@ -9347,10 +9645,13 @@ export declare namespace CertificateMessage {
9347
9645
  * existing certificate.
9348
9646
  * </p>
9349
9647
  */
9350
- export interface CertificateNotFoundFault extends __SmithyException, $MetadataBearer {
9351
- name: "CertificateNotFoundFault";
9352
- $fault: "client";
9353
- message?: string;
9648
+ export declare class CertificateNotFoundFault extends __BaseException {
9649
+ readonly name: "CertificateNotFoundFault";
9650
+ readonly $fault: "client";
9651
+ /**
9652
+ * @internal
9653
+ */
9654
+ constructor(opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>);
9354
9655
  }
9355
9656
  /**
9356
9657
  * <p>A filter name and value pair that is used to return a more specific list of results
@@ -9525,10 +9826,13 @@ export declare namespace DBClusterBacktrackMessage {
9525
9826
  * <p>
9526
9827
  * <code>BacktrackIdentifier</code> doesn't refer to an existing backtrack. </p>
9527
9828
  */
9528
- export interface DBClusterBacktrackNotFoundFault extends __SmithyException, $MetadataBearer {
9529
- name: "DBClusterBacktrackNotFoundFault";
9530
- $fault: "client";
9531
- message?: string;
9829
+ export declare class DBClusterBacktrackNotFoundFault extends __BaseException {
9830
+ readonly name: "DBClusterBacktrackNotFoundFault";
9831
+ readonly $fault: "client";
9832
+ /**
9833
+ * @internal
9834
+ */
9835
+ constructor(opts: __ExceptionOptionType<DBClusterBacktrackNotFoundFault, __BaseException>);
9532
9836
  }
9533
9837
  /**
9534
9838
  * <p></p>
@@ -9955,25 +10259,25 @@ export interface DescribeDBClustersMessage {
9955
10259
  * <li>
9956
10260
  * <p>
9957
10261
  * <code>clone-group-id</code> - Accepts clone group identifiers.
9958
- * The results list will only include information about
10262
+ * The results list only includes information about
9959
10263
  * the DB clusters associated with these clone groups.</p>
9960
10264
  * </li>
9961
10265
  * <li>
9962
10266
  * <p>
9963
10267
  * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
9964
- * cluster Amazon Resource Names (ARNs). The results list will only include information about
10268
+ * cluster Amazon Resource Names (ARNs). The results list only includes information about
9965
10269
  * the DB clusters identified by these ARNs.</p>
9966
10270
  * </li>
9967
10271
  * <li>
9968
10272
  * <p>
9969
10273
  * <code>domain</code> - Accepts Active Directory directory IDs.
9970
- * The results list will only include information about
10274
+ * The results list only includes information about
9971
10275
  * the DB clusters associated with these domains.</p>
9972
10276
  * </li>
9973
10277
  * <li>
9974
10278
  * <p>
9975
10279
  * <code>engine</code> - Accepts engine names.
9976
- * The results list will only include information about
10280
+ * The results list only includes information about
9977
10281
  * the DB clusters for these engines.</p>
9978
10282
  * </li>
9979
10283
  * </ul>
@@ -10371,7 +10675,86 @@ export interface DescribeDBEngineVersionsMessage {
10371
10675
  */
10372
10676
  DBParameterGroupFamily?: string;
10373
10677
  /**
10374
- * <p>This parameter isn't currently supported.</p>
10678
+ * <p>A filter that specifies one or more DB engine versions to describe.</p>
10679
+ * <p>Supported filters:</p>
10680
+ * <ul>
10681
+ * <li>
10682
+ * <p>
10683
+ * <code>db-parameter-group-family</code> - Accepts parameter groups family names.
10684
+ * The results list only includes information about
10685
+ * the DB engine versions for these parameter group families.
10686
+ * </p>
10687
+ * </li>
10688
+ * <li>
10689
+ * <p>
10690
+ * <code>engine</code> - Accepts engine names.
10691
+ * The results list only includes information about
10692
+ * the DB engine versions for these engines.
10693
+ * </p>
10694
+ * </li>
10695
+ * <li>
10696
+ * <p>
10697
+ * <code>engine-mode</code> - Accepts DB engine modes.
10698
+ * The results list only includes information about
10699
+ * the DB engine versions for these engine modes. Valid
10700
+ * DB engine modes are the following:
10701
+ * </p>
10702
+ * <ul>
10703
+ * <li>
10704
+ * <p>
10705
+ * <code>global</code>
10706
+ * </p>
10707
+ * </li>
10708
+ * <li>
10709
+ * <p>
10710
+ * <code>multimaster</code>
10711
+ * </p>
10712
+ * </li>
10713
+ * <li>
10714
+ * <p>
10715
+ * <code>parallelquery</code>
10716
+ * </p>
10717
+ * </li>
10718
+ * <li>
10719
+ * <p>
10720
+ * <code>provisioned</code>
10721
+ * </p>
10722
+ * </li>
10723
+ * <li>
10724
+ * <p>
10725
+ * <code>serverless</code>
10726
+ * </p>
10727
+ * </li>
10728
+ * </ul>
10729
+ * </li>
10730
+ * <li>
10731
+ * <p>
10732
+ * <code>engine-version</code> - Accepts engine versions.
10733
+ * The results list only includes information about
10734
+ * the DB engine versions for these engine versions.
10735
+ * </p>
10736
+ * </li>
10737
+ * <li>
10738
+ * <p>
10739
+ * <code>status</code> - Accepts engine version statuses.
10740
+ * The results list only includes information about
10741
+ * the DB engine versions for these statuses. Valid statuses
10742
+ * are the following:
10743
+ * </p>
10744
+ * <ul>
10745
+ * <li>
10746
+ * <p>
10747
+ * <code>available</code>
10748
+ * </p>
10749
+ * </li>
10750
+ * <li>
10751
+ * <p>
10752
+ * <code>deprecated</code>
10753
+ * </p>
10754
+ * </li>
10755
+ * </ul>
10756
+ * </li>
10757
+ * </ul>
10375
10758
  */
10376
10759
  Filters?: Filter[];
10377
10760
  /**
@@ -10581,13 +10964,13 @@ export interface DescribeDBInstancesMessage {
10581
10964
  * <li>
10582
10965
  * <p>
10583
10966
  * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
10584
- * cluster Amazon Resource Names (ARNs). The results list will only include information about
10967
+ * cluster Amazon Resource Names (ARNs). The results list only includes information about
10585
10968
  * the DB instances associated with the DB clusters identified by these ARNs.</p>
10586
10969
  * </li>
10587
10970
  * <li>
10588
10971
  * <p>
10589
10972
  * <code>db-instance-id</code> - Accepts DB instance identifiers and DB
10590
- * instance Amazon Resource Names (ARNs). The results list will only include information about
10973
+ * instance Amazon Resource Names (ARNs). The results list only includes information about
10591
10974
  * the DB instances identified by these ARNs.</p>
10592
10975
  * </li>
10593
10976
  * <li>
@@ -10597,12 +10980,12 @@ export interface DescribeDBInstancesMessage {
10597
10980
  * </li>
10598
10981
  * <li>
10599
10982
  * <p>
10600
- * <code>domain</code> - Accepts Active Directory directory IDs. The results list will only
10601
- * include information about the DB instances associated with these domains.</p>
10983
+ * <code>domain</code> - Accepts Active Directory directory IDs. The results list only includes
10984
+ * information about the DB instances associated with these domains.</p>
10602
10985
  * </li>
10603
10986
  * <li>
10604
10987
  * <p>
10605
- * <code>engine</code> - Accepts engine names. The results list will only include information
10988
+ * <code>engine</code> - Accepts engine names. The results list only includes information
10606
10989
  * about the DB instances for these engines.</p>
10607
10990
  * </li>
10608
10991
  * </ul>