@aws-sdk/client-neptune 3.933.0 → 3.935.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.
@@ -1,44 +1,9 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { NeptuneServiceException as __BaseException } from "./NeptuneServiceException";
1
+ import { ApplyMethod, FailoverStatus, SourceType } from "./enums";
3
2
  export interface AddRoleToDBClusterMessage {
4
3
  DBClusterIdentifier: string | undefined;
5
4
  RoleArn: string | undefined;
6
5
  FeatureName?: string | undefined;
7
6
  }
8
- export declare class DBClusterNotFoundFault extends __BaseException {
9
- readonly name: "DBClusterNotFoundFault";
10
- readonly $fault: "client";
11
- constructor(
12
- opts: __ExceptionOptionType<DBClusterNotFoundFault, __BaseException>
13
- );
14
- }
15
- export declare class DBClusterRoleAlreadyExistsFault extends __BaseException {
16
- readonly name: "DBClusterRoleAlreadyExistsFault";
17
- readonly $fault: "client";
18
- constructor(
19
- opts: __ExceptionOptionType<
20
- DBClusterRoleAlreadyExistsFault,
21
- __BaseException
22
- >
23
- );
24
- }
25
- export declare class DBClusterRoleQuotaExceededFault extends __BaseException {
26
- readonly name: "DBClusterRoleQuotaExceededFault";
27
- readonly $fault: "client";
28
- constructor(
29
- opts: __ExceptionOptionType<
30
- DBClusterRoleQuotaExceededFault,
31
- __BaseException
32
- >
33
- );
34
- }
35
- export declare class InvalidDBClusterStateFault extends __BaseException {
36
- readonly name: "InvalidDBClusterStateFault";
37
- readonly $fault: "client";
38
- constructor(
39
- opts: __ExceptionOptionType<InvalidDBClusterStateFault, __BaseException>
40
- );
41
- }
42
7
  export interface AddSourceIdentifierToSubscriptionMessage {
43
8
  SubscriptionName: string | undefined;
44
9
  SourceIdentifier: string | undefined;
@@ -58,20 +23,6 @@ export interface EventSubscription {
58
23
  export interface AddSourceIdentifierToSubscriptionResult {
59
24
  EventSubscription?: EventSubscription | undefined;
60
25
  }
61
- export declare class SourceNotFoundFault extends __BaseException {
62
- readonly name: "SourceNotFoundFault";
63
- readonly $fault: "client";
64
- constructor(
65
- opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>
66
- );
67
- }
68
- export declare class SubscriptionNotFoundFault extends __BaseException {
69
- readonly name: "SubscriptionNotFoundFault";
70
- readonly $fault: "client";
71
- constructor(
72
- opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>
73
- );
74
- }
75
26
  export interface Tag {
76
27
  Key?: string | undefined;
77
28
  Value?: string | undefined;
@@ -80,20 +31,6 @@ export interface AddTagsToResourceMessage {
80
31
  ResourceName: string | undefined;
81
32
  Tags: Tag[] | undefined;
82
33
  }
83
- export declare class DBInstanceNotFoundFault extends __BaseException {
84
- readonly name: "DBInstanceNotFoundFault";
85
- readonly $fault: "client";
86
- constructor(
87
- opts: __ExceptionOptionType<DBInstanceNotFoundFault, __BaseException>
88
- );
89
- }
90
- export declare class DBSnapshotNotFoundFault extends __BaseException {
91
- readonly name: "DBSnapshotNotFoundFault";
92
- readonly $fault: "client";
93
- constructor(
94
- opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>
95
- );
96
- }
97
34
  export interface ApplyPendingMaintenanceActionMessage {
98
35
  ResourceIdentifier: string | undefined;
99
36
  ApplyAction: string | undefined;
@@ -116,13 +53,6 @@ export interface ApplyPendingMaintenanceActionResult {
116
53
  | ResourcePendingMaintenanceActions
117
54
  | undefined;
118
55
  }
119
- export declare class ResourceNotFoundFault extends __BaseException {
120
- readonly name: "ResourceNotFoundFault";
121
- readonly $fault: "client";
122
- constructor(
123
- opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>
124
- );
125
- }
126
56
  export interface CopyDBClusterParameterGroupMessage {
127
57
  SourceDBClusterParameterGroupIdentifier: string | undefined;
128
58
  TargetDBClusterParameterGroupIdentifier: string | undefined;
@@ -138,33 +68,6 @@ export interface DBClusterParameterGroup {
138
68
  export interface CopyDBClusterParameterGroupResult {
139
69
  DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
140
70
  }
141
- export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
142
- readonly name: "DBParameterGroupAlreadyExistsFault";
143
- readonly $fault: "client";
144
- constructor(
145
- opts: __ExceptionOptionType<
146
- DBParameterGroupAlreadyExistsFault,
147
- __BaseException
148
- >
149
- );
150
- }
151
- export declare class DBParameterGroupNotFoundFault extends __BaseException {
152
- readonly name: "DBParameterGroupNotFoundFault";
153
- readonly $fault: "client";
154
- constructor(
155
- opts: __ExceptionOptionType<DBParameterGroupNotFoundFault, __BaseException>
156
- );
157
- }
158
- export declare class DBParameterGroupQuotaExceededFault extends __BaseException {
159
- readonly name: "DBParameterGroupQuotaExceededFault";
160
- readonly $fault: "client";
161
- constructor(
162
- opts: __ExceptionOptionType<
163
- DBParameterGroupQuotaExceededFault,
164
- __BaseException
165
- >
166
- );
167
- }
168
71
  export interface CopyDBClusterSnapshotMessage {
169
72
  SourceDBClusterSnapshotIdentifier: string | undefined;
170
73
  TargetDBClusterSnapshotIdentifier: string | undefined;
@@ -199,47 +102,6 @@ export interface DBClusterSnapshot {
199
102
  export interface CopyDBClusterSnapshotResult {
200
103
  DBClusterSnapshot?: DBClusterSnapshot | undefined;
201
104
  }
202
- export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
203
- readonly name: "DBClusterSnapshotAlreadyExistsFault";
204
- readonly $fault: "client";
205
- constructor(
206
- opts: __ExceptionOptionType<
207
- DBClusterSnapshotAlreadyExistsFault,
208
- __BaseException
209
- >
210
- );
211
- }
212
- export declare class DBClusterSnapshotNotFoundFault extends __BaseException {
213
- readonly name: "DBClusterSnapshotNotFoundFault";
214
- readonly $fault: "client";
215
- constructor(
216
- opts: __ExceptionOptionType<DBClusterSnapshotNotFoundFault, __BaseException>
217
- );
218
- }
219
- export declare class InvalidDBClusterSnapshotStateFault extends __BaseException {
220
- readonly name: "InvalidDBClusterSnapshotStateFault";
221
- readonly $fault: "client";
222
- constructor(
223
- opts: __ExceptionOptionType<
224
- InvalidDBClusterSnapshotStateFault,
225
- __BaseException
226
- >
227
- );
228
- }
229
- export declare class KMSKeyNotAccessibleFault extends __BaseException {
230
- readonly name: "KMSKeyNotAccessibleFault";
231
- readonly $fault: "client";
232
- constructor(
233
- opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>
234
- );
235
- }
236
- export declare class SnapshotQuotaExceededFault extends __BaseException {
237
- readonly name: "SnapshotQuotaExceededFault";
238
- readonly $fault: "client";
239
- constructor(
240
- opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>
241
- );
242
- }
243
105
  export interface CopyDBParameterGroupMessage {
244
106
  SourceDBParameterGroupIdentifier: string | undefined;
245
107
  TargetDBParameterGroupIdentifier: string | undefined;
@@ -380,104 +242,6 @@ export interface DBCluster {
380
242
  export interface CreateDBClusterResult {
381
243
  DBCluster?: DBCluster | undefined;
382
244
  }
383
- export declare class DBClusterAlreadyExistsFault extends __BaseException {
384
- readonly name: "DBClusterAlreadyExistsFault";
385
- readonly $fault: "client";
386
- constructor(
387
- opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>
388
- );
389
- }
390
- export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
391
- readonly name: "DBClusterParameterGroupNotFoundFault";
392
- readonly $fault: "client";
393
- constructor(
394
- opts: __ExceptionOptionType<
395
- DBClusterParameterGroupNotFoundFault,
396
- __BaseException
397
- >
398
- );
399
- }
400
- export declare class DBClusterQuotaExceededFault extends __BaseException {
401
- readonly name: "DBClusterQuotaExceededFault";
402
- readonly $fault: "client";
403
- constructor(
404
- opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>
405
- );
406
- }
407
- export declare class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
408
- readonly name: "DBSubnetGroupDoesNotCoverEnoughAZs";
409
- readonly $fault: "client";
410
- constructor(
411
- opts: __ExceptionOptionType<
412
- DBSubnetGroupDoesNotCoverEnoughAZs,
413
- __BaseException
414
- >
415
- );
416
- }
417
- export declare class DBSubnetGroupNotFoundFault extends __BaseException {
418
- readonly name: "DBSubnetGroupNotFoundFault";
419
- readonly $fault: "client";
420
- constructor(
421
- opts: __ExceptionOptionType<DBSubnetGroupNotFoundFault, __BaseException>
422
- );
423
- }
424
- export declare class GlobalClusterNotFoundFault extends __BaseException {
425
- readonly name: "GlobalClusterNotFoundFault";
426
- readonly $fault: "client";
427
- constructor(
428
- opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>
429
- );
430
- }
431
- export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
432
- readonly name: "InsufficientStorageClusterCapacityFault";
433
- readonly $fault: "client";
434
- constructor(
435
- opts: __ExceptionOptionType<
436
- InsufficientStorageClusterCapacityFault,
437
- __BaseException
438
- >
439
- );
440
- }
441
- export declare class InvalidDBInstanceStateFault extends __BaseException {
442
- readonly name: "InvalidDBInstanceStateFault";
443
- readonly $fault: "client";
444
- constructor(
445
- opts: __ExceptionOptionType<InvalidDBInstanceStateFault, __BaseException>
446
- );
447
- }
448
- export declare class InvalidDBSubnetGroupStateFault extends __BaseException {
449
- readonly name: "InvalidDBSubnetGroupStateFault";
450
- readonly $fault: "client";
451
- constructor(
452
- opts: __ExceptionOptionType<InvalidDBSubnetGroupStateFault, __BaseException>
453
- );
454
- }
455
- export declare class InvalidGlobalClusterStateFault extends __BaseException {
456
- readonly name: "InvalidGlobalClusterStateFault";
457
- readonly $fault: "client";
458
- constructor(
459
- opts: __ExceptionOptionType<InvalidGlobalClusterStateFault, __BaseException>
460
- );
461
- }
462
- export declare class InvalidSubnet extends __BaseException {
463
- readonly name: "InvalidSubnet";
464
- readonly $fault: "client";
465
- constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
466
- }
467
- export declare class InvalidVPCNetworkStateFault extends __BaseException {
468
- readonly name: "InvalidVPCNetworkStateFault";
469
- readonly $fault: "client";
470
- constructor(
471
- opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>
472
- );
473
- }
474
- export declare class StorageQuotaExceededFault extends __BaseException {
475
- readonly name: "StorageQuotaExceededFault";
476
- readonly $fault: "client";
477
- constructor(
478
- opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>
479
- );
480
- }
481
245
  export interface CreateDBClusterEndpointMessage {
482
246
  DBClusterIdentifier: string | undefined;
483
247
  DBClusterEndpointIdentifier: string | undefined;
@@ -498,26 +262,6 @@ export interface CreateDBClusterEndpointOutput {
498
262
  ExcludedMembers?: string[] | undefined;
499
263
  DBClusterEndpointArn?: string | undefined;
500
264
  }
501
- export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
502
- readonly name: "DBClusterEndpointAlreadyExistsFault";
503
- readonly $fault: "client";
504
- constructor(
505
- opts: __ExceptionOptionType<
506
- DBClusterEndpointAlreadyExistsFault,
507
- __BaseException
508
- >
509
- );
510
- }
511
- export declare class DBClusterEndpointQuotaExceededFault extends __BaseException {
512
- readonly name: "DBClusterEndpointQuotaExceededFault";
513
- readonly $fault: "client";
514
- constructor(
515
- opts: __ExceptionOptionType<
516
- DBClusterEndpointQuotaExceededFault,
517
- __BaseException
518
- >
519
- );
520
- }
521
265
  export interface CreateDBClusterParameterGroupMessage {
522
266
  DBClusterParameterGroupName: string | undefined;
523
267
  DBParameterGroupFamily: string | undefined;
@@ -535,13 +279,6 @@ export interface CreateDBClusterSnapshotMessage {
535
279
  export interface CreateDBClusterSnapshotResult {
536
280
  DBClusterSnapshot?: DBClusterSnapshot | undefined;
537
281
  }
538
- export declare class AuthorizationNotFoundFault extends __BaseException {
539
- readonly name: "AuthorizationNotFoundFault";
540
- readonly $fault: "client";
541
- constructor(
542
- opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>
543
- );
544
- }
545
282
  export interface CreateDBInstanceMessage {
546
283
  DBName?: string | undefined;
547
284
  DBInstanceIdentifier: string | undefined;
@@ -706,68 +443,6 @@ export interface DBInstance {
706
443
  export interface CreateDBInstanceResult {
707
444
  DBInstance?: DBInstance | undefined;
708
445
  }
709
- export declare class DBInstanceAlreadyExistsFault extends __BaseException {
710
- readonly name: "DBInstanceAlreadyExistsFault";
711
- readonly $fault: "client";
712
- constructor(
713
- opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>
714
- );
715
- }
716
- export declare class DBSecurityGroupNotFoundFault extends __BaseException {
717
- readonly name: "DBSecurityGroupNotFoundFault";
718
- readonly $fault: "client";
719
- constructor(
720
- opts: __ExceptionOptionType<DBSecurityGroupNotFoundFault, __BaseException>
721
- );
722
- }
723
- export declare class DomainNotFoundFault extends __BaseException {
724
- readonly name: "DomainNotFoundFault";
725
- readonly $fault: "client";
726
- constructor(
727
- opts: __ExceptionOptionType<DomainNotFoundFault, __BaseException>
728
- );
729
- }
730
- export declare class InstanceQuotaExceededFault extends __BaseException {
731
- readonly name: "InstanceQuotaExceededFault";
732
- readonly $fault: "client";
733
- constructor(
734
- opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>
735
- );
736
- }
737
- export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
738
- readonly name: "InsufficientDBInstanceCapacityFault";
739
- readonly $fault: "client";
740
- constructor(
741
- opts: __ExceptionOptionType<
742
- InsufficientDBInstanceCapacityFault,
743
- __BaseException
744
- >
745
- );
746
- }
747
- export declare class OptionGroupNotFoundFault extends __BaseException {
748
- readonly name: "OptionGroupNotFoundFault";
749
- readonly $fault: "client";
750
- constructor(
751
- opts: __ExceptionOptionType<OptionGroupNotFoundFault, __BaseException>
752
- );
753
- }
754
- export declare class ProvisionedIopsNotAvailableInAZFault extends __BaseException {
755
- readonly name: "ProvisionedIopsNotAvailableInAZFault";
756
- readonly $fault: "client";
757
- constructor(
758
- opts: __ExceptionOptionType<
759
- ProvisionedIopsNotAvailableInAZFault,
760
- __BaseException
761
- >
762
- );
763
- }
764
- export declare class StorageTypeNotSupportedFault extends __BaseException {
765
- readonly name: "StorageTypeNotSupportedFault";
766
- readonly $fault: "client";
767
- constructor(
768
- opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>
769
- );
770
- }
771
446
  export interface CreateDBParameterGroupMessage {
772
447
  DBParameterGroupName: string | undefined;
773
448
  DBParameterGroupFamily: string | undefined;
@@ -786,33 +461,6 @@ export interface CreateDBSubnetGroupMessage {
786
461
  export interface CreateDBSubnetGroupResult {
787
462
  DBSubnetGroup?: DBSubnetGroup | undefined;
788
463
  }
789
- export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
790
- readonly name: "DBSubnetGroupAlreadyExistsFault";
791
- readonly $fault: "client";
792
- constructor(
793
- opts: __ExceptionOptionType<
794
- DBSubnetGroupAlreadyExistsFault,
795
- __BaseException
796
- >
797
- );
798
- }
799
- export declare class DBSubnetGroupQuotaExceededFault extends __BaseException {
800
- readonly name: "DBSubnetGroupQuotaExceededFault";
801
- readonly $fault: "client";
802
- constructor(
803
- opts: __ExceptionOptionType<
804
- DBSubnetGroupQuotaExceededFault,
805
- __BaseException
806
- >
807
- );
808
- }
809
- export declare class DBSubnetQuotaExceededFault extends __BaseException {
810
- readonly name: "DBSubnetQuotaExceededFault";
811
- readonly $fault: "client";
812
- constructor(
813
- opts: __ExceptionOptionType<DBSubnetQuotaExceededFault, __BaseException>
814
- );
815
- }
816
464
  export interface CreateEventSubscriptionMessage {
817
465
  SubscriptionName: string | undefined;
818
466
  SnsTopicArn: string | undefined;
@@ -825,54 +473,6 @@ export interface CreateEventSubscriptionMessage {
825
473
  export interface CreateEventSubscriptionResult {
826
474
  EventSubscription?: EventSubscription | undefined;
827
475
  }
828
- export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
829
- readonly name: "EventSubscriptionQuotaExceededFault";
830
- readonly $fault: "client";
831
- constructor(
832
- opts: __ExceptionOptionType<
833
- EventSubscriptionQuotaExceededFault,
834
- __BaseException
835
- >
836
- );
837
- }
838
- export declare class SNSInvalidTopicFault extends __BaseException {
839
- readonly name: "SNSInvalidTopicFault";
840
- readonly $fault: "client";
841
- constructor(
842
- opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>
843
- );
844
- }
845
- export declare class SNSNoAuthorizationFault extends __BaseException {
846
- readonly name: "SNSNoAuthorizationFault";
847
- readonly $fault: "client";
848
- constructor(
849
- opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>
850
- );
851
- }
852
- export declare class SNSTopicArnNotFoundFault extends __BaseException {
853
- readonly name: "SNSTopicArnNotFoundFault";
854
- readonly $fault: "client";
855
- constructor(
856
- opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>
857
- );
858
- }
859
- export declare class SubscriptionAlreadyExistFault extends __BaseException {
860
- readonly name: "SubscriptionAlreadyExistFault";
861
- readonly $fault: "client";
862
- constructor(
863
- opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>
864
- );
865
- }
866
- export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
867
- readonly name: "SubscriptionCategoryNotFoundFault";
868
- readonly $fault: "client";
869
- constructor(
870
- opts: __ExceptionOptionType<
871
- SubscriptionCategoryNotFoundFault,
872
- __BaseException
873
- >
874
- );
875
- }
876
476
  export interface CreateGlobalClusterMessage {
877
477
  GlobalClusterIdentifier: string | undefined;
878
478
  SourceDBClusterIdentifier?: string | undefined;
@@ -881,13 +481,6 @@ export interface CreateGlobalClusterMessage {
881
481
  DeletionProtection?: boolean | undefined;
882
482
  StorageEncrypted?: boolean | undefined;
883
483
  }
884
- export declare const FailoverStatus: {
885
- readonly CANCELLING: "cancelling";
886
- readonly FAILING_OVER: "failing-over";
887
- readonly PENDING: "pending";
888
- };
889
- export type FailoverStatus =
890
- (typeof FailoverStatus)[keyof typeof FailoverStatus];
891
484
  export interface FailoverState {
892
485
  Status?: FailoverStatus | undefined;
893
486
  FromDbClusterArn?: string | undefined;
@@ -914,26 +507,6 @@ export interface GlobalCluster {
914
507
  export interface CreateGlobalClusterResult {
915
508
  GlobalCluster?: GlobalCluster | undefined;
916
509
  }
917
- export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
918
- readonly name: "GlobalClusterAlreadyExistsFault";
919
- readonly $fault: "client";
920
- constructor(
921
- opts: __ExceptionOptionType<
922
- GlobalClusterAlreadyExistsFault,
923
- __BaseException
924
- >
925
- );
926
- }
927
- export declare class GlobalClusterQuotaExceededFault extends __BaseException {
928
- readonly name: "GlobalClusterQuotaExceededFault";
929
- readonly $fault: "client";
930
- constructor(
931
- opts: __ExceptionOptionType<
932
- GlobalClusterQuotaExceededFault,
933
- __BaseException
934
- >
935
- );
936
- }
937
510
  export interface DeleteDBClusterMessage {
938
511
  DBClusterIdentifier: string | undefined;
939
512
  SkipFinalSnapshot?: boolean | undefined;
@@ -942,13 +515,6 @@ export interface DeleteDBClusterMessage {
942
515
  export interface DeleteDBClusterResult {
943
516
  DBCluster?: DBCluster | undefined;
944
517
  }
945
- export declare class DBClusterEndpointNotFoundFault extends __BaseException {
946
- readonly name: "DBClusterEndpointNotFoundFault";
947
- readonly $fault: "client";
948
- constructor(
949
- opts: __ExceptionOptionType<DBClusterEndpointNotFoundFault, __BaseException>
950
- );
951
- }
952
518
  export interface DeleteDBClusterEndpointMessage {
953
519
  DBClusterEndpointIdentifier: string | undefined;
954
520
  }
@@ -964,42 +530,15 @@ export interface DeleteDBClusterEndpointOutput {
964
530
  ExcludedMembers?: string[] | undefined;
965
531
  DBClusterEndpointArn?: string | undefined;
966
532
  }
967
- export declare class InvalidDBClusterEndpointStateFault extends __BaseException {
968
- readonly name: "InvalidDBClusterEndpointStateFault";
969
- readonly $fault: "client";
970
- constructor(
971
- opts: __ExceptionOptionType<
972
- InvalidDBClusterEndpointStateFault,
973
- __BaseException
974
- >
975
- );
976
- }
977
533
  export interface DeleteDBClusterParameterGroupMessage {
978
534
  DBClusterParameterGroupName: string | undefined;
979
535
  }
980
- export declare class InvalidDBParameterGroupStateFault extends __BaseException {
981
- readonly name: "InvalidDBParameterGroupStateFault";
982
- readonly $fault: "client";
983
- constructor(
984
- opts: __ExceptionOptionType<
985
- InvalidDBParameterGroupStateFault,
986
- __BaseException
987
- >
988
- );
989
- }
990
536
  export interface DeleteDBClusterSnapshotMessage {
991
537
  DBClusterSnapshotIdentifier: string | undefined;
992
538
  }
993
539
  export interface DeleteDBClusterSnapshotResult {
994
540
  DBClusterSnapshot?: DBClusterSnapshot | undefined;
995
541
  }
996
- export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
997
- readonly name: "DBSnapshotAlreadyExistsFault";
998
- readonly $fault: "client";
999
- constructor(
1000
- opts: __ExceptionOptionType<DBSnapshotAlreadyExistsFault, __BaseException>
1001
- );
1002
- }
1003
542
  export interface DeleteDBInstanceMessage {
1004
543
  DBInstanceIdentifier: string | undefined;
1005
544
  SkipFinalSnapshot?: boolean | undefined;
@@ -1014,29 +553,12 @@ export interface DeleteDBParameterGroupMessage {
1014
553
  export interface DeleteDBSubnetGroupMessage {
1015
554
  DBSubnetGroupName: string | undefined;
1016
555
  }
1017
- export declare class InvalidDBSubnetStateFault extends __BaseException {
1018
- readonly name: "InvalidDBSubnetStateFault";
1019
- readonly $fault: "client";
1020
- constructor(
1021
- opts: __ExceptionOptionType<InvalidDBSubnetStateFault, __BaseException>
1022
- );
1023
- }
1024
556
  export interface DeleteEventSubscriptionMessage {
1025
557
  SubscriptionName: string | undefined;
1026
558
  }
1027
559
  export interface DeleteEventSubscriptionResult {
1028
560
  EventSubscription?: EventSubscription | undefined;
1029
561
  }
1030
- export declare class InvalidEventSubscriptionStateFault extends __BaseException {
1031
- readonly name: "InvalidEventSubscriptionStateFault";
1032
- readonly $fault: "client";
1033
- constructor(
1034
- opts: __ExceptionOptionType<
1035
- InvalidEventSubscriptionStateFault,
1036
- __BaseException
1037
- >
1038
- );
1039
- }
1040
562
  export interface DeleteGlobalClusterMessage {
1041
563
  GlobalClusterIdentifier: string | undefined;
1042
564
  }
@@ -1080,11 +602,6 @@ export interface DescribeDBClusterParameterGroupsMessage {
1080
602
  MaxRecords?: number | undefined;
1081
603
  Marker?: string | undefined;
1082
604
  }
1083
- export declare const ApplyMethod: {
1084
- readonly immediate: "immediate";
1085
- readonly pending_reboot: "pending-reboot";
1086
- };
1087
- export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
1088
605
  export interface Parameter {
1089
606
  ParameterName?: string | undefined;
1090
607
  ParameterValue?: string | undefined;
@@ -1268,15 +785,6 @@ export interface EventCategoriesMap {
1268
785
  export interface EventCategoriesMessage {
1269
786
  EventCategoriesMapList?: EventCategoriesMap[] | undefined;
1270
787
  }
1271
- export declare const SourceType: {
1272
- readonly db_cluster: "db-cluster";
1273
- readonly db_cluster_snapshot: "db-cluster-snapshot";
1274
- readonly db_instance: "db-instance";
1275
- readonly db_parameter_group: "db-parameter-group";
1276
- readonly db_security_group: "db-security-group";
1277
- readonly db_snapshot: "db-snapshot";
1278
- };
1279
- export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1280
788
  export interface DescribeEventsMessage {
1281
789
  SourceIdentifier?: string | undefined;
1282
790
  SourceType?: SourceType | undefined;
@@ -1415,16 +923,6 @@ export interface ListTagsForResourceMessage {
1415
923
  export interface TagListMessage {
1416
924
  TagList?: Tag[] | undefined;
1417
925
  }
1418
- export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
1419
- readonly name: "InvalidDBSecurityGroupStateFault";
1420
- readonly $fault: "client";
1421
- constructor(
1422
- opts: __ExceptionOptionType<
1423
- InvalidDBSecurityGroupStateFault,
1424
- __BaseException
1425
- >
1426
- );
1427
- }
1428
926
  export interface CloudwatchLogsExportConfiguration {
1429
927
  EnableLogTypes?: string[] | undefined;
1430
928
  DisableLogTypes?: string[] | undefined;
@@ -1494,33 +992,6 @@ export interface ModifyDBClusterSnapshotAttributeResult {
1494
992
  | DBClusterSnapshotAttributesResult
1495
993
  | undefined;
1496
994
  }
1497
- export declare class SharedSnapshotQuotaExceededFault extends __BaseException {
1498
- readonly name: "SharedSnapshotQuotaExceededFault";
1499
- readonly $fault: "client";
1500
- constructor(
1501
- opts: __ExceptionOptionType<
1502
- SharedSnapshotQuotaExceededFault,
1503
- __BaseException
1504
- >
1505
- );
1506
- }
1507
- export declare class CertificateNotFoundFault extends __BaseException {
1508
- readonly name: "CertificateNotFoundFault";
1509
- readonly $fault: "client";
1510
- constructor(
1511
- opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>
1512
- );
1513
- }
1514
- export declare class DBUpgradeDependencyFailureFault extends __BaseException {
1515
- readonly name: "DBUpgradeDependencyFailureFault";
1516
- readonly $fault: "client";
1517
- constructor(
1518
- opts: __ExceptionOptionType<
1519
- DBUpgradeDependencyFailureFault,
1520
- __BaseException
1521
- >
1522
- );
1523
- }
1524
995
  export interface ModifyDBInstanceMessage {
1525
996
  DBInstanceIdentifier: string | undefined;
1526
997
  AllocatedStorage?: number | undefined;
@@ -1580,11 +1051,6 @@ export interface ModifyDBSubnetGroupMessage {
1580
1051
  export interface ModifyDBSubnetGroupResult {
1581
1052
  DBSubnetGroup?: DBSubnetGroup | undefined;
1582
1053
  }
1583
- export declare class SubnetAlreadyInUse extends __BaseException {
1584
- readonly name: "SubnetAlreadyInUse";
1585
- readonly $fault: "client";
1586
- constructor(opts: __ExceptionOptionType<SubnetAlreadyInUse, __BaseException>);
1587
- }
1588
1054
  export interface ModifyEventSubscriptionMessage {
1589
1055
  SubscriptionName: string | undefined;
1590
1056
  SnsTopicArn?: string | undefined;
@@ -1625,13 +1091,6 @@ export interface RemoveFromGlobalClusterMessage {
1625
1091
  export interface RemoveFromGlobalClusterResult {
1626
1092
  GlobalCluster?: GlobalCluster | undefined;
1627
1093
  }
1628
- export declare class DBClusterRoleNotFoundFault extends __BaseException {
1629
- readonly name: "DBClusterRoleNotFoundFault";
1630
- readonly $fault: "client";
1631
- constructor(
1632
- opts: __ExceptionOptionType<DBClusterRoleNotFoundFault, __BaseException>
1633
- );
1634
- }
1635
1094
  export interface RemoveRoleFromDBClusterMessage {
1636
1095
  DBClusterIdentifier: string | undefined;
1637
1096
  RoleArn: string | undefined;
@@ -1658,30 +1117,6 @@ export interface ResetDBParameterGroupMessage {
1658
1117
  ResetAllParameters?: boolean | undefined;
1659
1118
  Parameters?: Parameter[] | undefined;
1660
1119
  }
1661
- export declare class InsufficientDBClusterCapacityFault extends __BaseException {
1662
- readonly name: "InsufficientDBClusterCapacityFault";
1663
- readonly $fault: "client";
1664
- constructor(
1665
- opts: __ExceptionOptionType<
1666
- InsufficientDBClusterCapacityFault,
1667
- __BaseException
1668
- >
1669
- );
1670
- }
1671
- export declare class InvalidDBSnapshotStateFault extends __BaseException {
1672
- readonly name: "InvalidDBSnapshotStateFault";
1673
- readonly $fault: "client";
1674
- constructor(
1675
- opts: __ExceptionOptionType<InvalidDBSnapshotStateFault, __BaseException>
1676
- );
1677
- }
1678
- export declare class InvalidRestoreFault extends __BaseException {
1679
- readonly name: "InvalidRestoreFault";
1680
- readonly $fault: "client";
1681
- constructor(
1682
- opts: __ExceptionOptionType<InvalidRestoreFault, __BaseException>
1683
- );
1684
- }
1685
1120
  export interface RestoreDBClusterFromSnapshotMessage {
1686
1121
  AvailabilityZones?: string[] | undefined;
1687
1122
  DBClusterIdentifier: string | undefined;