@aws-sdk/client-rds 3.52.0 → 3.54.1

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 +30 -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 +1471 -5261
  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 +3105 -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 +702 -406
  36. package/dist-types/models/models_1.d.ts +238 -133
  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 +492 -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 +29 -29
@@ -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>
@@ -3242,8 +3357,15 @@ export interface CreateDBClusterMessage {
3242
3357
  BacktrackWindow?: number;
3243
3358
  /**
3244
3359
  * <p>The list of log types that need to be enabled for exporting to CloudWatch Logs. The values
3245
- * in the list depend on the DB engine being used. For more information, see
3246
- * <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>
3247
3369
  * <p>
3248
3370
  * <b>Aurora MySQL</b>
3249
3371
  * </p>
@@ -3252,7 +3374,10 @@ export interface CreateDBClusterMessage {
3252
3374
  * <b>Aurora PostgreSQL</b>
3253
3375
  * </p>
3254
3376
  * <p>Possible value is <code>postgresql</code>.</p>
3255
- * <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>
3256
3381
  */
3257
3382
  EnableCloudwatchLogsExports?: string[];
3258
3383
  /**
@@ -3330,7 +3455,7 @@ export interface CreateDBClusterMessage {
3330
3455
  /**
3331
3456
  * <p>A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster.
3332
3457
  * The default is not to copy them.</p>
3333
- * <p>Valid for: Aurora DB clusters only</p>
3458
+ * <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
3334
3459
  */
3335
3460
  CopyTagsToSnapshot?: boolean;
3336
3461
  /**
@@ -3731,9 +3856,6 @@ export declare namespace ScalingConfigurationInfo {
3731
3856
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
3732
3857
  * Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
3733
3858
  * </p>
3734
- * <note>
3735
- * <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
3736
- * </note>
3737
3859
  */
3738
3860
  export interface DBCluster {
3739
3861
  /**
@@ -4099,9 +4221,6 @@ export interface CreateDBClusterResult {
4099
4221
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
4100
4222
  * Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
4101
4223
  * </p>
4102
- * <note>
4103
- * <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
4104
- * </note>
4105
4224
  */
4106
4225
  DBCluster?: DBCluster;
4107
4226
  }
@@ -4114,117 +4233,156 @@ export declare namespace CreateDBClusterResult {
4114
4233
  /**
4115
4234
  * <p>The user already has a DB cluster with the given identifier.</p>
4116
4235
  */
4117
- export interface DBClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4118
- name: "DBClusterAlreadyExistsFault";
4119
- $fault: "client";
4120
- 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>);
4121
4243
  }
4122
4244
  /**
4123
4245
  * <p>
4124
4246
  * <code>DBClusterParameterGroupName</code> doesn't refer to an existing DB
4125
4247
  * cluster parameter group. </p>
4126
4248
  */
4127
- export interface DBClusterParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
4128
- name: "DBClusterParameterGroupNotFoundFault";
4129
- $fault: "client";
4130
- 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>);
4131
4256
  }
4132
4257
  /**
4133
4258
  * <p>The user attempted to create a new DB cluster and the user has already reached the
4134
4259
  * maximum allowed DB cluster quota.</p>
4135
4260
  */
4136
- export interface DBClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
4137
- name: "DBClusterQuotaExceededFault";
4138
- $fault: "client";
4139
- 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>);
4140
4268
  }
4141
4269
  /**
4142
4270
  * <p>Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.</p>
4143
4271
  */
4144
- export interface DBSubnetGroupDoesNotCoverEnoughAZs extends __SmithyException, $MetadataBearer {
4145
- name: "DBSubnetGroupDoesNotCoverEnoughAZs";
4146
- $fault: "client";
4147
- 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>);
4148
4279
  }
4149
4280
  /**
4150
4281
  * <p>
4151
4282
  * <code>DBSubnetGroupName</code> doesn't refer to an existing DB subnet group.
4152
4283
  * </p>
4153
4284
  */
4154
- export interface DBSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
4155
- name: "DBSubnetGroupNotFoundFault";
4156
- $fault: "client";
4157
- 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>);
4158
4292
  }
4159
4293
  /**
4160
4294
  * <p>
4161
4295
  * <code>Domain</code> doesn't refer to an existing Active Directory domain.
4162
4296
  * </p>
4163
4297
  */
4164
- export interface DomainNotFoundFault extends __SmithyException, $MetadataBearer {
4165
- name: "DomainNotFoundFault";
4166
- $fault: "client";
4167
- 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>);
4168
4305
  }
4169
4306
  /**
4170
4307
  * <p>The <code>GlobalClusterIdentifier</code> doesn't refer to an existing global database cluster. </p>
4171
4308
  */
4172
- export interface GlobalClusterNotFoundFault extends __SmithyException, $MetadataBearer {
4173
- name: "GlobalClusterNotFoundFault";
4174
- $fault: "client";
4175
- 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>);
4176
4316
  }
4177
4317
  /**
4178
4318
  * <p>There is insufficient storage available for the current action. You might be able to
4179
4319
  * resolve this error by updating your subnet group to use different Availability Zones
4180
4320
  * that have more storage available.</p>
4181
4321
  */
4182
- export interface InsufficientStorageClusterCapacityFault extends __SmithyException, $MetadataBearer {
4183
- name: "InsufficientStorageClusterCapacityFault";
4184
- $fault: "client";
4185
- 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>);
4186
4329
  }
4187
4330
  /**
4188
4331
  * <p>The DB subnet group cannot be deleted because it's in use.</p>
4189
4332
  */
4190
- export interface InvalidDBSubnetGroupStateFault extends __SmithyException, $MetadataBearer {
4191
- name: "InvalidDBSubnetGroupStateFault";
4192
- $fault: "client";
4193
- 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>);
4194
4340
  }
4195
4341
  /**
4196
4342
  * <p>The global cluster is in an invalid state and can't perform the requested operation. </p>
4197
4343
  */
4198
- export interface InvalidGlobalClusterStateFault extends __SmithyException, $MetadataBearer {
4199
- name: "InvalidGlobalClusterStateFault";
4200
- $fault: "client";
4201
- 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>);
4202
4351
  }
4203
4352
  /**
4204
4353
  * <p>The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.</p>
4205
4354
  */
4206
- export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
4207
- name: "InvalidSubnet";
4208
- $fault: "client";
4209
- 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>);
4210
4362
  }
4211
4363
  /**
4212
4364
  * <p>The DB subnet group doesn't cover all Availability Zones after it's
4213
4365
  * created because of users' change.</p>
4214
4366
  */
4215
- export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
4216
- name: "InvalidVPCNetworkStateFault";
4217
- $fault: "client";
4218
- 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>);
4219
4374
  }
4220
4375
  /**
4221
4376
  * <p>The request would result in the user exceeding the allowed amount of storage
4222
4377
  * available across all DB instances.</p>
4223
4378
  */
4224
- export interface StorageQuotaExceededFault extends __SmithyException, $MetadataBearer {
4225
- name: "StorageQuotaExceededFault";
4226
- $fault: "client";
4227
- 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>);
4228
4386
  }
4229
4387
  export interface CreateDBClusterEndpointMessage {
4230
4388
  /**
@@ -4345,18 +4503,24 @@ export declare namespace DBClusterEndpoint {
4345
4503
  /**
4346
4504
  * <p>The specified custom endpoint can't be created because it already exists.</p>
4347
4505
  */
4348
- export interface DBClusterEndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4349
- name: "DBClusterEndpointAlreadyExistsFault";
4350
- $fault: "client";
4351
- 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>);
4352
4513
  }
4353
4514
  /**
4354
4515
  * <p>The cluster already has the maximum number of custom endpoints.</p>
4355
4516
  */
4356
- export interface DBClusterEndpointQuotaExceededFault extends __SmithyException, $MetadataBearer {
4357
- name: "DBClusterEndpointQuotaExceededFault";
4358
- $fault: "client";
4359
- 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>);
4360
4524
  }
4361
4525
  /**
4362
4526
  * <p></p>
@@ -4534,15 +4698,21 @@ export declare namespace CreateDBClusterSnapshotResult {
4534
4698
  * <p>Or, RDS might not be authorized to perform necessary actions using IAM on your
4535
4699
  * behalf.</p>
4536
4700
  */
4537
- export interface AuthorizationNotFoundFault extends __SmithyException, $MetadataBearer {
4538
- name: "AuthorizationNotFoundFault";
4539
- $fault: "client";
4540
- 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>);
4541
4708
  }
4542
- export interface BackupPolicyNotFoundFault extends __SmithyException, $MetadataBearer {
4543
- name: "BackupPolicyNotFoundFault";
4544
- $fault: "client";
4545
- 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>);
4546
4716
  }
4547
4717
  /**
4548
4718
  * <p></p>
@@ -6518,45 +6688,60 @@ export declare namespace CreateDBInstanceResult {
6518
6688
  /**
6519
6689
  * <p>The user already has a DB instance with the given identifier.</p>
6520
6690
  */
6521
- export interface DBInstanceAlreadyExistsFault extends __SmithyException, $MetadataBearer {
6522
- name: "DBInstanceAlreadyExistsFault";
6523
- $fault: "client";
6524
- 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>);
6525
6698
  }
6526
6699
  /**
6527
6700
  * <p>The request would result in the user exceeding the allowed number of DB
6528
6701
  * instances.</p>
6529
6702
  */
6530
- export interface InstanceQuotaExceededFault extends __SmithyException, $MetadataBearer {
6531
- name: "InstanceQuotaExceededFault";
6532
- $fault: "client";
6533
- 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>);
6534
6710
  }
6535
6711
  /**
6536
6712
  * <p>The specified DB instance class isn't available in the specified Availability
6537
6713
  * Zone.</p>
6538
6714
  */
6539
- export interface InsufficientDBInstanceCapacityFault extends __SmithyException, $MetadataBearer {
6540
- name: "InsufficientDBInstanceCapacityFault";
6541
- $fault: "client";
6542
- 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>);
6543
6722
  }
6544
6723
  /**
6545
6724
  * <p>Provisioned IOPS not available in the specified Availability Zone.</p>
6546
6725
  */
6547
- export interface ProvisionedIopsNotAvailableInAZFault extends __SmithyException, $MetadataBearer {
6548
- name: "ProvisionedIopsNotAvailableInAZFault";
6549
- $fault: "client";
6550
- 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>);
6551
6733
  }
6552
6734
  /**
6553
6735
  * <p>Storage of the <code>StorageType</code> specified can't be associated
6554
6736
  * with the DB instance. </p>
6555
6737
  */
6556
- export interface StorageTypeNotSupportedFault extends __SmithyException, $MetadataBearer {
6557
- name: "StorageTypeNotSupportedFault";
6558
- $fault: "client";
6559
- 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>);
6560
6745
  }
6561
6746
  export interface CreateDBInstanceReadReplicaMessage {
6562
6747
  /**
@@ -7015,19 +7200,25 @@ export declare namespace CreateDBInstanceReadReplicaResult {
7015
7200
  * <p>The DBSubnetGroup shouldn't be specified while creating read replicas that lie
7016
7201
  * in the same region as the source instance.</p>
7017
7202
  */
7018
- export interface DBSubnetGroupNotAllowedFault extends __SmithyException, $MetadataBearer {
7019
- name: "DBSubnetGroupNotAllowedFault";
7020
- $fault: "client";
7021
- 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>);
7022
7210
  }
7023
7211
  /**
7024
7212
  * <p>The DBSubnetGroup doesn't belong to the same VPC as that of an existing
7025
7213
  * cross-region read replica of the same source instance.</p>
7026
7214
  */
7027
- export interface InvalidDBSubnetGroupFault extends __SmithyException, $MetadataBearer {
7028
- name: "InvalidDBSubnetGroupFault";
7029
- $fault: "client";
7030
- 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>);
7031
7222
  }
7032
7223
  /**
7033
7224
  * <p></p>
@@ -7412,18 +7603,24 @@ export declare namespace CreateDBProxyResponse {
7412
7603
  /**
7413
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>
7414
7605
  */
7415
- export interface DBProxyAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7416
- name: "DBProxyAlreadyExistsFault";
7417
- $fault: "client";
7418
- 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>);
7419
7613
  }
7420
7614
  /**
7421
7615
  * <p>Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.</p>
7422
7616
  */
7423
- export interface DBProxyQuotaExceededFault extends __SmithyException, $MetadataBearer {
7424
- name: "DBProxyQuotaExceededFault";
7425
- $fault: "client";
7426
- 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>);
7427
7624
  }
7428
7625
  export declare enum DBProxyEndpointTargetRole {
7429
7626
  READ_ONLY = "READ_ONLY",
@@ -7558,26 +7755,35 @@ export declare namespace CreateDBProxyEndpointResponse {
7558
7755
  /**
7559
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>
7560
7757
  */
7561
- export interface DBProxyEndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7562
- name: "DBProxyEndpointAlreadyExistsFault";
7563
- $fault: "client";
7564
- 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>);
7565
7765
  }
7566
7766
  /**
7567
7767
  * <p>The DB proxy already has the maximum number of endpoints.</p>
7568
7768
  */
7569
- export interface DBProxyEndpointQuotaExceededFault extends __SmithyException, $MetadataBearer {
7570
- name: "DBProxyEndpointQuotaExceededFault";
7571
- $fault: "client";
7572
- 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>);
7573
7776
  }
7574
7777
  /**
7575
7778
  * <p>The requested operation can't be performed while the proxy is in this state.</p>
7576
7779
  */
7577
- export interface InvalidDBProxyStateFault extends __SmithyException, $MetadataBearer {
7578
- name: "InvalidDBProxyStateFault";
7579
- $fault: "client";
7580
- 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>);
7581
7787
  }
7582
7788
  /**
7583
7789
  * <p></p>
@@ -7641,27 +7847,36 @@ export declare namespace CreateDBSecurityGroupResult {
7641
7847
  * <code>DBSecurityGroupName</code> already exists.
7642
7848
  * </p>
7643
7849
  */
7644
- export interface DBSecurityGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7645
- name: "DBSecurityGroupAlreadyExistsFault";
7646
- $fault: "client";
7647
- 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>);
7648
7857
  }
7649
7858
  /**
7650
7859
  * <p>A DB security group isn't allowed for this action.</p>
7651
7860
  */
7652
- export interface DBSecurityGroupNotSupportedFault extends __SmithyException, $MetadataBearer {
7653
- name: "DBSecurityGroupNotSupportedFault";
7654
- $fault: "client";
7655
- 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>);
7656
7868
  }
7657
7869
  /**
7658
7870
  * <p>The request would result in the user exceeding the allowed number of DB security
7659
7871
  * groups.</p>
7660
7872
  */
7661
- export interface DBSecurityGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
7662
- name: "DBSecurityGroupQuotaExceededFault";
7663
- $fault: "client";
7664
- 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>);
7665
7880
  }
7666
7881
  /**
7667
7882
  * <p></p>
@@ -7789,28 +8004,37 @@ export declare namespace CreateDBSubnetGroupResult {
7789
8004
  * <code>DBSubnetGroupName</code> is already used by an existing DB subnet group.
7790
8005
  * </p>
7791
8006
  */
7792
- export interface DBSubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
7793
- name: "DBSubnetGroupAlreadyExistsFault";
7794
- $fault: "client";
7795
- 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>);
7796
8014
  }
7797
8015
  /**
7798
8016
  * <p>The request would result in the user exceeding the allowed number of DB subnet
7799
8017
  * groups.</p>
7800
8018
  */
7801
- export interface DBSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
7802
- name: "DBSubnetGroupQuotaExceededFault";
7803
- $fault: "client";
7804
- 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>);
7805
8026
  }
7806
8027
  /**
7807
8028
  * <p>The request would result in the user exceeding the allowed number of subnets in a
7808
8029
  * DB subnet groups.</p>
7809
8030
  */
7810
- export interface DBSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
7811
- name: "DBSubnetQuotaExceededFault";
7812
- $fault: "client";
7813
- 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>);
7814
8038
  }
7815
8039
  /**
7816
8040
  * <p></p>
@@ -7912,50 +8136,68 @@ export declare namespace CreateEventSubscriptionResult {
7912
8136
  /**
7913
8137
  * <p>You have reached the maximum number of event subscriptions.</p>
7914
8138
  */
7915
- export interface EventSubscriptionQuotaExceededFault extends __SmithyException, $MetadataBearer {
7916
- name: "EventSubscriptionQuotaExceededFault";
7917
- $fault: "client";
7918
- 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>);
7919
8146
  }
7920
8147
  /**
7921
8148
  * <p>SNS has responded that there is a problem with the SNS topic specified.</p>
7922
8149
  */
7923
- export interface SNSInvalidTopicFault extends __SmithyException, $MetadataBearer {
7924
- name: "SNSInvalidTopicFault";
7925
- $fault: "client";
7926
- 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>);
7927
8157
  }
7928
8158
  /**
7929
8159
  * <p>You do not have permission to publish to the SNS topic ARN.</p>
7930
8160
  */
7931
- export interface SNSNoAuthorizationFault extends __SmithyException, $MetadataBearer {
7932
- name: "SNSNoAuthorizationFault";
7933
- $fault: "client";
7934
- 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>);
7935
8168
  }
7936
8169
  /**
7937
8170
  * <p>The SNS topic ARN does not exist.</p>
7938
8171
  */
7939
- export interface SNSTopicArnNotFoundFault extends __SmithyException, $MetadataBearer {
7940
- name: "SNSTopicArnNotFoundFault";
7941
- $fault: "client";
7942
- 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>);
7943
8179
  }
7944
8180
  /**
7945
8181
  * <p>The supplied subscription name already exists.</p>
7946
8182
  */
7947
- export interface SubscriptionAlreadyExistFault extends __SmithyException, $MetadataBearer {
7948
- name: "SubscriptionAlreadyExistFault";
7949
- $fault: "client";
7950
- 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>);
7951
8190
  }
7952
8191
  /**
7953
8192
  * <p>The supplied category does not exist.</p>
7954
8193
  */
7955
- export interface SubscriptionCategoryNotFoundFault extends __SmithyException, $MetadataBearer {
7956
- name: "SubscriptionCategoryNotFoundFault";
7957
- $fault: "client";
7958
- 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>);
7959
8201
  }
7960
8202
  export interface CreateGlobalClusterMessage {
7961
8203
  /**
@@ -8182,18 +8424,24 @@ export declare namespace CreateGlobalClusterResult {
8182
8424
  /**
8183
8425
  * <p>The <code>GlobalClusterIdentifier</code> already exists. Choose a new global database identifier (unique name) to create a new global database cluster.</p>
8184
8426
  */
8185
- export interface GlobalClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
8186
- name: "GlobalClusterAlreadyExistsFault";
8187
- $fault: "client";
8188
- 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>);
8189
8434
  }
8190
8435
  /**
8191
8436
  * <p>The number of global database clusters for this account is already at the maximum allowed.</p>
8192
8437
  */
8193
- export interface GlobalClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
8194
- name: "GlobalClusterQuotaExceededFault";
8195
- $fault: "client";
8196
- 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>);
8197
8445
  }
8198
8446
  /**
8199
8447
  * <p></p>
@@ -8342,10 +8590,13 @@ export declare namespace DeleteCustomAvailabilityZoneResult {
8342
8590
  /**
8343
8591
  * <p>The specified CEV was not found.</p>
8344
8592
  */
8345
- export interface CustomDBEngineVersionNotFoundFault extends __SmithyException, $MetadataBearer {
8346
- name: "CustomDBEngineVersionNotFoundFault";
8347
- $fault: "client";
8348
- 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>);
8349
8600
  }
8350
8601
  export interface DeleteCustomDBEngineVersionMessage {
8351
8602
  /**
@@ -8368,10 +8619,13 @@ export declare namespace DeleteCustomDBEngineVersionMessage {
8368
8619
  /**
8369
8620
  * <p>You can't delete the CEV.</p>
8370
8621
  */
8371
- export interface InvalidCustomDBEngineVersionStateFault extends __SmithyException, $MetadataBearer {
8372
- name: "InvalidCustomDBEngineVersionStateFault";
8373
- $fault: "client";
8374
- 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>);
8375
8629
  }
8376
8630
  /**
8377
8631
  * <p></p>
@@ -8449,9 +8703,6 @@ export interface DeleteDBClusterResult {
8449
8703
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
8450
8704
  * Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
8451
8705
  * </p>
8452
- * <note>
8453
- * <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
8454
- * </note>
8455
8706
  */
8456
8707
  DBCluster?: DBCluster;
8457
8708
  }
@@ -8464,10 +8715,13 @@ export declare namespace DeleteDBClusterResult {
8464
8715
  /**
8465
8716
  * <p>The specified custom endpoint doesn't exist.</p>
8466
8717
  */
8467
- export interface DBClusterEndpointNotFoundFault extends __SmithyException, $MetadataBearer {
8468
- name: "DBClusterEndpointNotFoundFault";
8469
- $fault: "client";
8470
- 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>);
8471
8725
  }
8472
8726
  export interface DeleteDBClusterEndpointMessage {
8473
8727
  /**
@@ -8484,10 +8738,13 @@ export declare namespace DeleteDBClusterEndpointMessage {
8484
8738
  /**
8485
8739
  * <p>The requested operation can't be performed on the endpoint while the endpoint is in this state.</p>
8486
8740
  */
8487
- export interface InvalidDBClusterEndpointStateFault extends __SmithyException, $MetadataBearer {
8488
- name: "InvalidDBClusterEndpointStateFault";
8489
- $fault: "client";
8490
- 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>);
8491
8748
  }
8492
8749
  /**
8493
8750
  * <p></p>
@@ -8521,10 +8778,13 @@ export declare namespace DeleteDBClusterParameterGroupMessage {
8521
8778
  * to delete the parameter group, you can't delete it when the parameter group is in
8522
8779
  * this state.</p>
8523
8780
  */
8524
- export interface InvalidDBParameterGroupStateFault extends __SmithyException, $MetadataBearer {
8525
- name: "InvalidDBParameterGroupStateFault";
8526
- $fault: "client";
8527
- 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>);
8528
8788
  }
8529
8789
  /**
8530
8790
  * <p></p>
@@ -8563,10 +8823,13 @@ export declare namespace DeleteDBClusterSnapshotResult {
8563
8823
  * from retaining any additional automated backups. The retained automated backups
8564
8824
  * quota is the same as your DB Instance quota.</p>
8565
8825
  */
8566
- export interface DBInstanceAutomatedBackupQuotaExceededFault extends __SmithyException, $MetadataBearer {
8567
- name: "DBInstanceAutomatedBackupQuotaExceededFault";
8568
- $fault: "client";
8569
- 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>);
8570
8833
  }
8571
8834
  /**
8572
8835
  * <p></p>
@@ -8657,10 +8920,13 @@ export declare namespace DeleteDBInstanceResult {
8657
8920
  /**
8658
8921
  * <p>No automated backup for this DB instance was found.</p>
8659
8922
  */
8660
- export interface DBInstanceAutomatedBackupNotFoundFault extends __SmithyException, $MetadataBearer {
8661
- name: "DBInstanceAutomatedBackupNotFoundFault";
8662
- $fault: "client";
8663
- 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>);
8664
8930
  }
8665
8931
  /**
8666
8932
  * <p>Parameter input for the <code>DeleteDBInstanceAutomatedBackup</code> operation.</p>
@@ -8866,10 +9132,13 @@ export declare namespace DeleteDBInstanceAutomatedBackupResult {
8866
9132
  * <p>The automated backup is in an invalid state.
8867
9133
  * For example, this automated backup is associated with an active instance. </p>
8868
9134
  */
8869
- export interface InvalidDBInstanceAutomatedBackupStateFault extends __SmithyException, $MetadataBearer {
8870
- name: "InvalidDBInstanceAutomatedBackupStateFault";
8871
- $fault: "client";
8872
- 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>);
8873
9142
  }
8874
9143
  /**
8875
9144
  * <p></p>
@@ -8925,10 +9194,13 @@ export declare namespace DeleteDBProxyResponse {
8925
9194
  /**
8926
9195
  * <p>The DB proxy endpoint doesn't exist.</p>
8927
9196
  */
8928
- export interface DBProxyEndpointNotFoundFault extends __SmithyException, $MetadataBearer {
8929
- name: "DBProxyEndpointNotFoundFault";
8930
- $fault: "client";
8931
- 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>);
8932
9204
  }
8933
9205
  export interface DeleteDBProxyEndpointRequest {
8934
9206
  /**
@@ -8957,10 +9229,13 @@ export declare namespace DeleteDBProxyEndpointResponse {
8957
9229
  /**
8958
9230
  * <p>You can't perform this operation while the DB proxy endpoint is in a particular state.</p>
8959
9231
  */
8960
- export interface InvalidDBProxyEndpointStateFault extends __SmithyException, $MetadataBearer {
8961
- name: "InvalidDBProxyEndpointStateFault";
8962
- $fault: "client";
8963
- 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>);
8964
9239
  }
8965
9240
  /**
8966
9241
  * <p></p>
@@ -9053,10 +9328,13 @@ export declare namespace DeleteDBSubnetGroupMessage {
9053
9328
  * The DB subnet isn't in the <i>available</i> state.
9054
9329
  * </p>
9055
9330
  */
9056
- export interface InvalidDBSubnetStateFault extends __SmithyException, $MetadataBearer {
9057
- name: "InvalidDBSubnetStateFault";
9058
- $fault: "client";
9059
- 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>);
9060
9338
  }
9061
9339
  /**
9062
9340
  * <p></p>
@@ -9088,10 +9366,13 @@ export declare namespace DeleteEventSubscriptionResult {
9088
9366
  /**
9089
9367
  * <p>This error can occur if someone else is modifying a subscription. You should retry the action.</p>
9090
9368
  */
9091
- export interface InvalidEventSubscriptionStateFault extends __SmithyException, $MetadataBearer {
9092
- name: "InvalidEventSubscriptionStateFault";
9093
- $fault: "client";
9094
- 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>);
9095
9376
  }
9096
9377
  export interface DeleteGlobalClusterMessage {
9097
9378
  /**
@@ -9196,10 +9477,13 @@ export declare namespace InstallationMedia {
9196
9477
  * <p>
9197
9478
  * <code>InstallationMediaID</code> doesn't refer to an existing installation medium.</p>
9198
9479
  */
9199
- export interface InstallationMediaNotFoundFault extends __SmithyException, $MetadataBearer {
9200
- name: "InstallationMediaNotFoundFault";
9201
- $fault: "client";
9202
- 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>);
9203
9487
  }
9204
9488
  /**
9205
9489
  * <p></p>
@@ -9224,18 +9508,24 @@ export declare namespace DeleteOptionGroupMessage {
9224
9508
  * The option group isn't in the <i>available</i> state.
9225
9509
  * </p>
9226
9510
  */
9227
- export interface InvalidOptionGroupStateFault extends __SmithyException, $MetadataBearer {
9228
- name: "InvalidOptionGroupStateFault";
9229
- $fault: "client";
9230
- 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>);
9231
9518
  }
9232
9519
  /**
9233
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>
9234
9521
  */
9235
- export interface DBProxyTargetNotFoundFault extends __SmithyException, $MetadataBearer {
9236
- name: "DBProxyTargetNotFoundFault";
9237
- $fault: "client";
9238
- 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>);
9239
9529
  }
9240
9530
  export interface DeregisterDBProxyTargetsRequest {
9241
9531
  /**
@@ -9355,10 +9645,13 @@ export declare namespace CertificateMessage {
9355
9645
  * existing certificate.
9356
9646
  * </p>
9357
9647
  */
9358
- export interface CertificateNotFoundFault extends __SmithyException, $MetadataBearer {
9359
- name: "CertificateNotFoundFault";
9360
- $fault: "client";
9361
- 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>);
9362
9655
  }
9363
9656
  /**
9364
9657
  * <p>A filter name and value pair that is used to return a more specific list of results
@@ -9533,10 +9826,13 @@ export declare namespace DBClusterBacktrackMessage {
9533
9826
  * <p>
9534
9827
  * <code>BacktrackIdentifier</code> doesn't refer to an existing backtrack. </p>
9535
9828
  */
9536
- export interface DBClusterBacktrackNotFoundFault extends __SmithyException, $MetadataBearer {
9537
- name: "DBClusterBacktrackNotFoundFault";
9538
- $fault: "client";
9539
- 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>);
9540
9836
  }
9541
9837
  /**
9542
9838
  * <p></p>