@aws-sdk/client-docdb 3.934.0 → 3.936.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +22 -21
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +21 -0
- package/dist-es/models/errors.js +697 -0
- package/dist-es/models/models_0.js +1 -718
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +53 -0
- package/dist-types/models/errors.d.ts +719 -0
- package/dist-types/models/models_0.d.ts +1 -772
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +27 -0
- package/dist-types/ts3.4/models/errors.d.ts +464 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -491
- package/package.json +20 -20
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
ApplyMethod,
|
|
3
|
+
FailoverStatus,
|
|
4
|
+
GlobalClusterMemberSynchronizationStatus,
|
|
5
|
+
SourceType,
|
|
6
|
+
} from "./enums";
|
|
3
7
|
export interface AddSourceIdentifierToSubscriptionMessage {
|
|
4
8
|
SubscriptionName: string | undefined;
|
|
5
9
|
SourceIdentifier: string | undefined;
|
|
@@ -19,20 +23,6 @@ export interface EventSubscription {
|
|
|
19
23
|
export interface AddSourceIdentifierToSubscriptionResult {
|
|
20
24
|
EventSubscription?: EventSubscription | undefined;
|
|
21
25
|
}
|
|
22
|
-
export declare class SourceNotFoundFault extends __BaseException {
|
|
23
|
-
readonly name: "SourceNotFoundFault";
|
|
24
|
-
readonly $fault: "client";
|
|
25
|
-
constructor(
|
|
26
|
-
opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>
|
|
27
|
-
);
|
|
28
|
-
}
|
|
29
|
-
export declare class SubscriptionNotFoundFault extends __BaseException {
|
|
30
|
-
readonly name: "SubscriptionNotFoundFault";
|
|
31
|
-
readonly $fault: "client";
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>
|
|
34
|
-
);
|
|
35
|
-
}
|
|
36
26
|
export interface Tag {
|
|
37
27
|
Key?: string | undefined;
|
|
38
28
|
Value?: string | undefined;
|
|
@@ -41,27 +31,6 @@ export interface AddTagsToResourceMessage {
|
|
|
41
31
|
ResourceName: string | undefined;
|
|
42
32
|
Tags: Tag[] | undefined;
|
|
43
33
|
}
|
|
44
|
-
export declare class DBClusterNotFoundFault extends __BaseException {
|
|
45
|
-
readonly name: "DBClusterNotFoundFault";
|
|
46
|
-
readonly $fault: "client";
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<DBClusterNotFoundFault, __BaseException>
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
|
-
export declare class DBInstanceNotFoundFault extends __BaseException {
|
|
52
|
-
readonly name: "DBInstanceNotFoundFault";
|
|
53
|
-
readonly $fault: "client";
|
|
54
|
-
constructor(
|
|
55
|
-
opts: __ExceptionOptionType<DBInstanceNotFoundFault, __BaseException>
|
|
56
|
-
);
|
|
57
|
-
}
|
|
58
|
-
export declare class DBSnapshotNotFoundFault extends __BaseException {
|
|
59
|
-
readonly name: "DBSnapshotNotFoundFault";
|
|
60
|
-
readonly $fault: "client";
|
|
61
|
-
constructor(
|
|
62
|
-
opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>
|
|
63
|
-
);
|
|
64
|
-
}
|
|
65
34
|
export interface ApplyPendingMaintenanceActionMessage {
|
|
66
35
|
ResourceIdentifier: string | undefined;
|
|
67
36
|
ApplyAction: string | undefined;
|
|
@@ -84,27 +53,6 @@ export interface ApplyPendingMaintenanceActionResult {
|
|
|
84
53
|
| ResourcePendingMaintenanceActions
|
|
85
54
|
| undefined;
|
|
86
55
|
}
|
|
87
|
-
export declare class InvalidDBClusterStateFault extends __BaseException {
|
|
88
|
-
readonly name: "InvalidDBClusterStateFault";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<InvalidDBClusterStateFault, __BaseException>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
export declare class InvalidDBInstanceStateFault extends __BaseException {
|
|
95
|
-
readonly name: "InvalidDBInstanceStateFault";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
constructor(
|
|
98
|
-
opts: __ExceptionOptionType<InvalidDBInstanceStateFault, __BaseException>
|
|
99
|
-
);
|
|
100
|
-
}
|
|
101
|
-
export declare class ResourceNotFoundFault extends __BaseException {
|
|
102
|
-
readonly name: "ResourceNotFoundFault";
|
|
103
|
-
readonly $fault: "client";
|
|
104
|
-
constructor(
|
|
105
|
-
opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>
|
|
106
|
-
);
|
|
107
|
-
}
|
|
108
56
|
export interface CopyDBClusterParameterGroupMessage {
|
|
109
57
|
SourceDBClusterParameterGroupIdentifier: string | undefined;
|
|
110
58
|
TargetDBClusterParameterGroupIdentifier: string | undefined;
|
|
@@ -120,33 +68,6 @@ export interface DBClusterParameterGroup {
|
|
|
120
68
|
export interface CopyDBClusterParameterGroupResult {
|
|
121
69
|
DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
|
|
122
70
|
}
|
|
123
|
-
export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
|
|
124
|
-
readonly name: "DBParameterGroupAlreadyExistsFault";
|
|
125
|
-
readonly $fault: "client";
|
|
126
|
-
constructor(
|
|
127
|
-
opts: __ExceptionOptionType<
|
|
128
|
-
DBParameterGroupAlreadyExistsFault,
|
|
129
|
-
__BaseException
|
|
130
|
-
>
|
|
131
|
-
);
|
|
132
|
-
}
|
|
133
|
-
export declare class DBParameterGroupNotFoundFault extends __BaseException {
|
|
134
|
-
readonly name: "DBParameterGroupNotFoundFault";
|
|
135
|
-
readonly $fault: "client";
|
|
136
|
-
constructor(
|
|
137
|
-
opts: __ExceptionOptionType<DBParameterGroupNotFoundFault, __BaseException>
|
|
138
|
-
);
|
|
139
|
-
}
|
|
140
|
-
export declare class DBParameterGroupQuotaExceededFault extends __BaseException {
|
|
141
|
-
readonly name: "DBParameterGroupQuotaExceededFault";
|
|
142
|
-
readonly $fault: "client";
|
|
143
|
-
constructor(
|
|
144
|
-
opts: __ExceptionOptionType<
|
|
145
|
-
DBParameterGroupQuotaExceededFault,
|
|
146
|
-
__BaseException
|
|
147
|
-
>
|
|
148
|
-
);
|
|
149
|
-
}
|
|
150
71
|
export interface CopyDBClusterSnapshotMessage {
|
|
151
72
|
SourceDBClusterSnapshotIdentifier: string | undefined;
|
|
152
73
|
TargetDBClusterSnapshotIdentifier: string | undefined;
|
|
@@ -178,47 +99,6 @@ export interface DBClusterSnapshot {
|
|
|
178
99
|
export interface CopyDBClusterSnapshotResult {
|
|
179
100
|
DBClusterSnapshot?: DBClusterSnapshot | undefined;
|
|
180
101
|
}
|
|
181
|
-
export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
|
|
182
|
-
readonly name: "DBClusterSnapshotAlreadyExistsFault";
|
|
183
|
-
readonly $fault: "client";
|
|
184
|
-
constructor(
|
|
185
|
-
opts: __ExceptionOptionType<
|
|
186
|
-
DBClusterSnapshotAlreadyExistsFault,
|
|
187
|
-
__BaseException
|
|
188
|
-
>
|
|
189
|
-
);
|
|
190
|
-
}
|
|
191
|
-
export declare class DBClusterSnapshotNotFoundFault extends __BaseException {
|
|
192
|
-
readonly name: "DBClusterSnapshotNotFoundFault";
|
|
193
|
-
readonly $fault: "client";
|
|
194
|
-
constructor(
|
|
195
|
-
opts: __ExceptionOptionType<DBClusterSnapshotNotFoundFault, __BaseException>
|
|
196
|
-
);
|
|
197
|
-
}
|
|
198
|
-
export declare class InvalidDBClusterSnapshotStateFault extends __BaseException {
|
|
199
|
-
readonly name: "InvalidDBClusterSnapshotStateFault";
|
|
200
|
-
readonly $fault: "client";
|
|
201
|
-
constructor(
|
|
202
|
-
opts: __ExceptionOptionType<
|
|
203
|
-
InvalidDBClusterSnapshotStateFault,
|
|
204
|
-
__BaseException
|
|
205
|
-
>
|
|
206
|
-
);
|
|
207
|
-
}
|
|
208
|
-
export declare class KMSKeyNotAccessibleFault extends __BaseException {
|
|
209
|
-
readonly name: "KMSKeyNotAccessibleFault";
|
|
210
|
-
readonly $fault: "client";
|
|
211
|
-
constructor(
|
|
212
|
-
opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>
|
|
213
|
-
);
|
|
214
|
-
}
|
|
215
|
-
export declare class SnapshotQuotaExceededFault extends __BaseException {
|
|
216
|
-
readonly name: "SnapshotQuotaExceededFault";
|
|
217
|
-
readonly $fault: "client";
|
|
218
|
-
constructor(
|
|
219
|
-
opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>
|
|
220
|
-
);
|
|
221
|
-
}
|
|
222
102
|
export interface ServerlessV2ScalingConfiguration {
|
|
223
103
|
MinCapacity?: number | undefined;
|
|
224
104
|
MaxCapacity?: number | undefined;
|
|
@@ -319,104 +199,6 @@ export interface DBCluster {
|
|
|
319
199
|
export interface CreateDBClusterResult {
|
|
320
200
|
DBCluster?: DBCluster | undefined;
|
|
321
201
|
}
|
|
322
|
-
export declare class DBClusterAlreadyExistsFault extends __BaseException {
|
|
323
|
-
readonly name: "DBClusterAlreadyExistsFault";
|
|
324
|
-
readonly $fault: "client";
|
|
325
|
-
constructor(
|
|
326
|
-
opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>
|
|
327
|
-
);
|
|
328
|
-
}
|
|
329
|
-
export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
|
|
330
|
-
readonly name: "DBClusterParameterGroupNotFoundFault";
|
|
331
|
-
readonly $fault: "client";
|
|
332
|
-
constructor(
|
|
333
|
-
opts: __ExceptionOptionType<
|
|
334
|
-
DBClusterParameterGroupNotFoundFault,
|
|
335
|
-
__BaseException
|
|
336
|
-
>
|
|
337
|
-
);
|
|
338
|
-
}
|
|
339
|
-
export declare class DBClusterQuotaExceededFault extends __BaseException {
|
|
340
|
-
readonly name: "DBClusterQuotaExceededFault";
|
|
341
|
-
readonly $fault: "client";
|
|
342
|
-
constructor(
|
|
343
|
-
opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>
|
|
344
|
-
);
|
|
345
|
-
}
|
|
346
|
-
export declare class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
|
|
347
|
-
readonly name: "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
348
|
-
readonly $fault: "client";
|
|
349
|
-
constructor(
|
|
350
|
-
opts: __ExceptionOptionType<
|
|
351
|
-
DBSubnetGroupDoesNotCoverEnoughAZs,
|
|
352
|
-
__BaseException
|
|
353
|
-
>
|
|
354
|
-
);
|
|
355
|
-
}
|
|
356
|
-
export declare class DBSubnetGroupNotFoundFault extends __BaseException {
|
|
357
|
-
readonly name: "DBSubnetGroupNotFoundFault";
|
|
358
|
-
readonly $fault: "client";
|
|
359
|
-
constructor(
|
|
360
|
-
opts: __ExceptionOptionType<DBSubnetGroupNotFoundFault, __BaseException>
|
|
361
|
-
);
|
|
362
|
-
}
|
|
363
|
-
export declare class GlobalClusterNotFoundFault extends __BaseException {
|
|
364
|
-
readonly name: "GlobalClusterNotFoundFault";
|
|
365
|
-
readonly $fault: "client";
|
|
366
|
-
constructor(
|
|
367
|
-
opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>
|
|
368
|
-
);
|
|
369
|
-
}
|
|
370
|
-
export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
|
|
371
|
-
readonly name: "InsufficientStorageClusterCapacityFault";
|
|
372
|
-
readonly $fault: "client";
|
|
373
|
-
constructor(
|
|
374
|
-
opts: __ExceptionOptionType<
|
|
375
|
-
InsufficientStorageClusterCapacityFault,
|
|
376
|
-
__BaseException
|
|
377
|
-
>
|
|
378
|
-
);
|
|
379
|
-
}
|
|
380
|
-
export declare class InvalidDBSubnetGroupStateFault extends __BaseException {
|
|
381
|
-
readonly name: "InvalidDBSubnetGroupStateFault";
|
|
382
|
-
readonly $fault: "client";
|
|
383
|
-
constructor(
|
|
384
|
-
opts: __ExceptionOptionType<InvalidDBSubnetGroupStateFault, __BaseException>
|
|
385
|
-
);
|
|
386
|
-
}
|
|
387
|
-
export declare class InvalidGlobalClusterStateFault extends __BaseException {
|
|
388
|
-
readonly name: "InvalidGlobalClusterStateFault";
|
|
389
|
-
readonly $fault: "client";
|
|
390
|
-
constructor(
|
|
391
|
-
opts: __ExceptionOptionType<InvalidGlobalClusterStateFault, __BaseException>
|
|
392
|
-
);
|
|
393
|
-
}
|
|
394
|
-
export declare class InvalidSubnet extends __BaseException {
|
|
395
|
-
readonly name: "InvalidSubnet";
|
|
396
|
-
readonly $fault: "client";
|
|
397
|
-
constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
|
|
398
|
-
}
|
|
399
|
-
export declare class InvalidVPCNetworkStateFault extends __BaseException {
|
|
400
|
-
readonly name: "InvalidVPCNetworkStateFault";
|
|
401
|
-
readonly $fault: "client";
|
|
402
|
-
constructor(
|
|
403
|
-
opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>
|
|
404
|
-
);
|
|
405
|
-
}
|
|
406
|
-
export declare class NetworkTypeNotSupported extends __BaseException {
|
|
407
|
-
readonly name: "NetworkTypeNotSupported";
|
|
408
|
-
readonly $fault: "client";
|
|
409
|
-
constructor(
|
|
410
|
-
opts: __ExceptionOptionType<NetworkTypeNotSupported, __BaseException>
|
|
411
|
-
);
|
|
412
|
-
}
|
|
413
|
-
export declare class StorageQuotaExceededFault extends __BaseException {
|
|
414
|
-
readonly name: "StorageQuotaExceededFault";
|
|
415
|
-
readonly $fault: "client";
|
|
416
|
-
constructor(
|
|
417
|
-
opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>
|
|
418
|
-
);
|
|
419
|
-
}
|
|
420
202
|
export interface CreateDBClusterParameterGroupMessage {
|
|
421
203
|
DBClusterParameterGroupName: string | undefined;
|
|
422
204
|
DBParameterGroupFamily: string | undefined;
|
|
@@ -434,13 +216,6 @@ export interface CreateDBClusterSnapshotMessage {
|
|
|
434
216
|
export interface CreateDBClusterSnapshotResult {
|
|
435
217
|
DBClusterSnapshot?: DBClusterSnapshot | undefined;
|
|
436
218
|
}
|
|
437
|
-
export declare class AuthorizationNotFoundFault extends __BaseException {
|
|
438
|
-
readonly name: "AuthorizationNotFoundFault";
|
|
439
|
-
readonly $fault: "client";
|
|
440
|
-
constructor(
|
|
441
|
-
opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>
|
|
442
|
-
);
|
|
443
|
-
}
|
|
444
219
|
export interface CreateDBInstanceMessage {
|
|
445
220
|
DBInstanceIdentifier: string | undefined;
|
|
446
221
|
DBInstanceClass: string | undefined;
|
|
@@ -543,44 +318,6 @@ export interface DBInstance {
|
|
|
543
318
|
export interface CreateDBInstanceResult {
|
|
544
319
|
DBInstance?: DBInstance | undefined;
|
|
545
320
|
}
|
|
546
|
-
export declare class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
547
|
-
readonly name: "DBInstanceAlreadyExistsFault";
|
|
548
|
-
readonly $fault: "client";
|
|
549
|
-
constructor(
|
|
550
|
-
opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>
|
|
551
|
-
);
|
|
552
|
-
}
|
|
553
|
-
export declare class DBSecurityGroupNotFoundFault extends __BaseException {
|
|
554
|
-
readonly name: "DBSecurityGroupNotFoundFault";
|
|
555
|
-
readonly $fault: "client";
|
|
556
|
-
constructor(
|
|
557
|
-
opts: __ExceptionOptionType<DBSecurityGroupNotFoundFault, __BaseException>
|
|
558
|
-
);
|
|
559
|
-
}
|
|
560
|
-
export declare class InstanceQuotaExceededFault extends __BaseException {
|
|
561
|
-
readonly name: "InstanceQuotaExceededFault";
|
|
562
|
-
readonly $fault: "client";
|
|
563
|
-
constructor(
|
|
564
|
-
opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>
|
|
565
|
-
);
|
|
566
|
-
}
|
|
567
|
-
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
568
|
-
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
569
|
-
readonly $fault: "client";
|
|
570
|
-
constructor(
|
|
571
|
-
opts: __ExceptionOptionType<
|
|
572
|
-
InsufficientDBInstanceCapacityFault,
|
|
573
|
-
__BaseException
|
|
574
|
-
>
|
|
575
|
-
);
|
|
576
|
-
}
|
|
577
|
-
export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
578
|
-
readonly name: "StorageTypeNotSupportedFault";
|
|
579
|
-
readonly $fault: "client";
|
|
580
|
-
constructor(
|
|
581
|
-
opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>
|
|
582
|
-
);
|
|
583
|
-
}
|
|
584
321
|
export interface CreateDBSubnetGroupMessage {
|
|
585
322
|
DBSubnetGroupName: string | undefined;
|
|
586
323
|
DBSubnetGroupDescription: string | undefined;
|
|
@@ -590,33 +327,6 @@ export interface CreateDBSubnetGroupMessage {
|
|
|
590
327
|
export interface CreateDBSubnetGroupResult {
|
|
591
328
|
DBSubnetGroup?: DBSubnetGroup | undefined;
|
|
592
329
|
}
|
|
593
|
-
export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
594
|
-
readonly name: "DBSubnetGroupAlreadyExistsFault";
|
|
595
|
-
readonly $fault: "client";
|
|
596
|
-
constructor(
|
|
597
|
-
opts: __ExceptionOptionType<
|
|
598
|
-
DBSubnetGroupAlreadyExistsFault,
|
|
599
|
-
__BaseException
|
|
600
|
-
>
|
|
601
|
-
);
|
|
602
|
-
}
|
|
603
|
-
export declare class DBSubnetGroupQuotaExceededFault extends __BaseException {
|
|
604
|
-
readonly name: "DBSubnetGroupQuotaExceededFault";
|
|
605
|
-
readonly $fault: "client";
|
|
606
|
-
constructor(
|
|
607
|
-
opts: __ExceptionOptionType<
|
|
608
|
-
DBSubnetGroupQuotaExceededFault,
|
|
609
|
-
__BaseException
|
|
610
|
-
>
|
|
611
|
-
);
|
|
612
|
-
}
|
|
613
|
-
export declare class DBSubnetQuotaExceededFault extends __BaseException {
|
|
614
|
-
readonly name: "DBSubnetQuotaExceededFault";
|
|
615
|
-
readonly $fault: "client";
|
|
616
|
-
constructor(
|
|
617
|
-
opts: __ExceptionOptionType<DBSubnetQuotaExceededFault, __BaseException>
|
|
618
|
-
);
|
|
619
|
-
}
|
|
620
330
|
export interface CreateEventSubscriptionMessage {
|
|
621
331
|
SubscriptionName: string | undefined;
|
|
622
332
|
SnsTopicArn: string | undefined;
|
|
@@ -629,54 +339,6 @@ export interface CreateEventSubscriptionMessage {
|
|
|
629
339
|
export interface CreateEventSubscriptionResult {
|
|
630
340
|
EventSubscription?: EventSubscription | undefined;
|
|
631
341
|
}
|
|
632
|
-
export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
|
|
633
|
-
readonly name: "EventSubscriptionQuotaExceededFault";
|
|
634
|
-
readonly $fault: "client";
|
|
635
|
-
constructor(
|
|
636
|
-
opts: __ExceptionOptionType<
|
|
637
|
-
EventSubscriptionQuotaExceededFault,
|
|
638
|
-
__BaseException
|
|
639
|
-
>
|
|
640
|
-
);
|
|
641
|
-
}
|
|
642
|
-
export declare class SNSInvalidTopicFault extends __BaseException {
|
|
643
|
-
readonly name: "SNSInvalidTopicFault";
|
|
644
|
-
readonly $fault: "client";
|
|
645
|
-
constructor(
|
|
646
|
-
opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>
|
|
647
|
-
);
|
|
648
|
-
}
|
|
649
|
-
export declare class SNSNoAuthorizationFault extends __BaseException {
|
|
650
|
-
readonly name: "SNSNoAuthorizationFault";
|
|
651
|
-
readonly $fault: "client";
|
|
652
|
-
constructor(
|
|
653
|
-
opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>
|
|
654
|
-
);
|
|
655
|
-
}
|
|
656
|
-
export declare class SNSTopicArnNotFoundFault extends __BaseException {
|
|
657
|
-
readonly name: "SNSTopicArnNotFoundFault";
|
|
658
|
-
readonly $fault: "client";
|
|
659
|
-
constructor(
|
|
660
|
-
opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>
|
|
661
|
-
);
|
|
662
|
-
}
|
|
663
|
-
export declare class SubscriptionAlreadyExistFault extends __BaseException {
|
|
664
|
-
readonly name: "SubscriptionAlreadyExistFault";
|
|
665
|
-
readonly $fault: "client";
|
|
666
|
-
constructor(
|
|
667
|
-
opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>
|
|
668
|
-
);
|
|
669
|
-
}
|
|
670
|
-
export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
|
|
671
|
-
readonly name: "SubscriptionCategoryNotFoundFault";
|
|
672
|
-
readonly $fault: "client";
|
|
673
|
-
constructor(
|
|
674
|
-
opts: __ExceptionOptionType<
|
|
675
|
-
SubscriptionCategoryNotFoundFault,
|
|
676
|
-
__BaseException
|
|
677
|
-
>
|
|
678
|
-
);
|
|
679
|
-
}
|
|
680
342
|
export interface CreateGlobalClusterMessage {
|
|
681
343
|
GlobalClusterIdentifier: string | undefined;
|
|
682
344
|
SourceDBClusterIdentifier?: string | undefined;
|
|
@@ -686,25 +348,12 @@ export interface CreateGlobalClusterMessage {
|
|
|
686
348
|
DatabaseName?: string | undefined;
|
|
687
349
|
StorageEncrypted?: boolean | undefined;
|
|
688
350
|
}
|
|
689
|
-
export declare const FailoverStatus: {
|
|
690
|
-
readonly CANCELLING: "cancelling";
|
|
691
|
-
readonly FAILING_OVER: "failing-over";
|
|
692
|
-
readonly PENDING: "pending";
|
|
693
|
-
};
|
|
694
|
-
export type FailoverStatus =
|
|
695
|
-
(typeof FailoverStatus)[keyof typeof FailoverStatus];
|
|
696
351
|
export interface FailoverState {
|
|
697
352
|
Status?: FailoverStatus | undefined;
|
|
698
353
|
FromDbClusterArn?: string | undefined;
|
|
699
354
|
ToDbClusterArn?: string | undefined;
|
|
700
355
|
IsDataLossAllowed?: boolean | undefined;
|
|
701
356
|
}
|
|
702
|
-
export declare const GlobalClusterMemberSynchronizationStatus: {
|
|
703
|
-
readonly CONNECTED: "connected";
|
|
704
|
-
readonly PENDING_RESYNC: "pending-resync";
|
|
705
|
-
};
|
|
706
|
-
export type GlobalClusterMemberSynchronizationStatus =
|
|
707
|
-
(typeof GlobalClusterMemberSynchronizationStatus)[keyof typeof GlobalClusterMemberSynchronizationStatus];
|
|
708
357
|
export interface GlobalClusterMember {
|
|
709
358
|
DBClusterArn?: string | undefined;
|
|
710
359
|
Readers?: string[] | undefined;
|
|
@@ -728,26 +377,6 @@ export interface GlobalCluster {
|
|
|
728
377
|
export interface CreateGlobalClusterResult {
|
|
729
378
|
GlobalCluster?: GlobalCluster | undefined;
|
|
730
379
|
}
|
|
731
|
-
export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
|
|
732
|
-
readonly name: "GlobalClusterAlreadyExistsFault";
|
|
733
|
-
readonly $fault: "client";
|
|
734
|
-
constructor(
|
|
735
|
-
opts: __ExceptionOptionType<
|
|
736
|
-
GlobalClusterAlreadyExistsFault,
|
|
737
|
-
__BaseException
|
|
738
|
-
>
|
|
739
|
-
);
|
|
740
|
-
}
|
|
741
|
-
export declare class GlobalClusterQuotaExceededFault extends __BaseException {
|
|
742
|
-
readonly name: "GlobalClusterQuotaExceededFault";
|
|
743
|
-
readonly $fault: "client";
|
|
744
|
-
constructor(
|
|
745
|
-
opts: __ExceptionOptionType<
|
|
746
|
-
GlobalClusterQuotaExceededFault,
|
|
747
|
-
__BaseException
|
|
748
|
-
>
|
|
749
|
-
);
|
|
750
|
-
}
|
|
751
380
|
export interface DeleteDBClusterMessage {
|
|
752
381
|
DBClusterIdentifier: string | undefined;
|
|
753
382
|
SkipFinalSnapshot?: boolean | undefined;
|
|
@@ -759,29 +388,12 @@ export interface DeleteDBClusterResult {
|
|
|
759
388
|
export interface DeleteDBClusterParameterGroupMessage {
|
|
760
389
|
DBClusterParameterGroupName: string | undefined;
|
|
761
390
|
}
|
|
762
|
-
export declare class InvalidDBParameterGroupStateFault extends __BaseException {
|
|
763
|
-
readonly name: "InvalidDBParameterGroupStateFault";
|
|
764
|
-
readonly $fault: "client";
|
|
765
|
-
constructor(
|
|
766
|
-
opts: __ExceptionOptionType<
|
|
767
|
-
InvalidDBParameterGroupStateFault,
|
|
768
|
-
__BaseException
|
|
769
|
-
>
|
|
770
|
-
);
|
|
771
|
-
}
|
|
772
391
|
export interface DeleteDBClusterSnapshotMessage {
|
|
773
392
|
DBClusterSnapshotIdentifier: string | undefined;
|
|
774
393
|
}
|
|
775
394
|
export interface DeleteDBClusterSnapshotResult {
|
|
776
395
|
DBClusterSnapshot?: DBClusterSnapshot | undefined;
|
|
777
396
|
}
|
|
778
|
-
export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
|
|
779
|
-
readonly name: "DBSnapshotAlreadyExistsFault";
|
|
780
|
-
readonly $fault: "client";
|
|
781
|
-
constructor(
|
|
782
|
-
opts: __ExceptionOptionType<DBSnapshotAlreadyExistsFault, __BaseException>
|
|
783
|
-
);
|
|
784
|
-
}
|
|
785
397
|
export interface DeleteDBInstanceMessage {
|
|
786
398
|
DBInstanceIdentifier: string | undefined;
|
|
787
399
|
}
|
|
@@ -791,29 +403,12 @@ export interface DeleteDBInstanceResult {
|
|
|
791
403
|
export interface DeleteDBSubnetGroupMessage {
|
|
792
404
|
DBSubnetGroupName: string | undefined;
|
|
793
405
|
}
|
|
794
|
-
export declare class InvalidDBSubnetStateFault extends __BaseException {
|
|
795
|
-
readonly name: "InvalidDBSubnetStateFault";
|
|
796
|
-
readonly $fault: "client";
|
|
797
|
-
constructor(
|
|
798
|
-
opts: __ExceptionOptionType<InvalidDBSubnetStateFault, __BaseException>
|
|
799
|
-
);
|
|
800
|
-
}
|
|
801
406
|
export interface DeleteEventSubscriptionMessage {
|
|
802
407
|
SubscriptionName: string | undefined;
|
|
803
408
|
}
|
|
804
409
|
export interface DeleteEventSubscriptionResult {
|
|
805
410
|
EventSubscription?: EventSubscription | undefined;
|
|
806
411
|
}
|
|
807
|
-
export declare class InvalidEventSubscriptionStateFault extends __BaseException {
|
|
808
|
-
readonly name: "InvalidEventSubscriptionStateFault";
|
|
809
|
-
readonly $fault: "client";
|
|
810
|
-
constructor(
|
|
811
|
-
opts: __ExceptionOptionType<
|
|
812
|
-
InvalidEventSubscriptionStateFault,
|
|
813
|
-
__BaseException
|
|
814
|
-
>
|
|
815
|
-
);
|
|
816
|
-
}
|
|
817
412
|
export interface DeleteGlobalClusterMessage {
|
|
818
413
|
GlobalClusterIdentifier: string | undefined;
|
|
819
414
|
}
|
|
@@ -832,13 +427,6 @@ export interface CertificateMessage {
|
|
|
832
427
|
Certificates?: Certificate[] | undefined;
|
|
833
428
|
Marker?: string | undefined;
|
|
834
429
|
}
|
|
835
|
-
export declare class CertificateNotFoundFault extends __BaseException {
|
|
836
|
-
readonly name: "CertificateNotFoundFault";
|
|
837
|
-
readonly $fault: "client";
|
|
838
|
-
constructor(
|
|
839
|
-
opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>
|
|
840
|
-
);
|
|
841
|
-
}
|
|
842
430
|
export interface Filter {
|
|
843
431
|
Name: string | undefined;
|
|
844
432
|
Values: string[] | undefined;
|
|
@@ -859,11 +447,6 @@ export interface DescribeDBClusterParameterGroupsMessage {
|
|
|
859
447
|
MaxRecords?: number | undefined;
|
|
860
448
|
Marker?: string | undefined;
|
|
861
449
|
}
|
|
862
|
-
export declare const ApplyMethod: {
|
|
863
|
-
readonly immediate: "immediate";
|
|
864
|
-
readonly pending_reboot: "pending-reboot";
|
|
865
|
-
};
|
|
866
|
-
export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
|
|
867
450
|
export interface Parameter {
|
|
868
451
|
ParameterName?: string | undefined;
|
|
869
452
|
ParameterValue?: string | undefined;
|
|
@@ -1011,15 +594,6 @@ export interface EventCategoriesMap {
|
|
|
1011
594
|
export interface EventCategoriesMessage {
|
|
1012
595
|
EventCategoriesMapList?: EventCategoriesMap[] | undefined;
|
|
1013
596
|
}
|
|
1014
|
-
export declare const SourceType: {
|
|
1015
|
-
readonly db_cluster: "db-cluster";
|
|
1016
|
-
readonly db_cluster_snapshot: "db-cluster-snapshot";
|
|
1017
|
-
readonly db_instance: "db-instance";
|
|
1018
|
-
readonly db_parameter_group: "db-parameter-group";
|
|
1019
|
-
readonly db_security_group: "db-security-group";
|
|
1020
|
-
readonly db_snapshot: "db-snapshot";
|
|
1021
|
-
};
|
|
1022
|
-
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1023
597
|
export interface DescribeEventsMessage {
|
|
1024
598
|
SourceIdentifier?: string | undefined;
|
|
1025
599
|
SourceType?: SourceType | undefined;
|
|
@@ -1119,16 +693,6 @@ export interface ListTagsForResourceMessage {
|
|
|
1119
693
|
export interface TagListMessage {
|
|
1120
694
|
TagList?: Tag[] | undefined;
|
|
1121
695
|
}
|
|
1122
|
-
export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
|
|
1123
|
-
readonly name: "InvalidDBSecurityGroupStateFault";
|
|
1124
|
-
readonly $fault: "client";
|
|
1125
|
-
constructor(
|
|
1126
|
-
opts: __ExceptionOptionType<
|
|
1127
|
-
InvalidDBSecurityGroupStateFault,
|
|
1128
|
-
__BaseException
|
|
1129
|
-
>
|
|
1130
|
-
);
|
|
1131
|
-
}
|
|
1132
696
|
export interface CloudwatchLogsExportConfiguration {
|
|
1133
697
|
EnableLogTypes?: string[] | undefined;
|
|
1134
698
|
DisableLogTypes?: string[] | undefined;
|
|
@@ -1180,26 +744,6 @@ export interface ModifyDBClusterSnapshotAttributeResult {
|
|
|
1180
744
|
| DBClusterSnapshotAttributesResult
|
|
1181
745
|
| undefined;
|
|
1182
746
|
}
|
|
1183
|
-
export declare class SharedSnapshotQuotaExceededFault extends __BaseException {
|
|
1184
|
-
readonly name: "SharedSnapshotQuotaExceededFault";
|
|
1185
|
-
readonly $fault: "client";
|
|
1186
|
-
constructor(
|
|
1187
|
-
opts: __ExceptionOptionType<
|
|
1188
|
-
SharedSnapshotQuotaExceededFault,
|
|
1189
|
-
__BaseException
|
|
1190
|
-
>
|
|
1191
|
-
);
|
|
1192
|
-
}
|
|
1193
|
-
export declare class DBUpgradeDependencyFailureFault extends __BaseException {
|
|
1194
|
-
readonly name: "DBUpgradeDependencyFailureFault";
|
|
1195
|
-
readonly $fault: "client";
|
|
1196
|
-
constructor(
|
|
1197
|
-
opts: __ExceptionOptionType<
|
|
1198
|
-
DBUpgradeDependencyFailureFault,
|
|
1199
|
-
__BaseException
|
|
1200
|
-
>
|
|
1201
|
-
);
|
|
1202
|
-
}
|
|
1203
747
|
export interface ModifyDBInstanceMessage {
|
|
1204
748
|
DBInstanceIdentifier: string | undefined;
|
|
1205
749
|
DBInstanceClass?: string | undefined;
|
|
@@ -1225,11 +769,6 @@ export interface ModifyDBSubnetGroupMessage {
|
|
|
1225
769
|
export interface ModifyDBSubnetGroupResult {
|
|
1226
770
|
DBSubnetGroup?: DBSubnetGroup | undefined;
|
|
1227
771
|
}
|
|
1228
|
-
export declare class SubnetAlreadyInUse extends __BaseException {
|
|
1229
|
-
readonly name: "SubnetAlreadyInUse";
|
|
1230
|
-
readonly $fault: "client";
|
|
1231
|
-
constructor(opts: __ExceptionOptionType<SubnetAlreadyInUse, __BaseException>);
|
|
1232
|
-
}
|
|
1233
772
|
export interface ModifyEventSubscriptionMessage {
|
|
1234
773
|
SubscriptionName: string | undefined;
|
|
1235
774
|
SnsTopicArn?: string | undefined;
|
|
@@ -1278,30 +817,6 @@ export interface ResetDBClusterParameterGroupMessage {
|
|
|
1278
817
|
ResetAllParameters?: boolean | undefined;
|
|
1279
818
|
Parameters?: Parameter[] | undefined;
|
|
1280
819
|
}
|
|
1281
|
-
export declare class InsufficientDBClusterCapacityFault extends __BaseException {
|
|
1282
|
-
readonly name: "InsufficientDBClusterCapacityFault";
|
|
1283
|
-
readonly $fault: "client";
|
|
1284
|
-
constructor(
|
|
1285
|
-
opts: __ExceptionOptionType<
|
|
1286
|
-
InsufficientDBClusterCapacityFault,
|
|
1287
|
-
__BaseException
|
|
1288
|
-
>
|
|
1289
|
-
);
|
|
1290
|
-
}
|
|
1291
|
-
export declare class InvalidDBSnapshotStateFault extends __BaseException {
|
|
1292
|
-
readonly name: "InvalidDBSnapshotStateFault";
|
|
1293
|
-
readonly $fault: "client";
|
|
1294
|
-
constructor(
|
|
1295
|
-
opts: __ExceptionOptionType<InvalidDBSnapshotStateFault, __BaseException>
|
|
1296
|
-
);
|
|
1297
|
-
}
|
|
1298
|
-
export declare class InvalidRestoreFault extends __BaseException {
|
|
1299
|
-
readonly name: "InvalidRestoreFault";
|
|
1300
|
-
readonly $fault: "client";
|
|
1301
|
-
constructor(
|
|
1302
|
-
opts: __ExceptionOptionType<InvalidRestoreFault, __BaseException>
|
|
1303
|
-
);
|
|
1304
|
-
}
|
|
1305
820
|
export interface RestoreDBClusterFromSnapshotMessage {
|
|
1306
821
|
AvailabilityZones?: string[] | undefined;
|
|
1307
822
|
DBClusterIdentifier: string | undefined;
|