@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
  export interface AccountQuota {
4
5
 
@@ -36,28 +37,32 @@ export declare namespace AddRoleToDBClusterMessage {
36
37
  const filterSensitiveLog: (obj: AddRoleToDBClusterMessage) => any;
37
38
  }
38
39
 
39
- export interface DBClusterNotFoundFault extends __SmithyException, $MetadataBearer {
40
- name: "DBClusterNotFoundFault";
41
- $fault: "client";
42
- message?: string;
40
+ export declare class DBClusterNotFoundFault extends __BaseException {
41
+ readonly name: "DBClusterNotFoundFault";
42
+ readonly $fault: "client";
43
+
44
+ constructor(opts: __ExceptionOptionType<DBClusterNotFoundFault, __BaseException>);
43
45
  }
44
46
 
45
- export interface DBClusterRoleAlreadyExistsFault extends __SmithyException, $MetadataBearer {
46
- name: "DBClusterRoleAlreadyExistsFault";
47
- $fault: "client";
48
- message?: string;
47
+ export declare class DBClusterRoleAlreadyExistsFault extends __BaseException {
48
+ readonly name: "DBClusterRoleAlreadyExistsFault";
49
+ readonly $fault: "client";
50
+
51
+ constructor(opts: __ExceptionOptionType<DBClusterRoleAlreadyExistsFault, __BaseException>);
49
52
  }
50
53
 
51
- export interface DBClusterRoleQuotaExceededFault extends __SmithyException, $MetadataBearer {
52
- name: "DBClusterRoleQuotaExceededFault";
53
- $fault: "client";
54
- message?: string;
54
+ export declare class DBClusterRoleQuotaExceededFault extends __BaseException {
55
+ readonly name: "DBClusterRoleQuotaExceededFault";
56
+ readonly $fault: "client";
57
+
58
+ constructor(opts: __ExceptionOptionType<DBClusterRoleQuotaExceededFault, __BaseException>);
55
59
  }
56
60
 
57
- export interface InvalidDBClusterStateFault extends __SmithyException, $MetadataBearer {
58
- name: "InvalidDBClusterStateFault";
59
- $fault: "client";
60
- message?: string;
61
+ export declare class InvalidDBClusterStateFault extends __BaseException {
62
+ readonly name: "InvalidDBClusterStateFault";
63
+ readonly $fault: "client";
64
+
65
+ constructor(opts: __ExceptionOptionType<InvalidDBClusterStateFault, __BaseException>);
61
66
  }
62
67
  export interface AddRoleToDBInstanceMessage {
63
68
 
@@ -72,28 +77,32 @@ export declare namespace AddRoleToDBInstanceMessage {
72
77
  const filterSensitiveLog: (obj: AddRoleToDBInstanceMessage) => any;
73
78
  }
74
79
 
75
- export interface DBInstanceNotFoundFault extends __SmithyException, $MetadataBearer {
76
- name: "DBInstanceNotFoundFault";
77
- $fault: "client";
78
- message?: string;
80
+ export declare class DBInstanceNotFoundFault extends __BaseException {
81
+ readonly name: "DBInstanceNotFoundFault";
82
+ readonly $fault: "client";
83
+
84
+ constructor(opts: __ExceptionOptionType<DBInstanceNotFoundFault, __BaseException>);
79
85
  }
80
86
 
81
- export interface DBInstanceRoleAlreadyExistsFault extends __SmithyException, $MetadataBearer {
82
- name: "DBInstanceRoleAlreadyExistsFault";
83
- $fault: "client";
84
- message?: string;
87
+ export declare class DBInstanceRoleAlreadyExistsFault extends __BaseException {
88
+ readonly name: "DBInstanceRoleAlreadyExistsFault";
89
+ readonly $fault: "client";
90
+
91
+ constructor(opts: __ExceptionOptionType<DBInstanceRoleAlreadyExistsFault, __BaseException>);
85
92
  }
86
93
 
87
- export interface DBInstanceRoleQuotaExceededFault extends __SmithyException, $MetadataBearer {
88
- name: "DBInstanceRoleQuotaExceededFault";
89
- $fault: "client";
90
- message?: string;
94
+ export declare class DBInstanceRoleQuotaExceededFault extends __BaseException {
95
+ readonly name: "DBInstanceRoleQuotaExceededFault";
96
+ readonly $fault: "client";
97
+
98
+ constructor(opts: __ExceptionOptionType<DBInstanceRoleQuotaExceededFault, __BaseException>);
91
99
  }
92
100
 
93
- export interface InvalidDBInstanceStateFault extends __SmithyException, $MetadataBearer {
94
- name: "InvalidDBInstanceStateFault";
95
- $fault: "client";
96
- message?: string;
101
+ export declare class InvalidDBInstanceStateFault extends __BaseException {
102
+ readonly name: "InvalidDBInstanceStateFault";
103
+ readonly $fault: "client";
104
+
105
+ constructor(opts: __ExceptionOptionType<InvalidDBInstanceStateFault, __BaseException>);
97
106
  }
98
107
 
99
108
  export interface AddSourceIdentifierToSubscriptionMessage {
@@ -142,16 +151,18 @@ export declare namespace AddSourceIdentifierToSubscriptionResult {
142
151
  const filterSensitiveLog: (obj: AddSourceIdentifierToSubscriptionResult) => any;
143
152
  }
144
153
 
145
- export interface SourceNotFoundFault extends __SmithyException, $MetadataBearer {
146
- name: "SourceNotFoundFault";
147
- $fault: "client";
148
- message?: string;
154
+ export declare class SourceNotFoundFault extends __BaseException {
155
+ readonly name: "SourceNotFoundFault";
156
+ readonly $fault: "client";
157
+
158
+ constructor(opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>);
149
159
  }
150
160
 
151
- export interface SubscriptionNotFoundFault extends __SmithyException, $MetadataBearer {
152
- name: "SubscriptionNotFoundFault";
153
- $fault: "client";
154
- message?: string;
161
+ export declare class SubscriptionNotFoundFault extends __BaseException {
162
+ readonly name: "SubscriptionNotFoundFault";
163
+ readonly $fault: "client";
164
+
165
+ constructor(opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>);
155
166
  }
156
167
 
157
168
  export interface Tag {
@@ -176,22 +187,25 @@ export declare namespace AddTagsToResourceMessage {
176
187
  const filterSensitiveLog: (obj: AddTagsToResourceMessage) => any;
177
188
  }
178
189
 
179
- export interface DBProxyNotFoundFault extends __SmithyException, $MetadataBearer {
180
- name: "DBProxyNotFoundFault";
181
- $fault: "client";
182
- message?: string;
190
+ export declare class DBProxyNotFoundFault extends __BaseException {
191
+ readonly name: "DBProxyNotFoundFault";
192
+ readonly $fault: "client";
193
+
194
+ constructor(opts: __ExceptionOptionType<DBProxyNotFoundFault, __BaseException>);
183
195
  }
184
196
 
185
- export interface DBProxyTargetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
186
- name: "DBProxyTargetGroupNotFoundFault";
187
- $fault: "client";
188
- message?: string;
197
+ export declare class DBProxyTargetGroupNotFoundFault extends __BaseException {
198
+ readonly name: "DBProxyTargetGroupNotFoundFault";
199
+ readonly $fault: "client";
200
+
201
+ constructor(opts: __ExceptionOptionType<DBProxyTargetGroupNotFoundFault, __BaseException>);
189
202
  }
190
203
 
191
- export interface DBSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
192
- name: "DBSnapshotNotFoundFault";
193
- $fault: "client";
194
- message?: string;
204
+ export declare class DBSnapshotNotFoundFault extends __BaseException {
205
+ readonly name: "DBSnapshotNotFoundFault";
206
+ readonly $fault: "client";
207
+
208
+ constructor(opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>);
195
209
  }
196
210
 
197
211
  export interface ApplyPendingMaintenanceActionMessage {
@@ -245,22 +259,25 @@ export declare namespace ApplyPendingMaintenanceActionResult {
245
259
  const filterSensitiveLog: (obj: ApplyPendingMaintenanceActionResult) => any;
246
260
  }
247
261
 
248
- export interface ResourceNotFoundFault extends __SmithyException, $MetadataBearer {
249
- name: "ResourceNotFoundFault";
250
- $fault: "client";
251
- message?: string;
262
+ export declare class ResourceNotFoundFault extends __BaseException {
263
+ readonly name: "ResourceNotFoundFault";
264
+ readonly $fault: "client";
265
+
266
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
252
267
  }
253
268
 
254
- export interface AuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
255
- name: "AuthorizationAlreadyExistsFault";
256
- $fault: "client";
257
- message?: string;
269
+ export declare class AuthorizationAlreadyExistsFault extends __BaseException {
270
+ readonly name: "AuthorizationAlreadyExistsFault";
271
+ readonly $fault: "client";
272
+
273
+ constructor(opts: __ExceptionOptionType<AuthorizationAlreadyExistsFault, __BaseException>);
258
274
  }
259
275
 
260
- export interface AuthorizationQuotaExceededFault extends __SmithyException, $MetadataBearer {
261
- name: "AuthorizationQuotaExceededFault";
262
- $fault: "client";
263
- message?: string;
276
+ export declare class AuthorizationQuotaExceededFault extends __BaseException {
277
+ readonly name: "AuthorizationQuotaExceededFault";
278
+ readonly $fault: "client";
279
+
280
+ constructor(opts: __ExceptionOptionType<AuthorizationQuotaExceededFault, __BaseException>);
264
281
  }
265
282
 
266
283
  export interface AuthorizeDBSecurityGroupIngressMessage {
@@ -335,16 +352,18 @@ export declare namespace AuthorizeDBSecurityGroupIngressResult {
335
352
  const filterSensitiveLog: (obj: AuthorizeDBSecurityGroupIngressResult) => any;
336
353
  }
337
354
 
338
- export interface DBSecurityGroupNotFoundFault extends __SmithyException, $MetadataBearer {
339
- name: "DBSecurityGroupNotFoundFault";
340
- $fault: "client";
341
- message?: string;
355
+ export declare class DBSecurityGroupNotFoundFault extends __BaseException {
356
+ readonly name: "DBSecurityGroupNotFoundFault";
357
+ readonly $fault: "client";
358
+
359
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupNotFoundFault, __BaseException>);
342
360
  }
343
361
 
344
- export interface InvalidDBSecurityGroupStateFault extends __SmithyException, $MetadataBearer {
345
- name: "InvalidDBSecurityGroupStateFault";
346
- $fault: "client";
347
- message?: string;
362
+ export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
363
+ readonly name: "InvalidDBSecurityGroupStateFault";
364
+ readonly $fault: "client";
365
+
366
+ constructor(opts: __ExceptionOptionType<InvalidDBSecurityGroupStateFault, __BaseException>);
348
367
  }
349
368
 
350
369
  export interface BacktrackDBClusterMessage {
@@ -426,16 +445,18 @@ export declare namespace ExportTask {
426
445
  const filterSensitiveLog: (obj: ExportTask) => any;
427
446
  }
428
447
 
429
- export interface ExportTaskNotFoundFault extends __SmithyException, $MetadataBearer {
430
- name: "ExportTaskNotFoundFault";
431
- $fault: "client";
432
- message?: string;
448
+ export declare class ExportTaskNotFoundFault extends __BaseException {
449
+ readonly name: "ExportTaskNotFoundFault";
450
+ readonly $fault: "client";
451
+
452
+ constructor(opts: __ExceptionOptionType<ExportTaskNotFoundFault, __BaseException>);
433
453
  }
434
454
 
435
- export interface InvalidExportTaskStateFault extends __SmithyException, $MetadataBearer {
436
- name: "InvalidExportTaskStateFault";
437
- $fault: "client";
438
- message?: string;
455
+ export declare class InvalidExportTaskStateFault extends __BaseException {
456
+ readonly name: "InvalidExportTaskStateFault";
457
+ readonly $fault: "client";
458
+
459
+ constructor(opts: __ExceptionOptionType<InvalidExportTaskStateFault, __BaseException>);
439
460
  }
440
461
  export interface CopyDBClusterParameterGroupMessage {
441
462
 
@@ -475,22 +496,25 @@ export declare namespace CopyDBClusterParameterGroupResult {
475
496
  const filterSensitiveLog: (obj: CopyDBClusterParameterGroupResult) => any;
476
497
  }
477
498
 
478
- export interface DBParameterGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
479
- name: "DBParameterGroupAlreadyExistsFault";
480
- $fault: "client";
481
- message?: string;
499
+ export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
500
+ readonly name: "DBParameterGroupAlreadyExistsFault";
501
+ readonly $fault: "client";
502
+
503
+ constructor(opts: __ExceptionOptionType<DBParameterGroupAlreadyExistsFault, __BaseException>);
482
504
  }
483
505
 
484
- export interface DBParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
485
- name: "DBParameterGroupNotFoundFault";
486
- $fault: "client";
487
- message?: string;
506
+ export declare class DBParameterGroupNotFoundFault extends __BaseException {
507
+ readonly name: "DBParameterGroupNotFoundFault";
508
+ readonly $fault: "client";
509
+
510
+ constructor(opts: __ExceptionOptionType<DBParameterGroupNotFoundFault, __BaseException>);
488
511
  }
489
512
 
490
- export interface DBParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
491
- name: "DBParameterGroupQuotaExceededFault";
492
- $fault: "client";
493
- message?: string;
513
+ export declare class DBParameterGroupQuotaExceededFault extends __BaseException {
514
+ readonly name: "DBParameterGroupQuotaExceededFault";
515
+ readonly $fault: "client";
516
+
517
+ constructor(opts: __ExceptionOptionType<DBParameterGroupQuotaExceededFault, __BaseException>);
494
518
  }
495
519
 
496
520
  export interface CopyDBClusterSnapshotMessage {
@@ -571,34 +595,39 @@ export declare namespace CopyDBClusterSnapshotResult {
571
595
  const filterSensitiveLog: (obj: CopyDBClusterSnapshotResult) => any;
572
596
  }
573
597
 
574
- export interface DBClusterSnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
575
- name: "DBClusterSnapshotAlreadyExistsFault";
576
- $fault: "client";
577
- message?: string;
598
+ export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
599
+ readonly name: "DBClusterSnapshotAlreadyExistsFault";
600
+ readonly $fault: "client";
601
+
602
+ constructor(opts: __ExceptionOptionType<DBClusterSnapshotAlreadyExistsFault, __BaseException>);
578
603
  }
579
604
 
580
- export interface DBClusterSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
581
- name: "DBClusterSnapshotNotFoundFault";
582
- $fault: "client";
583
- message?: string;
605
+ export declare class DBClusterSnapshotNotFoundFault extends __BaseException {
606
+ readonly name: "DBClusterSnapshotNotFoundFault";
607
+ readonly $fault: "client";
608
+
609
+ constructor(opts: __ExceptionOptionType<DBClusterSnapshotNotFoundFault, __BaseException>);
584
610
  }
585
611
 
586
- export interface InvalidDBClusterSnapshotStateFault extends __SmithyException, $MetadataBearer {
587
- name: "InvalidDBClusterSnapshotStateFault";
588
- $fault: "client";
589
- message?: string;
612
+ export declare class InvalidDBClusterSnapshotStateFault extends __BaseException {
613
+ readonly name: "InvalidDBClusterSnapshotStateFault";
614
+ readonly $fault: "client";
615
+
616
+ constructor(opts: __ExceptionOptionType<InvalidDBClusterSnapshotStateFault, __BaseException>);
590
617
  }
591
618
 
592
- export interface KMSKeyNotAccessibleFault extends __SmithyException, $MetadataBearer {
593
- name: "KMSKeyNotAccessibleFault";
594
- $fault: "client";
595
- message?: string;
619
+ export declare class KMSKeyNotAccessibleFault extends __BaseException {
620
+ readonly name: "KMSKeyNotAccessibleFault";
621
+ readonly $fault: "client";
622
+
623
+ constructor(opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>);
596
624
  }
597
625
 
598
- export interface SnapshotQuotaExceededFault extends __SmithyException, $MetadataBearer {
599
- name: "SnapshotQuotaExceededFault";
600
- $fault: "client";
601
- message?: string;
626
+ export declare class SnapshotQuotaExceededFault extends __BaseException {
627
+ readonly name: "SnapshotQuotaExceededFault";
628
+ readonly $fault: "client";
629
+
630
+ constructor(opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>);
602
631
  }
603
632
 
604
633
  export interface CopyDBParameterGroupMessage {
@@ -750,22 +779,25 @@ export declare namespace CopyDBSnapshotResult {
750
779
  const filterSensitiveLog: (obj: CopyDBSnapshotResult) => any;
751
780
  }
752
781
 
753
- export interface CustomAvailabilityZoneNotFoundFault extends __SmithyException, $MetadataBearer {
754
- name: "CustomAvailabilityZoneNotFoundFault";
755
- $fault: "client";
756
- message?: string;
782
+ export declare class CustomAvailabilityZoneNotFoundFault extends __BaseException {
783
+ readonly name: "CustomAvailabilityZoneNotFoundFault";
784
+ readonly $fault: "client";
785
+
786
+ constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneNotFoundFault, __BaseException>);
757
787
  }
758
788
 
759
- export interface DBSnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
760
- name: "DBSnapshotAlreadyExistsFault";
761
- $fault: "client";
762
- message?: string;
789
+ export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
790
+ readonly name: "DBSnapshotAlreadyExistsFault";
791
+ readonly $fault: "client";
792
+
793
+ constructor(opts: __ExceptionOptionType<DBSnapshotAlreadyExistsFault, __BaseException>);
763
794
  }
764
795
 
765
- export interface InvalidDBSnapshotStateFault extends __SmithyException, $MetadataBearer {
766
- name: "InvalidDBSnapshotStateFault";
767
- $fault: "client";
768
- message?: string;
796
+ export declare class InvalidDBSnapshotStateFault extends __BaseException {
797
+ readonly name: "InvalidDBSnapshotStateFault";
798
+ readonly $fault: "client";
799
+
800
+ constructor(opts: __ExceptionOptionType<InvalidDBSnapshotStateFault, __BaseException>);
769
801
  }
770
802
 
771
803
  export interface CopyOptionGroupMessage {
@@ -886,22 +918,25 @@ export declare namespace CopyOptionGroupResult {
886
918
  const filterSensitiveLog: (obj: CopyOptionGroupResult) => any;
887
919
  }
888
920
 
889
- export interface OptionGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
890
- name: "OptionGroupAlreadyExistsFault";
891
- $fault: "client";
892
- message?: string;
921
+ export declare class OptionGroupAlreadyExistsFault extends __BaseException {
922
+ readonly name: "OptionGroupAlreadyExistsFault";
923
+ readonly $fault: "client";
924
+
925
+ constructor(opts: __ExceptionOptionType<OptionGroupAlreadyExistsFault, __BaseException>);
893
926
  }
894
927
 
895
- export interface OptionGroupNotFoundFault extends __SmithyException, $MetadataBearer {
896
- name: "OptionGroupNotFoundFault";
897
- $fault: "client";
898
- message?: string;
928
+ export declare class OptionGroupNotFoundFault extends __BaseException {
929
+ readonly name: "OptionGroupNotFoundFault";
930
+ readonly $fault: "client";
931
+
932
+ constructor(opts: __ExceptionOptionType<OptionGroupNotFoundFault, __BaseException>);
899
933
  }
900
934
 
901
- export interface OptionGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
902
- name: "OptionGroupQuotaExceededFault";
903
- $fault: "client";
904
- message?: string;
935
+ export declare class OptionGroupQuotaExceededFault extends __BaseException {
936
+ readonly name: "OptionGroupQuotaExceededFault";
937
+ readonly $fault: "client";
938
+
939
+ constructor(opts: __ExceptionOptionType<OptionGroupQuotaExceededFault, __BaseException>);
905
940
  }
906
941
 
907
942
  export interface CreateCustomAvailabilityZoneMessage {
@@ -961,16 +996,18 @@ export declare namespace CreateCustomAvailabilityZoneResult {
961
996
  const filterSensitiveLog: (obj: CreateCustomAvailabilityZoneResult) => any;
962
997
  }
963
998
 
964
- export interface CustomAvailabilityZoneAlreadyExistsFault extends __SmithyException, $MetadataBearer {
965
- name: "CustomAvailabilityZoneAlreadyExistsFault";
966
- $fault: "client";
967
- message?: string;
999
+ export declare class CustomAvailabilityZoneAlreadyExistsFault extends __BaseException {
1000
+ readonly name: "CustomAvailabilityZoneAlreadyExistsFault";
1001
+ readonly $fault: "client";
1002
+
1003
+ constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneAlreadyExistsFault, __BaseException>);
968
1004
  }
969
1005
 
970
- export interface CustomAvailabilityZoneQuotaExceededFault extends __SmithyException, $MetadataBearer {
971
- name: "CustomAvailabilityZoneQuotaExceededFault";
972
- $fault: "client";
973
- message?: string;
1006
+ export declare class CustomAvailabilityZoneQuotaExceededFault extends __BaseException {
1007
+ readonly name: "CustomAvailabilityZoneQuotaExceededFault";
1008
+ readonly $fault: "client";
1009
+
1010
+ constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneQuotaExceededFault, __BaseException>);
974
1011
  }
975
1012
  export interface CreateCustomDBEngineVersionMessage {
976
1013
 
@@ -995,16 +1032,18 @@ export declare namespace CreateCustomDBEngineVersionMessage {
995
1032
  const filterSensitiveLog: (obj: CreateCustomDBEngineVersionMessage) => any;
996
1033
  }
997
1034
 
998
- export interface CustomDBEngineVersionAlreadyExistsFault extends __SmithyException, $MetadataBearer {
999
- name: "CustomDBEngineVersionAlreadyExistsFault";
1000
- $fault: "client";
1001
- message?: string;
1035
+ export declare class CustomDBEngineVersionAlreadyExistsFault extends __BaseException {
1036
+ readonly name: "CustomDBEngineVersionAlreadyExistsFault";
1037
+ readonly $fault: "client";
1038
+
1039
+ constructor(opts: __ExceptionOptionType<CustomDBEngineVersionAlreadyExistsFault, __BaseException>);
1002
1040
  }
1003
1041
 
1004
- export interface CustomDBEngineVersionQuotaExceededFault extends __SmithyException, $MetadataBearer {
1005
- name: "CustomDBEngineVersionQuotaExceededFault";
1006
- $fault: "client";
1007
- message?: string;
1042
+ export declare class CustomDBEngineVersionQuotaExceededFault extends __BaseException {
1043
+ readonly name: "CustomDBEngineVersionQuotaExceededFault";
1044
+ readonly $fault: "client";
1045
+
1046
+ constructor(opts: __ExceptionOptionType<CustomDBEngineVersionQuotaExceededFault, __BaseException>);
1008
1047
  }
1009
1048
 
1010
1049
  export interface CharacterSet {
@@ -1044,6 +1083,8 @@ export interface UpgradeTarget {
1044
1083
  SupportsParallelQuery?: boolean;
1045
1084
 
1046
1085
  SupportsGlobalDatabases?: boolean;
1086
+
1087
+ SupportsBabelfish?: boolean;
1047
1088
  }
1048
1089
  export declare namespace UpgradeTarget {
1049
1090
 
@@ -1101,6 +1142,8 @@ export interface DBEngineVersion {
1101
1142
  CreateTime?: Date;
1102
1143
 
1103
1144
  TagList?: Tag[];
1145
+
1146
+ SupportsBabelfish?: boolean;
1104
1147
  }
1105
1148
  export declare namespace DBEngineVersion {
1106
1149
 
@@ -1478,82 +1521,95 @@ export declare namespace CreateDBClusterResult {
1478
1521
  const filterSensitiveLog: (obj: CreateDBClusterResult) => any;
1479
1522
  }
1480
1523
 
1481
- export interface DBClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1482
- name: "DBClusterAlreadyExistsFault";
1483
- $fault: "client";
1484
- message?: string;
1524
+ export declare class DBClusterAlreadyExistsFault extends __BaseException {
1525
+ readonly name: "DBClusterAlreadyExistsFault";
1526
+ readonly $fault: "client";
1527
+
1528
+ constructor(opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>);
1485
1529
  }
1486
1530
 
1487
- export interface DBClusterParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
1488
- name: "DBClusterParameterGroupNotFoundFault";
1489
- $fault: "client";
1490
- message?: string;
1531
+ export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
1532
+ readonly name: "DBClusterParameterGroupNotFoundFault";
1533
+ readonly $fault: "client";
1534
+
1535
+ constructor(opts: __ExceptionOptionType<DBClusterParameterGroupNotFoundFault, __BaseException>);
1491
1536
  }
1492
1537
 
1493
- export interface DBClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
1494
- name: "DBClusterQuotaExceededFault";
1495
- $fault: "client";
1496
- message?: string;
1538
+ export declare class DBClusterQuotaExceededFault extends __BaseException {
1539
+ readonly name: "DBClusterQuotaExceededFault";
1540
+ readonly $fault: "client";
1541
+
1542
+ constructor(opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>);
1497
1543
  }
1498
1544
 
1499
- export interface DBSubnetGroupDoesNotCoverEnoughAZs extends __SmithyException, $MetadataBearer {
1500
- name: "DBSubnetGroupDoesNotCoverEnoughAZs";
1501
- $fault: "client";
1502
- message?: string;
1545
+ export declare class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
1546
+ readonly name: "DBSubnetGroupDoesNotCoverEnoughAZs";
1547
+ readonly $fault: "client";
1548
+
1549
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupDoesNotCoverEnoughAZs, __BaseException>);
1503
1550
  }
1504
1551
 
1505
- export interface DBSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
1506
- name: "DBSubnetGroupNotFoundFault";
1507
- $fault: "client";
1508
- message?: string;
1552
+ export declare class DBSubnetGroupNotFoundFault extends __BaseException {
1553
+ readonly name: "DBSubnetGroupNotFoundFault";
1554
+ readonly $fault: "client";
1555
+
1556
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupNotFoundFault, __BaseException>);
1509
1557
  }
1510
1558
 
1511
- export interface DomainNotFoundFault extends __SmithyException, $MetadataBearer {
1512
- name: "DomainNotFoundFault";
1513
- $fault: "client";
1514
- message?: string;
1559
+ export declare class DomainNotFoundFault extends __BaseException {
1560
+ readonly name: "DomainNotFoundFault";
1561
+ readonly $fault: "client";
1562
+
1563
+ constructor(opts: __ExceptionOptionType<DomainNotFoundFault, __BaseException>);
1515
1564
  }
1516
1565
 
1517
- export interface GlobalClusterNotFoundFault extends __SmithyException, $MetadataBearer {
1518
- name: "GlobalClusterNotFoundFault";
1519
- $fault: "client";
1520
- message?: string;
1566
+ export declare class GlobalClusterNotFoundFault extends __BaseException {
1567
+ readonly name: "GlobalClusterNotFoundFault";
1568
+ readonly $fault: "client";
1569
+
1570
+ constructor(opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>);
1521
1571
  }
1522
1572
 
1523
- export interface InsufficientStorageClusterCapacityFault extends __SmithyException, $MetadataBearer {
1524
- name: "InsufficientStorageClusterCapacityFault";
1525
- $fault: "client";
1526
- message?: string;
1573
+ export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
1574
+ readonly name: "InsufficientStorageClusterCapacityFault";
1575
+ readonly $fault: "client";
1576
+
1577
+ constructor(opts: __ExceptionOptionType<InsufficientStorageClusterCapacityFault, __BaseException>);
1527
1578
  }
1528
1579
 
1529
- export interface InvalidDBSubnetGroupStateFault extends __SmithyException, $MetadataBearer {
1530
- name: "InvalidDBSubnetGroupStateFault";
1531
- $fault: "client";
1532
- message?: string;
1580
+ export declare class InvalidDBSubnetGroupStateFault extends __BaseException {
1581
+ readonly name: "InvalidDBSubnetGroupStateFault";
1582
+ readonly $fault: "client";
1583
+
1584
+ constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupStateFault, __BaseException>);
1533
1585
  }
1534
1586
 
1535
- export interface InvalidGlobalClusterStateFault extends __SmithyException, $MetadataBearer {
1536
- name: "InvalidGlobalClusterStateFault";
1537
- $fault: "client";
1538
- message?: string;
1587
+ export declare class InvalidGlobalClusterStateFault extends __BaseException {
1588
+ readonly name: "InvalidGlobalClusterStateFault";
1589
+ readonly $fault: "client";
1590
+
1591
+ constructor(opts: __ExceptionOptionType<InvalidGlobalClusterStateFault, __BaseException>);
1539
1592
  }
1540
1593
 
1541
- export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
1542
- name: "InvalidSubnet";
1543
- $fault: "client";
1544
- message?: string;
1594
+ export declare class InvalidSubnet extends __BaseException {
1595
+ readonly name: "InvalidSubnet";
1596
+ readonly $fault: "client";
1597
+
1598
+ constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
1545
1599
  }
1546
1600
 
1547
- export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
1548
- name: "InvalidVPCNetworkStateFault";
1549
- $fault: "client";
1550
- message?: string;
1601
+ export declare class InvalidVPCNetworkStateFault extends __BaseException {
1602
+ readonly name: "InvalidVPCNetworkStateFault";
1603
+ readonly $fault: "client";
1604
+
1605
+ constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
1551
1606
  }
1552
1607
 
1553
- export interface StorageQuotaExceededFault extends __SmithyException, $MetadataBearer {
1554
- name: "StorageQuotaExceededFault";
1555
- $fault: "client";
1556
- message?: string;
1608
+ export declare class StorageQuotaExceededFault extends __BaseException {
1609
+ readonly name: "StorageQuotaExceededFault";
1610
+ readonly $fault: "client";
1611
+
1612
+ constructor(opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>);
1557
1613
  }
1558
1614
  export interface CreateDBClusterEndpointMessage {
1559
1615
 
@@ -1601,16 +1657,18 @@ export declare namespace DBClusterEndpoint {
1601
1657
  const filterSensitiveLog: (obj: DBClusterEndpoint) => any;
1602
1658
  }
1603
1659
 
1604
- export interface DBClusterEndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1605
- name: "DBClusterEndpointAlreadyExistsFault";
1606
- $fault: "client";
1607
- message?: string;
1660
+ export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
1661
+ readonly name: "DBClusterEndpointAlreadyExistsFault";
1662
+ readonly $fault: "client";
1663
+
1664
+ constructor(opts: __ExceptionOptionType<DBClusterEndpointAlreadyExistsFault, __BaseException>);
1608
1665
  }
1609
1666
 
1610
- export interface DBClusterEndpointQuotaExceededFault extends __SmithyException, $MetadataBearer {
1611
- name: "DBClusterEndpointQuotaExceededFault";
1612
- $fault: "client";
1613
- message?: string;
1667
+ export declare class DBClusterEndpointQuotaExceededFault extends __BaseException {
1668
+ readonly name: "DBClusterEndpointQuotaExceededFault";
1669
+ readonly $fault: "client";
1670
+
1671
+ constructor(opts: __ExceptionOptionType<DBClusterEndpointQuotaExceededFault, __BaseException>);
1614
1672
  }
1615
1673
 
1616
1674
  export interface CreateDBClusterParameterGroupMessage {
@@ -1657,15 +1715,17 @@ export declare namespace CreateDBClusterSnapshotResult {
1657
1715
  const filterSensitiveLog: (obj: CreateDBClusterSnapshotResult) => any;
1658
1716
  }
1659
1717
 
1660
- export interface AuthorizationNotFoundFault extends __SmithyException, $MetadataBearer {
1661
- name: "AuthorizationNotFoundFault";
1662
- $fault: "client";
1663
- message?: string;
1718
+ export declare class AuthorizationNotFoundFault extends __BaseException {
1719
+ readonly name: "AuthorizationNotFoundFault";
1720
+ readonly $fault: "client";
1721
+
1722
+ constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
1664
1723
  }
1665
- export interface BackupPolicyNotFoundFault extends __SmithyException, $MetadataBearer {
1666
- name: "BackupPolicyNotFoundFault";
1667
- $fault: "client";
1668
- message?: string;
1724
+ export declare class BackupPolicyNotFoundFault extends __BaseException {
1725
+ readonly name: "BackupPolicyNotFoundFault";
1726
+ readonly $fault: "client";
1727
+
1728
+ constructor(opts: __ExceptionOptionType<BackupPolicyNotFoundFault, __BaseException>);
1669
1729
  }
1670
1730
 
1671
1731
  export interface CreateDBInstanceMessage {
@@ -2113,34 +2173,39 @@ export declare namespace CreateDBInstanceResult {
2113
2173
  const filterSensitiveLog: (obj: CreateDBInstanceResult) => any;
2114
2174
  }
2115
2175
 
2116
- export interface DBInstanceAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2117
- name: "DBInstanceAlreadyExistsFault";
2118
- $fault: "client";
2119
- message?: string;
2176
+ export declare class DBInstanceAlreadyExistsFault extends __BaseException {
2177
+ readonly name: "DBInstanceAlreadyExistsFault";
2178
+ readonly $fault: "client";
2179
+
2180
+ constructor(opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>);
2120
2181
  }
2121
2182
 
2122
- export interface InstanceQuotaExceededFault extends __SmithyException, $MetadataBearer {
2123
- name: "InstanceQuotaExceededFault";
2124
- $fault: "client";
2125
- message?: string;
2183
+ export declare class InstanceQuotaExceededFault extends __BaseException {
2184
+ readonly name: "InstanceQuotaExceededFault";
2185
+ readonly $fault: "client";
2186
+
2187
+ constructor(opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>);
2126
2188
  }
2127
2189
 
2128
- export interface InsufficientDBInstanceCapacityFault extends __SmithyException, $MetadataBearer {
2129
- name: "InsufficientDBInstanceCapacityFault";
2130
- $fault: "client";
2131
- message?: string;
2190
+ export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
2191
+ readonly name: "InsufficientDBInstanceCapacityFault";
2192
+ readonly $fault: "client";
2193
+
2194
+ constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
2132
2195
  }
2133
2196
 
2134
- export interface ProvisionedIopsNotAvailableInAZFault extends __SmithyException, $MetadataBearer {
2135
- name: "ProvisionedIopsNotAvailableInAZFault";
2136
- $fault: "client";
2137
- message?: string;
2197
+ export declare class ProvisionedIopsNotAvailableInAZFault extends __BaseException {
2198
+ readonly name: "ProvisionedIopsNotAvailableInAZFault";
2199
+ readonly $fault: "client";
2200
+
2201
+ constructor(opts: __ExceptionOptionType<ProvisionedIopsNotAvailableInAZFault, __BaseException>);
2138
2202
  }
2139
2203
 
2140
- export interface StorageTypeNotSupportedFault extends __SmithyException, $MetadataBearer {
2141
- name: "StorageTypeNotSupportedFault";
2142
- $fault: "client";
2143
- message?: string;
2204
+ export declare class StorageTypeNotSupportedFault extends __BaseException {
2205
+ readonly name: "StorageTypeNotSupportedFault";
2206
+ readonly $fault: "client";
2207
+
2208
+ constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
2144
2209
  }
2145
2210
  export interface CreateDBInstanceReadReplicaMessage {
2146
2211
 
@@ -2223,16 +2288,18 @@ export declare namespace CreateDBInstanceReadReplicaResult {
2223
2288
  const filterSensitiveLog: (obj: CreateDBInstanceReadReplicaResult) => any;
2224
2289
  }
2225
2290
 
2226
- export interface DBSubnetGroupNotAllowedFault extends __SmithyException, $MetadataBearer {
2227
- name: "DBSubnetGroupNotAllowedFault";
2228
- $fault: "client";
2229
- message?: string;
2291
+ export declare class DBSubnetGroupNotAllowedFault extends __BaseException {
2292
+ readonly name: "DBSubnetGroupNotAllowedFault";
2293
+ readonly $fault: "client";
2294
+
2295
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupNotAllowedFault, __BaseException>);
2230
2296
  }
2231
2297
 
2232
- export interface InvalidDBSubnetGroupFault extends __SmithyException, $MetadataBearer {
2233
- name: "InvalidDBSubnetGroupFault";
2234
- $fault: "client";
2235
- message?: string;
2298
+ export declare class InvalidDBSubnetGroupFault extends __BaseException {
2299
+ readonly name: "InvalidDBSubnetGroupFault";
2300
+ readonly $fault: "client";
2301
+
2302
+ constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupFault, __BaseException>);
2236
2303
  }
2237
2304
 
2238
2305
  export interface CreateDBParameterGroupMessage {
@@ -2385,16 +2452,18 @@ export declare namespace CreateDBProxyResponse {
2385
2452
  const filterSensitiveLog: (obj: CreateDBProxyResponse) => any;
2386
2453
  }
2387
2454
 
2388
- export interface DBProxyAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2389
- name: "DBProxyAlreadyExistsFault";
2390
- $fault: "client";
2391
- message?: string;
2455
+ export declare class DBProxyAlreadyExistsFault extends __BaseException {
2456
+ readonly name: "DBProxyAlreadyExistsFault";
2457
+ readonly $fault: "client";
2458
+
2459
+ constructor(opts: __ExceptionOptionType<DBProxyAlreadyExistsFault, __BaseException>);
2392
2460
  }
2393
2461
 
2394
- export interface DBProxyQuotaExceededFault extends __SmithyException, $MetadataBearer {
2395
- name: "DBProxyQuotaExceededFault";
2396
- $fault: "client";
2397
- message?: string;
2462
+ export declare class DBProxyQuotaExceededFault extends __BaseException {
2463
+ readonly name: "DBProxyQuotaExceededFault";
2464
+ readonly $fault: "client";
2465
+
2466
+ constructor(opts: __ExceptionOptionType<DBProxyQuotaExceededFault, __BaseException>);
2398
2467
  }
2399
2468
  export declare enum DBProxyEndpointTargetRole {
2400
2469
  READ_ONLY = "READ_ONLY",
@@ -2464,22 +2533,25 @@ export declare namespace CreateDBProxyEndpointResponse {
2464
2533
  const filterSensitiveLog: (obj: CreateDBProxyEndpointResponse) => any;
2465
2534
  }
2466
2535
 
2467
- export interface DBProxyEndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2468
- name: "DBProxyEndpointAlreadyExistsFault";
2469
- $fault: "client";
2470
- message?: string;
2536
+ export declare class DBProxyEndpointAlreadyExistsFault extends __BaseException {
2537
+ readonly name: "DBProxyEndpointAlreadyExistsFault";
2538
+ readonly $fault: "client";
2539
+
2540
+ constructor(opts: __ExceptionOptionType<DBProxyEndpointAlreadyExistsFault, __BaseException>);
2471
2541
  }
2472
2542
 
2473
- export interface DBProxyEndpointQuotaExceededFault extends __SmithyException, $MetadataBearer {
2474
- name: "DBProxyEndpointQuotaExceededFault";
2475
- $fault: "client";
2476
- message?: string;
2543
+ export declare class DBProxyEndpointQuotaExceededFault extends __BaseException {
2544
+ readonly name: "DBProxyEndpointQuotaExceededFault";
2545
+ readonly $fault: "client";
2546
+
2547
+ constructor(opts: __ExceptionOptionType<DBProxyEndpointQuotaExceededFault, __BaseException>);
2477
2548
  }
2478
2549
 
2479
- export interface InvalidDBProxyStateFault extends __SmithyException, $MetadataBearer {
2480
- name: "InvalidDBProxyStateFault";
2481
- $fault: "client";
2482
- message?: string;
2550
+ export declare class InvalidDBProxyStateFault extends __BaseException {
2551
+ readonly name: "InvalidDBProxyStateFault";
2552
+ readonly $fault: "client";
2553
+
2554
+ constructor(opts: __ExceptionOptionType<InvalidDBProxyStateFault, __BaseException>);
2483
2555
  }
2484
2556
 
2485
2557
  export interface CreateDBSecurityGroupMessage {
@@ -2503,22 +2575,25 @@ export declare namespace CreateDBSecurityGroupResult {
2503
2575
  const filterSensitiveLog: (obj: CreateDBSecurityGroupResult) => any;
2504
2576
  }
2505
2577
 
2506
- export interface DBSecurityGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2507
- name: "DBSecurityGroupAlreadyExistsFault";
2508
- $fault: "client";
2509
- message?: string;
2578
+ export declare class DBSecurityGroupAlreadyExistsFault extends __BaseException {
2579
+ readonly name: "DBSecurityGroupAlreadyExistsFault";
2580
+ readonly $fault: "client";
2581
+
2582
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupAlreadyExistsFault, __BaseException>);
2510
2583
  }
2511
2584
 
2512
- export interface DBSecurityGroupNotSupportedFault extends __SmithyException, $MetadataBearer {
2513
- name: "DBSecurityGroupNotSupportedFault";
2514
- $fault: "client";
2515
- message?: string;
2585
+ export declare class DBSecurityGroupNotSupportedFault extends __BaseException {
2586
+ readonly name: "DBSecurityGroupNotSupportedFault";
2587
+ readonly $fault: "client";
2588
+
2589
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupNotSupportedFault, __BaseException>);
2516
2590
  }
2517
2591
 
2518
- export interface DBSecurityGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2519
- name: "DBSecurityGroupQuotaExceededFault";
2520
- $fault: "client";
2521
- message?: string;
2592
+ export declare class DBSecurityGroupQuotaExceededFault extends __BaseException {
2593
+ readonly name: "DBSecurityGroupQuotaExceededFault";
2594
+ readonly $fault: "client";
2595
+
2596
+ constructor(opts: __ExceptionOptionType<DBSecurityGroupQuotaExceededFault, __BaseException>);
2522
2597
  }
2523
2598
 
2524
2599
  export interface CreateDBSnapshotMessage {
@@ -2565,22 +2640,25 @@ export declare namespace CreateDBSubnetGroupResult {
2565
2640
  const filterSensitiveLog: (obj: CreateDBSubnetGroupResult) => any;
2566
2641
  }
2567
2642
 
2568
- export interface DBSubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2569
- name: "DBSubnetGroupAlreadyExistsFault";
2570
- $fault: "client";
2571
- message?: string;
2643
+ export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
2644
+ readonly name: "DBSubnetGroupAlreadyExistsFault";
2645
+ readonly $fault: "client";
2646
+
2647
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupAlreadyExistsFault, __BaseException>);
2572
2648
  }
2573
2649
 
2574
- export interface DBSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2575
- name: "DBSubnetGroupQuotaExceededFault";
2576
- $fault: "client";
2577
- message?: string;
2650
+ export declare class DBSubnetGroupQuotaExceededFault extends __BaseException {
2651
+ readonly name: "DBSubnetGroupQuotaExceededFault";
2652
+ readonly $fault: "client";
2653
+
2654
+ constructor(opts: __ExceptionOptionType<DBSubnetGroupQuotaExceededFault, __BaseException>);
2578
2655
  }
2579
2656
 
2580
- export interface DBSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
2581
- name: "DBSubnetQuotaExceededFault";
2582
- $fault: "client";
2583
- message?: string;
2657
+ export declare class DBSubnetQuotaExceededFault extends __BaseException {
2658
+ readonly name: "DBSubnetQuotaExceededFault";
2659
+ readonly $fault: "client";
2660
+
2661
+ constructor(opts: __ExceptionOptionType<DBSubnetQuotaExceededFault, __BaseException>);
2584
2662
  }
2585
2663
 
2586
2664
  export interface CreateEventSubscriptionMessage {
@@ -2612,40 +2690,46 @@ export declare namespace CreateEventSubscriptionResult {
2612
2690
  const filterSensitiveLog: (obj: CreateEventSubscriptionResult) => any;
2613
2691
  }
2614
2692
 
2615
- export interface EventSubscriptionQuotaExceededFault extends __SmithyException, $MetadataBearer {
2616
- name: "EventSubscriptionQuotaExceededFault";
2617
- $fault: "client";
2618
- message?: string;
2693
+ export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
2694
+ readonly name: "EventSubscriptionQuotaExceededFault";
2695
+ readonly $fault: "client";
2696
+
2697
+ constructor(opts: __ExceptionOptionType<EventSubscriptionQuotaExceededFault, __BaseException>);
2619
2698
  }
2620
2699
 
2621
- export interface SNSInvalidTopicFault extends __SmithyException, $MetadataBearer {
2622
- name: "SNSInvalidTopicFault";
2623
- $fault: "client";
2624
- message?: string;
2700
+ export declare class SNSInvalidTopicFault extends __BaseException {
2701
+ readonly name: "SNSInvalidTopicFault";
2702
+ readonly $fault: "client";
2703
+
2704
+ constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
2625
2705
  }
2626
2706
 
2627
- export interface SNSNoAuthorizationFault extends __SmithyException, $MetadataBearer {
2628
- name: "SNSNoAuthorizationFault";
2629
- $fault: "client";
2630
- message?: string;
2707
+ export declare class SNSNoAuthorizationFault extends __BaseException {
2708
+ readonly name: "SNSNoAuthorizationFault";
2709
+ readonly $fault: "client";
2710
+
2711
+ constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
2631
2712
  }
2632
2713
 
2633
- export interface SNSTopicArnNotFoundFault extends __SmithyException, $MetadataBearer {
2634
- name: "SNSTopicArnNotFoundFault";
2635
- $fault: "client";
2636
- message?: string;
2714
+ export declare class SNSTopicArnNotFoundFault extends __BaseException {
2715
+ readonly name: "SNSTopicArnNotFoundFault";
2716
+ readonly $fault: "client";
2717
+
2718
+ constructor(opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>);
2637
2719
  }
2638
2720
 
2639
- export interface SubscriptionAlreadyExistFault extends __SmithyException, $MetadataBearer {
2640
- name: "SubscriptionAlreadyExistFault";
2641
- $fault: "client";
2642
- message?: string;
2721
+ export declare class SubscriptionAlreadyExistFault extends __BaseException {
2722
+ readonly name: "SubscriptionAlreadyExistFault";
2723
+ readonly $fault: "client";
2724
+
2725
+ constructor(opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>);
2643
2726
  }
2644
2727
 
2645
- export interface SubscriptionCategoryNotFoundFault extends __SmithyException, $MetadataBearer {
2646
- name: "SubscriptionCategoryNotFoundFault";
2647
- $fault: "client";
2648
- message?: string;
2728
+ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
2729
+ readonly name: "SubscriptionCategoryNotFoundFault";
2730
+ readonly $fault: "client";
2731
+
2732
+ constructor(opts: __ExceptionOptionType<SubscriptionCategoryNotFoundFault, __BaseException>);
2649
2733
  }
2650
2734
  export interface CreateGlobalClusterMessage {
2651
2735
 
@@ -2738,16 +2822,18 @@ export declare namespace CreateGlobalClusterResult {
2738
2822
  const filterSensitiveLog: (obj: CreateGlobalClusterResult) => any;
2739
2823
  }
2740
2824
 
2741
- export interface GlobalClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2742
- name: "GlobalClusterAlreadyExistsFault";
2743
- $fault: "client";
2744
- message?: string;
2825
+ export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
2826
+ readonly name: "GlobalClusterAlreadyExistsFault";
2827
+ readonly $fault: "client";
2828
+
2829
+ constructor(opts: __ExceptionOptionType<GlobalClusterAlreadyExistsFault, __BaseException>);
2745
2830
  }
2746
2831
 
2747
- export interface GlobalClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
2748
- name: "GlobalClusterQuotaExceededFault";
2749
- $fault: "client";
2750
- message?: string;
2832
+ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
2833
+ readonly name: "GlobalClusterQuotaExceededFault";
2834
+ readonly $fault: "client";
2835
+
2836
+ constructor(opts: __ExceptionOptionType<GlobalClusterQuotaExceededFault, __BaseException>);
2751
2837
  }
2752
2838
 
2753
2839
  export interface CreateOptionGroupMessage {
@@ -2791,10 +2877,11 @@ export declare namespace DeleteCustomAvailabilityZoneResult {
2791
2877
  const filterSensitiveLog: (obj: DeleteCustomAvailabilityZoneResult) => any;
2792
2878
  }
2793
2879
 
2794
- export interface CustomDBEngineVersionNotFoundFault extends __SmithyException, $MetadataBearer {
2795
- name: "CustomDBEngineVersionNotFoundFault";
2796
- $fault: "client";
2797
- message?: string;
2880
+ export declare class CustomDBEngineVersionNotFoundFault extends __BaseException {
2881
+ readonly name: "CustomDBEngineVersionNotFoundFault";
2882
+ readonly $fault: "client";
2883
+
2884
+ constructor(opts: __ExceptionOptionType<CustomDBEngineVersionNotFoundFault, __BaseException>);
2798
2885
  }
2799
2886
  export interface DeleteCustomDBEngineVersionMessage {
2800
2887
 
@@ -2807,10 +2894,11 @@ export declare namespace DeleteCustomDBEngineVersionMessage {
2807
2894
  const filterSensitiveLog: (obj: DeleteCustomDBEngineVersionMessage) => any;
2808
2895
  }
2809
2896
 
2810
- export interface InvalidCustomDBEngineVersionStateFault extends __SmithyException, $MetadataBearer {
2811
- name: "InvalidCustomDBEngineVersionStateFault";
2812
- $fault: "client";
2813
- message?: string;
2897
+ export declare class InvalidCustomDBEngineVersionStateFault extends __BaseException {
2898
+ readonly name: "InvalidCustomDBEngineVersionStateFault";
2899
+ readonly $fault: "client";
2900
+
2901
+ constructor(opts: __ExceptionOptionType<InvalidCustomDBEngineVersionStateFault, __BaseException>);
2814
2902
  }
2815
2903
 
2816
2904
  export interface DeleteDBClusterMessage {
@@ -2834,10 +2922,11 @@ export declare namespace DeleteDBClusterResult {
2834
2922
  const filterSensitiveLog: (obj: DeleteDBClusterResult) => any;
2835
2923
  }
2836
2924
 
2837
- export interface DBClusterEndpointNotFoundFault extends __SmithyException, $MetadataBearer {
2838
- name: "DBClusterEndpointNotFoundFault";
2839
- $fault: "client";
2840
- message?: string;
2925
+ export declare class DBClusterEndpointNotFoundFault extends __BaseException {
2926
+ readonly name: "DBClusterEndpointNotFoundFault";
2927
+ readonly $fault: "client";
2928
+
2929
+ constructor(opts: __ExceptionOptionType<DBClusterEndpointNotFoundFault, __BaseException>);
2841
2930
  }
2842
2931
  export interface DeleteDBClusterEndpointMessage {
2843
2932
 
@@ -2848,10 +2937,11 @@ export declare namespace DeleteDBClusterEndpointMessage {
2848
2937
  const filterSensitiveLog: (obj: DeleteDBClusterEndpointMessage) => any;
2849
2938
  }
2850
2939
 
2851
- export interface InvalidDBClusterEndpointStateFault extends __SmithyException, $MetadataBearer {
2852
- name: "InvalidDBClusterEndpointStateFault";
2853
- $fault: "client";
2854
- message?: string;
2940
+ export declare class InvalidDBClusterEndpointStateFault extends __BaseException {
2941
+ readonly name: "InvalidDBClusterEndpointStateFault";
2942
+ readonly $fault: "client";
2943
+
2944
+ constructor(opts: __ExceptionOptionType<InvalidDBClusterEndpointStateFault, __BaseException>);
2855
2945
  }
2856
2946
 
2857
2947
  export interface DeleteDBClusterParameterGroupMessage {
@@ -2863,10 +2953,11 @@ export declare namespace DeleteDBClusterParameterGroupMessage {
2863
2953
  const filterSensitiveLog: (obj: DeleteDBClusterParameterGroupMessage) => any;
2864
2954
  }
2865
2955
 
2866
- export interface InvalidDBParameterGroupStateFault extends __SmithyException, $MetadataBearer {
2867
- name: "InvalidDBParameterGroupStateFault";
2868
- $fault: "client";
2869
- message?: string;
2956
+ export declare class InvalidDBParameterGroupStateFault extends __BaseException {
2957
+ readonly name: "InvalidDBParameterGroupStateFault";
2958
+ readonly $fault: "client";
2959
+
2960
+ constructor(opts: __ExceptionOptionType<InvalidDBParameterGroupStateFault, __BaseException>);
2870
2961
  }
2871
2962
 
2872
2963
  export interface DeleteDBClusterSnapshotMessage {
@@ -2886,10 +2977,11 @@ export declare namespace DeleteDBClusterSnapshotResult {
2886
2977
  const filterSensitiveLog: (obj: DeleteDBClusterSnapshotResult) => any;
2887
2978
  }
2888
2979
 
2889
- export interface DBInstanceAutomatedBackupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2890
- name: "DBInstanceAutomatedBackupQuotaExceededFault";
2891
- $fault: "client";
2892
- message?: string;
2980
+ export declare class DBInstanceAutomatedBackupQuotaExceededFault extends __BaseException {
2981
+ readonly name: "DBInstanceAutomatedBackupQuotaExceededFault";
2982
+ readonly $fault: "client";
2983
+
2984
+ constructor(opts: __ExceptionOptionType<DBInstanceAutomatedBackupQuotaExceededFault, __BaseException>);
2893
2985
  }
2894
2986
 
2895
2987
  export interface DeleteDBInstanceMessage {
@@ -2915,10 +3007,11 @@ export declare namespace DeleteDBInstanceResult {
2915
3007
  const filterSensitiveLog: (obj: DeleteDBInstanceResult) => any;
2916
3008
  }
2917
3009
 
2918
- export interface DBInstanceAutomatedBackupNotFoundFault extends __SmithyException, $MetadataBearer {
2919
- name: "DBInstanceAutomatedBackupNotFoundFault";
2920
- $fault: "client";
2921
- message?: string;
3010
+ export declare class DBInstanceAutomatedBackupNotFoundFault extends __BaseException {
3011
+ readonly name: "DBInstanceAutomatedBackupNotFoundFault";
3012
+ readonly $fault: "client";
3013
+
3014
+ constructor(opts: __ExceptionOptionType<DBInstanceAutomatedBackupNotFoundFault, __BaseException>);
2922
3015
  }
2923
3016
 
2924
3017
  export interface DeleteDBInstanceAutomatedBackupMessage {
@@ -3012,10 +3105,11 @@ export declare namespace DeleteDBInstanceAutomatedBackupResult {
3012
3105
  const filterSensitiveLog: (obj: DeleteDBInstanceAutomatedBackupResult) => any;
3013
3106
  }
3014
3107
 
3015
- export interface InvalidDBInstanceAutomatedBackupStateFault extends __SmithyException, $MetadataBearer {
3016
- name: "InvalidDBInstanceAutomatedBackupStateFault";
3017
- $fault: "client";
3018
- message?: string;
3108
+ export declare class InvalidDBInstanceAutomatedBackupStateFault extends __BaseException {
3109
+ readonly name: "InvalidDBInstanceAutomatedBackupStateFault";
3110
+ readonly $fault: "client";
3111
+
3112
+ constructor(opts: __ExceptionOptionType<InvalidDBInstanceAutomatedBackupStateFault, __BaseException>);
3019
3113
  }
3020
3114
 
3021
3115
  export interface DeleteDBParameterGroupMessage {
@@ -3043,10 +3137,11 @@ export declare namespace DeleteDBProxyResponse {
3043
3137
  const filterSensitiveLog: (obj: DeleteDBProxyResponse) => any;
3044
3138
  }
3045
3139
 
3046
- export interface DBProxyEndpointNotFoundFault extends __SmithyException, $MetadataBearer {
3047
- name: "DBProxyEndpointNotFoundFault";
3048
- $fault: "client";
3049
- message?: string;
3140
+ export declare class DBProxyEndpointNotFoundFault extends __BaseException {
3141
+ readonly name: "DBProxyEndpointNotFoundFault";
3142
+ readonly $fault: "client";
3143
+
3144
+ constructor(opts: __ExceptionOptionType<DBProxyEndpointNotFoundFault, __BaseException>);
3050
3145
  }
3051
3146
  export interface DeleteDBProxyEndpointRequest {
3052
3147
 
@@ -3065,10 +3160,11 @@ export declare namespace DeleteDBProxyEndpointResponse {
3065
3160
  const filterSensitiveLog: (obj: DeleteDBProxyEndpointResponse) => any;
3066
3161
  }
3067
3162
 
3068
- export interface InvalidDBProxyEndpointStateFault extends __SmithyException, $MetadataBearer {
3069
- name: "InvalidDBProxyEndpointStateFault";
3070
- $fault: "client";
3071
- message?: string;
3163
+ export declare class InvalidDBProxyEndpointStateFault extends __BaseException {
3164
+ readonly name: "InvalidDBProxyEndpointStateFault";
3165
+ readonly $fault: "client";
3166
+
3167
+ constructor(opts: __ExceptionOptionType<InvalidDBProxyEndpointStateFault, __BaseException>);
3072
3168
  }
3073
3169
 
3074
3170
  export interface DeleteDBSecurityGroupMessage {
@@ -3106,10 +3202,11 @@ export declare namespace DeleteDBSubnetGroupMessage {
3106
3202
  const filterSensitiveLog: (obj: DeleteDBSubnetGroupMessage) => any;
3107
3203
  }
3108
3204
 
3109
- export interface InvalidDBSubnetStateFault extends __SmithyException, $MetadataBearer {
3110
- name: "InvalidDBSubnetStateFault";
3111
- $fault: "client";
3112
- message?: string;
3205
+ export declare class InvalidDBSubnetStateFault extends __BaseException {
3206
+ readonly name: "InvalidDBSubnetStateFault";
3207
+ readonly $fault: "client";
3208
+
3209
+ constructor(opts: __ExceptionOptionType<InvalidDBSubnetStateFault, __BaseException>);
3113
3210
  }
3114
3211
 
3115
3212
  export interface DeleteEventSubscriptionMessage {
@@ -3129,10 +3226,11 @@ export declare namespace DeleteEventSubscriptionResult {
3129
3226
  const filterSensitiveLog: (obj: DeleteEventSubscriptionResult) => any;
3130
3227
  }
3131
3228
 
3132
- export interface InvalidEventSubscriptionStateFault extends __SmithyException, $MetadataBearer {
3133
- name: "InvalidEventSubscriptionStateFault";
3134
- $fault: "client";
3135
- message?: string;
3229
+ export declare class InvalidEventSubscriptionStateFault extends __BaseException {
3230
+ readonly name: "InvalidEventSubscriptionStateFault";
3231
+ readonly $fault: "client";
3232
+
3233
+ constructor(opts: __ExceptionOptionType<InvalidEventSubscriptionStateFault, __BaseException>);
3136
3234
  }
3137
3235
  export interface DeleteGlobalClusterMessage {
3138
3236
 
@@ -3191,10 +3289,11 @@ export declare namespace InstallationMedia {
3191
3289
  const filterSensitiveLog: (obj: InstallationMedia) => any;
3192
3290
  }
3193
3291
 
3194
- export interface InstallationMediaNotFoundFault extends __SmithyException, $MetadataBearer {
3195
- name: "InstallationMediaNotFoundFault";
3196
- $fault: "client";
3197
- message?: string;
3292
+ export declare class InstallationMediaNotFoundFault extends __BaseException {
3293
+ readonly name: "InstallationMediaNotFoundFault";
3294
+ readonly $fault: "client";
3295
+
3296
+ constructor(opts: __ExceptionOptionType<InstallationMediaNotFoundFault, __BaseException>);
3198
3297
  }
3199
3298
 
3200
3299
  export interface DeleteOptionGroupMessage {
@@ -3206,16 +3305,18 @@ export declare namespace DeleteOptionGroupMessage {
3206
3305
  const filterSensitiveLog: (obj: DeleteOptionGroupMessage) => any;
3207
3306
  }
3208
3307
 
3209
- export interface InvalidOptionGroupStateFault extends __SmithyException, $MetadataBearer {
3210
- name: "InvalidOptionGroupStateFault";
3211
- $fault: "client";
3212
- message?: string;
3308
+ export declare class InvalidOptionGroupStateFault extends __BaseException {
3309
+ readonly name: "InvalidOptionGroupStateFault";
3310
+ readonly $fault: "client";
3311
+
3312
+ constructor(opts: __ExceptionOptionType<InvalidOptionGroupStateFault, __BaseException>);
3213
3313
  }
3214
3314
 
3215
- export interface DBProxyTargetNotFoundFault extends __SmithyException, $MetadataBearer {
3216
- name: "DBProxyTargetNotFoundFault";
3217
- $fault: "client";
3218
- message?: string;
3315
+ export declare class DBProxyTargetNotFoundFault extends __BaseException {
3316
+ readonly name: "DBProxyTargetNotFoundFault";
3317
+ readonly $fault: "client";
3318
+
3319
+ constructor(opts: __ExceptionOptionType<DBProxyTargetNotFoundFault, __BaseException>);
3219
3320
  }
3220
3321
  export interface DeregisterDBProxyTargetsRequest {
3221
3322
 
@@ -3279,10 +3380,11 @@ export declare namespace CertificateMessage {
3279
3380
  const filterSensitiveLog: (obj: CertificateMessage) => any;
3280
3381
  }
3281
3382
 
3282
- export interface CertificateNotFoundFault extends __SmithyException, $MetadataBearer {
3283
- name: "CertificateNotFoundFault";
3284
- $fault: "client";
3285
- message?: string;
3383
+ export declare class CertificateNotFoundFault extends __BaseException {
3384
+ readonly name: "CertificateNotFoundFault";
3385
+ readonly $fault: "client";
3386
+
3387
+ constructor(opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>);
3286
3388
  }
3287
3389
 
3288
3390
  export interface Filter {
@@ -3346,10 +3448,11 @@ export declare namespace DBClusterBacktrackMessage {
3346
3448
  const filterSensitiveLog: (obj: DBClusterBacktrackMessage) => any;
3347
3449
  }
3348
3450
 
3349
- export interface DBClusterBacktrackNotFoundFault extends __SmithyException, $MetadataBearer {
3350
- name: "DBClusterBacktrackNotFoundFault";
3351
- $fault: "client";
3352
- message?: string;
3451
+ export declare class DBClusterBacktrackNotFoundFault extends __BaseException {
3452
+ readonly name: "DBClusterBacktrackNotFoundFault";
3453
+ readonly $fault: "client";
3454
+
3455
+ constructor(opts: __ExceptionOptionType<DBClusterBacktrackNotFoundFault, __BaseException>);
3353
3456
  }
3354
3457
 
3355
3458
  export interface DescribeDBClusterBacktracksMessage {