@aws-sdk/client-rds 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RDSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +1281 -4
- package/dist-cjs/models/models_1.js +303 -3
- package/dist-cjs/protocols/Aws_query.js +1471 -5261
- package/dist-es/index.js +1 -0
- package/dist-es/models/RDSServiceException.js +12 -0
- package/dist-es/models/models_0.js +1178 -1
- package/dist-es/models/models_1.js +278 -1
- package/dist-es/protocols/Aws_query.js +3105 -5521
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RDSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +688 -393
- package/dist-types/models/models_1.d.ts +163 -93
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RDSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +492 -393
- package/dist-types/ts3.4/models/models_1.d.ts +117 -93
- package/package.json +27 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Describes a quota for an Amazon Web Services account.</p>
|
|
4
5
|
* <p>The following are account quotas:</p>
|
|
@@ -176,34 +177,46 @@ export declare namespace AddRoleToDBClusterMessage {
|
|
|
176
177
|
* <code>DBClusterIdentifier</code> doesn't refer to an existing DB cluster.
|
|
177
178
|
* </p>
|
|
178
179
|
*/
|
|
179
|
-
export
|
|
180
|
-
name: "DBClusterNotFoundFault";
|
|
181
|
-
$fault: "client";
|
|
182
|
-
|
|
180
|
+
export declare class DBClusterNotFoundFault extends __BaseException {
|
|
181
|
+
readonly name: "DBClusterNotFoundFault";
|
|
182
|
+
readonly $fault: "client";
|
|
183
|
+
/**
|
|
184
|
+
* @internal
|
|
185
|
+
*/
|
|
186
|
+
constructor(opts: __ExceptionOptionType<DBClusterNotFoundFault, __BaseException>);
|
|
183
187
|
}
|
|
184
188
|
/**
|
|
185
189
|
* <p>The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.</p>
|
|
186
190
|
*/
|
|
187
|
-
export
|
|
188
|
-
name: "DBClusterRoleAlreadyExistsFault";
|
|
189
|
-
$fault: "client";
|
|
190
|
-
|
|
191
|
+
export declare class DBClusterRoleAlreadyExistsFault extends __BaseException {
|
|
192
|
+
readonly name: "DBClusterRoleAlreadyExistsFault";
|
|
193
|
+
readonly $fault: "client";
|
|
194
|
+
/**
|
|
195
|
+
* @internal
|
|
196
|
+
*/
|
|
197
|
+
constructor(opts: __ExceptionOptionType<DBClusterRoleAlreadyExistsFault, __BaseException>);
|
|
191
198
|
}
|
|
192
199
|
/**
|
|
193
200
|
* <p>You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.</p>
|
|
194
201
|
*/
|
|
195
|
-
export
|
|
196
|
-
name: "DBClusterRoleQuotaExceededFault";
|
|
197
|
-
$fault: "client";
|
|
198
|
-
|
|
202
|
+
export declare class DBClusterRoleQuotaExceededFault extends __BaseException {
|
|
203
|
+
readonly name: "DBClusterRoleQuotaExceededFault";
|
|
204
|
+
readonly $fault: "client";
|
|
205
|
+
/**
|
|
206
|
+
* @internal
|
|
207
|
+
*/
|
|
208
|
+
constructor(opts: __ExceptionOptionType<DBClusterRoleQuotaExceededFault, __BaseException>);
|
|
199
209
|
}
|
|
200
210
|
/**
|
|
201
211
|
* <p>The requested operation can't be performed while the cluster is in this state.</p>
|
|
202
212
|
*/
|
|
203
|
-
export
|
|
204
|
-
name: "InvalidDBClusterStateFault";
|
|
205
|
-
$fault: "client";
|
|
206
|
-
|
|
213
|
+
export declare class InvalidDBClusterStateFault extends __BaseException {
|
|
214
|
+
readonly name: "InvalidDBClusterStateFault";
|
|
215
|
+
readonly $fault: "client";
|
|
216
|
+
/**
|
|
217
|
+
* @internal
|
|
218
|
+
*/
|
|
219
|
+
constructor(opts: __ExceptionOptionType<InvalidDBClusterStateFault, __BaseException>);
|
|
207
220
|
}
|
|
208
221
|
export interface AddRoleToDBInstanceMessage {
|
|
209
222
|
/**
|
|
@@ -233,34 +246,46 @@ export declare namespace AddRoleToDBInstanceMessage {
|
|
|
233
246
|
* <code>DBInstanceIdentifier</code> doesn't refer to an existing DB instance.
|
|
234
247
|
* </p>
|
|
235
248
|
*/
|
|
236
|
-
export
|
|
237
|
-
name: "DBInstanceNotFoundFault";
|
|
238
|
-
$fault: "client";
|
|
239
|
-
|
|
249
|
+
export declare class DBInstanceNotFoundFault extends __BaseException {
|
|
250
|
+
readonly name: "DBInstanceNotFoundFault";
|
|
251
|
+
readonly $fault: "client";
|
|
252
|
+
/**
|
|
253
|
+
* @internal
|
|
254
|
+
*/
|
|
255
|
+
constructor(opts: __ExceptionOptionType<DBInstanceNotFoundFault, __BaseException>);
|
|
240
256
|
}
|
|
241
257
|
/**
|
|
242
258
|
* <p>The specified <code>RoleArn</code> or <code>FeatureName</code> value is already associated with the DB instance.</p>
|
|
243
259
|
*/
|
|
244
|
-
export
|
|
245
|
-
name: "DBInstanceRoleAlreadyExistsFault";
|
|
246
|
-
$fault: "client";
|
|
247
|
-
|
|
260
|
+
export declare class DBInstanceRoleAlreadyExistsFault extends __BaseException {
|
|
261
|
+
readonly name: "DBInstanceRoleAlreadyExistsFault";
|
|
262
|
+
readonly $fault: "client";
|
|
263
|
+
/**
|
|
264
|
+
* @internal
|
|
265
|
+
*/
|
|
266
|
+
constructor(opts: __ExceptionOptionType<DBInstanceRoleAlreadyExistsFault, __BaseException>);
|
|
248
267
|
}
|
|
249
268
|
/**
|
|
250
269
|
* <p>You can't associate any more Amazon Web Services Identity and Access Management (IAM) roles with the DB instance because the quota has been reached.</p>
|
|
251
270
|
*/
|
|
252
|
-
export
|
|
253
|
-
name: "DBInstanceRoleQuotaExceededFault";
|
|
254
|
-
$fault: "client";
|
|
255
|
-
|
|
271
|
+
export declare class DBInstanceRoleQuotaExceededFault extends __BaseException {
|
|
272
|
+
readonly name: "DBInstanceRoleQuotaExceededFault";
|
|
273
|
+
readonly $fault: "client";
|
|
274
|
+
/**
|
|
275
|
+
* @internal
|
|
276
|
+
*/
|
|
277
|
+
constructor(opts: __ExceptionOptionType<DBInstanceRoleQuotaExceededFault, __BaseException>);
|
|
256
278
|
}
|
|
257
279
|
/**
|
|
258
280
|
* <p>The DB instance isn't in a valid state.</p>
|
|
259
281
|
*/
|
|
260
|
-
export
|
|
261
|
-
name: "InvalidDBInstanceStateFault";
|
|
262
|
-
$fault: "client";
|
|
263
|
-
|
|
282
|
+
export declare class InvalidDBInstanceStateFault extends __BaseException {
|
|
283
|
+
readonly name: "InvalidDBInstanceStateFault";
|
|
284
|
+
readonly $fault: "client";
|
|
285
|
+
/**
|
|
286
|
+
* @internal
|
|
287
|
+
*/
|
|
288
|
+
constructor(opts: __ExceptionOptionType<InvalidDBInstanceStateFault, __BaseException>);
|
|
264
289
|
}
|
|
265
290
|
/**
|
|
266
291
|
* <p></p>
|
|
@@ -374,18 +399,24 @@ export declare namespace AddSourceIdentifierToSubscriptionResult {
|
|
|
374
399
|
/**
|
|
375
400
|
* <p>The requested source could not be found.</p>
|
|
376
401
|
*/
|
|
377
|
-
export
|
|
378
|
-
name: "SourceNotFoundFault";
|
|
379
|
-
$fault: "client";
|
|
380
|
-
|
|
402
|
+
export declare class SourceNotFoundFault extends __BaseException {
|
|
403
|
+
readonly name: "SourceNotFoundFault";
|
|
404
|
+
readonly $fault: "client";
|
|
405
|
+
/**
|
|
406
|
+
* @internal
|
|
407
|
+
*/
|
|
408
|
+
constructor(opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>);
|
|
381
409
|
}
|
|
382
410
|
/**
|
|
383
411
|
* <p>The subscription name does not exist.</p>
|
|
384
412
|
*/
|
|
385
|
-
export
|
|
386
|
-
name: "SubscriptionNotFoundFault";
|
|
387
|
-
$fault: "client";
|
|
388
|
-
|
|
413
|
+
export declare class SubscriptionNotFoundFault extends __BaseException {
|
|
414
|
+
readonly name: "SubscriptionNotFoundFault";
|
|
415
|
+
readonly $fault: "client";
|
|
416
|
+
/**
|
|
417
|
+
* @internal
|
|
418
|
+
*/
|
|
419
|
+
constructor(opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>);
|
|
389
420
|
}
|
|
390
421
|
/**
|
|
391
422
|
* <p>Metadata assigned to an Amazon RDS resource consisting of a key-value pair.</p>
|
|
@@ -431,28 +462,37 @@ export declare namespace AddTagsToResourceMessage {
|
|
|
431
462
|
/**
|
|
432
463
|
* <p>The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
433
464
|
*/
|
|
434
|
-
export
|
|
435
|
-
name: "DBProxyNotFoundFault";
|
|
436
|
-
$fault: "client";
|
|
437
|
-
|
|
465
|
+
export declare class DBProxyNotFoundFault extends __BaseException {
|
|
466
|
+
readonly name: "DBProxyNotFoundFault";
|
|
467
|
+
readonly $fault: "client";
|
|
468
|
+
/**
|
|
469
|
+
* @internal
|
|
470
|
+
*/
|
|
471
|
+
constructor(opts: __ExceptionOptionType<DBProxyNotFoundFault, __BaseException>);
|
|
438
472
|
}
|
|
439
473
|
/**
|
|
440
474
|
* <p>The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
441
475
|
*/
|
|
442
|
-
export
|
|
443
|
-
name: "DBProxyTargetGroupNotFoundFault";
|
|
444
|
-
$fault: "client";
|
|
445
|
-
|
|
476
|
+
export declare class DBProxyTargetGroupNotFoundFault extends __BaseException {
|
|
477
|
+
readonly name: "DBProxyTargetGroupNotFoundFault";
|
|
478
|
+
readonly $fault: "client";
|
|
479
|
+
/**
|
|
480
|
+
* @internal
|
|
481
|
+
*/
|
|
482
|
+
constructor(opts: __ExceptionOptionType<DBProxyTargetGroupNotFoundFault, __BaseException>);
|
|
446
483
|
}
|
|
447
484
|
/**
|
|
448
485
|
* <p>
|
|
449
486
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.
|
|
450
487
|
* </p>
|
|
451
488
|
*/
|
|
452
|
-
export
|
|
453
|
-
name: "DBSnapshotNotFoundFault";
|
|
454
|
-
$fault: "client";
|
|
455
|
-
|
|
489
|
+
export declare class DBSnapshotNotFoundFault extends __BaseException {
|
|
490
|
+
readonly name: "DBSnapshotNotFoundFault";
|
|
491
|
+
readonly $fault: "client";
|
|
492
|
+
/**
|
|
493
|
+
* @internal
|
|
494
|
+
*/
|
|
495
|
+
constructor(opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>);
|
|
456
496
|
}
|
|
457
497
|
/**
|
|
458
498
|
* <p></p>
|
|
@@ -583,27 +623,36 @@ export declare namespace ApplyPendingMaintenanceActionResult {
|
|
|
583
623
|
/**
|
|
584
624
|
* <p>The specified resource ID was not found.</p>
|
|
585
625
|
*/
|
|
586
|
-
export
|
|
587
|
-
name: "ResourceNotFoundFault";
|
|
588
|
-
$fault: "client";
|
|
589
|
-
|
|
626
|
+
export declare class ResourceNotFoundFault extends __BaseException {
|
|
627
|
+
readonly name: "ResourceNotFoundFault";
|
|
628
|
+
readonly $fault: "client";
|
|
629
|
+
/**
|
|
630
|
+
* @internal
|
|
631
|
+
*/
|
|
632
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
|
|
590
633
|
}
|
|
591
634
|
/**
|
|
592
635
|
* <p>The specified CIDR IP range or Amazon EC2 security group is already authorized for
|
|
593
636
|
* the specified DB security group.</p>
|
|
594
637
|
*/
|
|
595
|
-
export
|
|
596
|
-
name: "AuthorizationAlreadyExistsFault";
|
|
597
|
-
$fault: "client";
|
|
598
|
-
|
|
638
|
+
export declare class AuthorizationAlreadyExistsFault extends __BaseException {
|
|
639
|
+
readonly name: "AuthorizationAlreadyExistsFault";
|
|
640
|
+
readonly $fault: "client";
|
|
641
|
+
/**
|
|
642
|
+
* @internal
|
|
643
|
+
*/
|
|
644
|
+
constructor(opts: __ExceptionOptionType<AuthorizationAlreadyExistsFault, __BaseException>);
|
|
599
645
|
}
|
|
600
646
|
/**
|
|
601
647
|
* <p>The DB security group authorization quota has been reached.</p>
|
|
602
648
|
*/
|
|
603
|
-
export
|
|
604
|
-
name: "AuthorizationQuotaExceededFault";
|
|
605
|
-
$fault: "client";
|
|
606
|
-
|
|
649
|
+
export declare class AuthorizationQuotaExceededFault extends __BaseException {
|
|
650
|
+
readonly name: "AuthorizationQuotaExceededFault";
|
|
651
|
+
readonly $fault: "client";
|
|
652
|
+
/**
|
|
653
|
+
* @internal
|
|
654
|
+
*/
|
|
655
|
+
constructor(opts: __ExceptionOptionType<AuthorizationQuotaExceededFault, __BaseException>);
|
|
607
656
|
}
|
|
608
657
|
/**
|
|
609
658
|
* <p></p>
|
|
@@ -787,18 +836,24 @@ export declare namespace AuthorizeDBSecurityGroupIngressResult {
|
|
|
787
836
|
* <code>DBSecurityGroupName</code> doesn't refer to an existing DB security group.
|
|
788
837
|
* </p>
|
|
789
838
|
*/
|
|
790
|
-
export
|
|
791
|
-
name: "DBSecurityGroupNotFoundFault";
|
|
792
|
-
$fault: "client";
|
|
793
|
-
|
|
839
|
+
export declare class DBSecurityGroupNotFoundFault extends __BaseException {
|
|
840
|
+
readonly name: "DBSecurityGroupNotFoundFault";
|
|
841
|
+
readonly $fault: "client";
|
|
842
|
+
/**
|
|
843
|
+
* @internal
|
|
844
|
+
*/
|
|
845
|
+
constructor(opts: __ExceptionOptionType<DBSecurityGroupNotFoundFault, __BaseException>);
|
|
794
846
|
}
|
|
795
847
|
/**
|
|
796
848
|
* <p>The state of the DB security group doesn't allow deletion.</p>
|
|
797
849
|
*/
|
|
798
|
-
export
|
|
799
|
-
name: "InvalidDBSecurityGroupStateFault";
|
|
800
|
-
$fault: "client";
|
|
801
|
-
|
|
850
|
+
export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
|
|
851
|
+
readonly name: "InvalidDBSecurityGroupStateFault";
|
|
852
|
+
readonly $fault: "client";
|
|
853
|
+
/**
|
|
854
|
+
* @internal
|
|
855
|
+
*/
|
|
856
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSecurityGroupStateFault, __BaseException>);
|
|
802
857
|
}
|
|
803
858
|
/**
|
|
804
859
|
* <p></p>
|
|
@@ -1034,18 +1089,24 @@ export declare namespace ExportTask {
|
|
|
1034
1089
|
/**
|
|
1035
1090
|
* <p>The export task doesn't exist.</p>
|
|
1036
1091
|
*/
|
|
1037
|
-
export
|
|
1038
|
-
name: "ExportTaskNotFoundFault";
|
|
1039
|
-
$fault: "client";
|
|
1040
|
-
|
|
1092
|
+
export declare class ExportTaskNotFoundFault extends __BaseException {
|
|
1093
|
+
readonly name: "ExportTaskNotFoundFault";
|
|
1094
|
+
readonly $fault: "client";
|
|
1095
|
+
/**
|
|
1096
|
+
* @internal
|
|
1097
|
+
*/
|
|
1098
|
+
constructor(opts: __ExceptionOptionType<ExportTaskNotFoundFault, __BaseException>);
|
|
1041
1099
|
}
|
|
1042
1100
|
/**
|
|
1043
1101
|
* <p>You can't cancel an export task that has completed.</p>
|
|
1044
1102
|
*/
|
|
1045
|
-
export
|
|
1046
|
-
name: "InvalidExportTaskStateFault";
|
|
1047
|
-
$fault: "client";
|
|
1048
|
-
|
|
1103
|
+
export declare class InvalidExportTaskStateFault extends __BaseException {
|
|
1104
|
+
readonly name: "InvalidExportTaskStateFault";
|
|
1105
|
+
readonly $fault: "client";
|
|
1106
|
+
/**
|
|
1107
|
+
* @internal
|
|
1108
|
+
*/
|
|
1109
|
+
constructor(opts: __ExceptionOptionType<InvalidExportTaskStateFault, __BaseException>);
|
|
1049
1110
|
}
|
|
1050
1111
|
export interface CopyDBClusterParameterGroupMessage {
|
|
1051
1112
|
/**
|
|
@@ -1149,10 +1210,13 @@ export declare namespace CopyDBClusterParameterGroupResult {
|
|
|
1149
1210
|
/**
|
|
1150
1211
|
* <p>A DB parameter group with the same name exists.</p>
|
|
1151
1212
|
*/
|
|
1152
|
-
export
|
|
1153
|
-
name: "DBParameterGroupAlreadyExistsFault";
|
|
1154
|
-
$fault: "client";
|
|
1155
|
-
|
|
1213
|
+
export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
|
|
1214
|
+
readonly name: "DBParameterGroupAlreadyExistsFault";
|
|
1215
|
+
readonly $fault: "client";
|
|
1216
|
+
/**
|
|
1217
|
+
* @internal
|
|
1218
|
+
*/
|
|
1219
|
+
constructor(opts: __ExceptionOptionType<DBParameterGroupAlreadyExistsFault, __BaseException>);
|
|
1156
1220
|
}
|
|
1157
1221
|
/**
|
|
1158
1222
|
* <p>
|
|
@@ -1160,19 +1224,25 @@ export interface DBParameterGroupAlreadyExistsFault extends __SmithyException, $
|
|
|
1160
1224
|
* existing DB parameter group.
|
|
1161
1225
|
* </p>
|
|
1162
1226
|
*/
|
|
1163
|
-
export
|
|
1164
|
-
name: "DBParameterGroupNotFoundFault";
|
|
1165
|
-
$fault: "client";
|
|
1166
|
-
|
|
1227
|
+
export declare class DBParameterGroupNotFoundFault extends __BaseException {
|
|
1228
|
+
readonly name: "DBParameterGroupNotFoundFault";
|
|
1229
|
+
readonly $fault: "client";
|
|
1230
|
+
/**
|
|
1231
|
+
* @internal
|
|
1232
|
+
*/
|
|
1233
|
+
constructor(opts: __ExceptionOptionType<DBParameterGroupNotFoundFault, __BaseException>);
|
|
1167
1234
|
}
|
|
1168
1235
|
/**
|
|
1169
1236
|
* <p>The request would result in the user exceeding the allowed number of DB parameter
|
|
1170
1237
|
* groups.</p>
|
|
1171
1238
|
*/
|
|
1172
|
-
export
|
|
1173
|
-
name: "DBParameterGroupQuotaExceededFault";
|
|
1174
|
-
$fault: "client";
|
|
1175
|
-
|
|
1239
|
+
export declare class DBParameterGroupQuotaExceededFault extends __BaseException {
|
|
1240
|
+
readonly name: "DBParameterGroupQuotaExceededFault";
|
|
1241
|
+
readonly $fault: "client";
|
|
1242
|
+
/**
|
|
1243
|
+
* @internal
|
|
1244
|
+
*/
|
|
1245
|
+
constructor(opts: __ExceptionOptionType<DBParameterGroupQuotaExceededFault, __BaseException>);
|
|
1176
1246
|
}
|
|
1177
1247
|
/**
|
|
1178
1248
|
* <p></p>
|
|
@@ -1441,45 +1511,60 @@ export declare namespace CopyDBClusterSnapshotResult {
|
|
|
1441
1511
|
/**
|
|
1442
1512
|
* <p>The user already has a DB cluster snapshot with the given identifier.</p>
|
|
1443
1513
|
*/
|
|
1444
|
-
export
|
|
1445
|
-
name: "DBClusterSnapshotAlreadyExistsFault";
|
|
1446
|
-
$fault: "client";
|
|
1447
|
-
|
|
1514
|
+
export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
|
|
1515
|
+
readonly name: "DBClusterSnapshotAlreadyExistsFault";
|
|
1516
|
+
readonly $fault: "client";
|
|
1517
|
+
/**
|
|
1518
|
+
* @internal
|
|
1519
|
+
*/
|
|
1520
|
+
constructor(opts: __ExceptionOptionType<DBClusterSnapshotAlreadyExistsFault, __BaseException>);
|
|
1448
1521
|
}
|
|
1449
1522
|
/**
|
|
1450
1523
|
* <p>
|
|
1451
1524
|
* <code>DBClusterSnapshotIdentifier</code> doesn't refer to an existing DB cluster snapshot.
|
|
1452
1525
|
* </p>
|
|
1453
1526
|
*/
|
|
1454
|
-
export
|
|
1455
|
-
name: "DBClusterSnapshotNotFoundFault";
|
|
1456
|
-
$fault: "client";
|
|
1457
|
-
|
|
1527
|
+
export declare class DBClusterSnapshotNotFoundFault extends __BaseException {
|
|
1528
|
+
readonly name: "DBClusterSnapshotNotFoundFault";
|
|
1529
|
+
readonly $fault: "client";
|
|
1530
|
+
/**
|
|
1531
|
+
* @internal
|
|
1532
|
+
*/
|
|
1533
|
+
constructor(opts: __ExceptionOptionType<DBClusterSnapshotNotFoundFault, __BaseException>);
|
|
1458
1534
|
}
|
|
1459
1535
|
/**
|
|
1460
1536
|
* <p>The supplied value isn't a valid DB cluster snapshot state.</p>
|
|
1461
1537
|
*/
|
|
1462
|
-
export
|
|
1463
|
-
name: "InvalidDBClusterSnapshotStateFault";
|
|
1464
|
-
$fault: "client";
|
|
1465
|
-
|
|
1538
|
+
export declare class InvalidDBClusterSnapshotStateFault extends __BaseException {
|
|
1539
|
+
readonly name: "InvalidDBClusterSnapshotStateFault";
|
|
1540
|
+
readonly $fault: "client";
|
|
1541
|
+
/**
|
|
1542
|
+
* @internal
|
|
1543
|
+
*/
|
|
1544
|
+
constructor(opts: __ExceptionOptionType<InvalidDBClusterSnapshotStateFault, __BaseException>);
|
|
1466
1545
|
}
|
|
1467
1546
|
/**
|
|
1468
1547
|
* <p>An error occurred accessing an Amazon Web Services KMS key.</p>
|
|
1469
1548
|
*/
|
|
1470
|
-
export
|
|
1471
|
-
name: "KMSKeyNotAccessibleFault";
|
|
1472
|
-
$fault: "client";
|
|
1473
|
-
|
|
1549
|
+
export declare class KMSKeyNotAccessibleFault extends __BaseException {
|
|
1550
|
+
readonly name: "KMSKeyNotAccessibleFault";
|
|
1551
|
+
readonly $fault: "client";
|
|
1552
|
+
/**
|
|
1553
|
+
* @internal
|
|
1554
|
+
*/
|
|
1555
|
+
constructor(opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>);
|
|
1474
1556
|
}
|
|
1475
1557
|
/**
|
|
1476
1558
|
* <p>The request would result in the user exceeding the allowed number of DB
|
|
1477
1559
|
* snapshots.</p>
|
|
1478
1560
|
*/
|
|
1479
|
-
export
|
|
1480
|
-
name: "SnapshotQuotaExceededFault";
|
|
1481
|
-
$fault: "client";
|
|
1482
|
-
|
|
1561
|
+
export declare class SnapshotQuotaExceededFault extends __BaseException {
|
|
1562
|
+
readonly name: "SnapshotQuotaExceededFault";
|
|
1563
|
+
readonly $fault: "client";
|
|
1564
|
+
/**
|
|
1565
|
+
* @internal
|
|
1566
|
+
*/
|
|
1567
|
+
constructor(opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>);
|
|
1483
1568
|
}
|
|
1484
1569
|
/**
|
|
1485
1570
|
* <p></p>
|
|
@@ -2027,28 +2112,37 @@ export declare namespace CopyDBSnapshotResult {
|
|
|
2027
2112
|
* <code>CustomAvailabilityZoneId</code> doesn't refer to an existing custom
|
|
2028
2113
|
* Availability Zone identifier.</p>
|
|
2029
2114
|
*/
|
|
2030
|
-
export
|
|
2031
|
-
name: "CustomAvailabilityZoneNotFoundFault";
|
|
2032
|
-
$fault: "client";
|
|
2033
|
-
|
|
2115
|
+
export declare class CustomAvailabilityZoneNotFoundFault extends __BaseException {
|
|
2116
|
+
readonly name: "CustomAvailabilityZoneNotFoundFault";
|
|
2117
|
+
readonly $fault: "client";
|
|
2118
|
+
/**
|
|
2119
|
+
* @internal
|
|
2120
|
+
*/
|
|
2121
|
+
constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneNotFoundFault, __BaseException>);
|
|
2034
2122
|
}
|
|
2035
2123
|
/**
|
|
2036
2124
|
* <p>
|
|
2037
2125
|
* <code>DBSnapshotIdentifier</code> is already used by an existing snapshot.
|
|
2038
2126
|
* </p>
|
|
2039
2127
|
*/
|
|
2040
|
-
export
|
|
2041
|
-
name: "DBSnapshotAlreadyExistsFault";
|
|
2042
|
-
$fault: "client";
|
|
2043
|
-
|
|
2128
|
+
export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
|
|
2129
|
+
readonly name: "DBSnapshotAlreadyExistsFault";
|
|
2130
|
+
readonly $fault: "client";
|
|
2131
|
+
/**
|
|
2132
|
+
* @internal
|
|
2133
|
+
*/
|
|
2134
|
+
constructor(opts: __ExceptionOptionType<DBSnapshotAlreadyExistsFault, __BaseException>);
|
|
2044
2135
|
}
|
|
2045
2136
|
/**
|
|
2046
2137
|
* <p>The state of the DB snapshot doesn't allow deletion.</p>
|
|
2047
2138
|
*/
|
|
2048
|
-
export
|
|
2049
|
-
name: "InvalidDBSnapshotStateFault";
|
|
2050
|
-
$fault: "client";
|
|
2051
|
-
|
|
2139
|
+
export declare class InvalidDBSnapshotStateFault extends __BaseException {
|
|
2140
|
+
readonly name: "InvalidDBSnapshotStateFault";
|
|
2141
|
+
readonly $fault: "client";
|
|
2142
|
+
/**
|
|
2143
|
+
* @internal
|
|
2144
|
+
*/
|
|
2145
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSnapshotStateFault, __BaseException>);
|
|
2052
2146
|
}
|
|
2053
2147
|
/**
|
|
2054
2148
|
* <p></p>
|
|
@@ -2323,26 +2417,35 @@ export declare namespace CopyOptionGroupResult {
|
|
|
2323
2417
|
/**
|
|
2324
2418
|
* <p>The option group you are trying to create already exists.</p>
|
|
2325
2419
|
*/
|
|
2326
|
-
export
|
|
2327
|
-
name: "OptionGroupAlreadyExistsFault";
|
|
2328
|
-
$fault: "client";
|
|
2329
|
-
|
|
2420
|
+
export declare class OptionGroupAlreadyExistsFault extends __BaseException {
|
|
2421
|
+
readonly name: "OptionGroupAlreadyExistsFault";
|
|
2422
|
+
readonly $fault: "client";
|
|
2423
|
+
/**
|
|
2424
|
+
* @internal
|
|
2425
|
+
*/
|
|
2426
|
+
constructor(opts: __ExceptionOptionType<OptionGroupAlreadyExistsFault, __BaseException>);
|
|
2330
2427
|
}
|
|
2331
2428
|
/**
|
|
2332
2429
|
* <p>The specified option group could not be found.</p>
|
|
2333
2430
|
*/
|
|
2334
|
-
export
|
|
2335
|
-
name: "OptionGroupNotFoundFault";
|
|
2336
|
-
$fault: "client";
|
|
2337
|
-
|
|
2431
|
+
export declare class OptionGroupNotFoundFault extends __BaseException {
|
|
2432
|
+
readonly name: "OptionGroupNotFoundFault";
|
|
2433
|
+
readonly $fault: "client";
|
|
2434
|
+
/**
|
|
2435
|
+
* @internal
|
|
2436
|
+
*/
|
|
2437
|
+
constructor(opts: __ExceptionOptionType<OptionGroupNotFoundFault, __BaseException>);
|
|
2338
2438
|
}
|
|
2339
2439
|
/**
|
|
2340
2440
|
* <p>The quota of 20 option groups was exceeded for this Amazon Web Services account.</p>
|
|
2341
2441
|
*/
|
|
2342
|
-
export
|
|
2343
|
-
name: "OptionGroupQuotaExceededFault";
|
|
2344
|
-
$fault: "client";
|
|
2345
|
-
|
|
2442
|
+
export declare class OptionGroupQuotaExceededFault extends __BaseException {
|
|
2443
|
+
readonly name: "OptionGroupQuotaExceededFault";
|
|
2444
|
+
readonly $fault: "client";
|
|
2445
|
+
/**
|
|
2446
|
+
* @internal
|
|
2447
|
+
*/
|
|
2448
|
+
constructor(opts: __ExceptionOptionType<OptionGroupQuotaExceededFault, __BaseException>);
|
|
2346
2449
|
}
|
|
2347
2450
|
/**
|
|
2348
2451
|
* <p></p>
|
|
@@ -2467,18 +2570,24 @@ export declare namespace CreateCustomAvailabilityZoneResult {
|
|
|
2467
2570
|
* <code>CustomAvailabilityZoneName</code> is already used by an existing custom
|
|
2468
2571
|
* Availability Zone.</p>
|
|
2469
2572
|
*/
|
|
2470
|
-
export
|
|
2471
|
-
name: "CustomAvailabilityZoneAlreadyExistsFault";
|
|
2472
|
-
$fault: "client";
|
|
2473
|
-
|
|
2573
|
+
export declare class CustomAvailabilityZoneAlreadyExistsFault extends __BaseException {
|
|
2574
|
+
readonly name: "CustomAvailabilityZoneAlreadyExistsFault";
|
|
2575
|
+
readonly $fault: "client";
|
|
2576
|
+
/**
|
|
2577
|
+
* @internal
|
|
2578
|
+
*/
|
|
2579
|
+
constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneAlreadyExistsFault, __BaseException>);
|
|
2474
2580
|
}
|
|
2475
2581
|
/**
|
|
2476
2582
|
* <p>You have exceeded the maximum number of custom Availability Zones.</p>
|
|
2477
2583
|
*/
|
|
2478
|
-
export
|
|
2479
|
-
name: "CustomAvailabilityZoneQuotaExceededFault";
|
|
2480
|
-
$fault: "client";
|
|
2481
|
-
|
|
2584
|
+
export declare class CustomAvailabilityZoneQuotaExceededFault extends __BaseException {
|
|
2585
|
+
readonly name: "CustomAvailabilityZoneQuotaExceededFault";
|
|
2586
|
+
readonly $fault: "client";
|
|
2587
|
+
/**
|
|
2588
|
+
* @internal
|
|
2589
|
+
*/
|
|
2590
|
+
constructor(opts: __ExceptionOptionType<CustomAvailabilityZoneQuotaExceededFault, __BaseException>);
|
|
2482
2591
|
}
|
|
2483
2592
|
export interface CreateCustomDBEngineVersionMessage {
|
|
2484
2593
|
/**
|
|
@@ -2566,18 +2675,24 @@ export declare namespace CreateCustomDBEngineVersionMessage {
|
|
|
2566
2675
|
/**
|
|
2567
2676
|
* <p>A CEV with the specified name already exists.</p>
|
|
2568
2677
|
*/
|
|
2569
|
-
export
|
|
2570
|
-
name: "CustomDBEngineVersionAlreadyExistsFault";
|
|
2571
|
-
$fault: "client";
|
|
2572
|
-
|
|
2678
|
+
export declare class CustomDBEngineVersionAlreadyExistsFault extends __BaseException {
|
|
2679
|
+
readonly name: "CustomDBEngineVersionAlreadyExistsFault";
|
|
2680
|
+
readonly $fault: "client";
|
|
2681
|
+
/**
|
|
2682
|
+
* @internal
|
|
2683
|
+
*/
|
|
2684
|
+
constructor(opts: __ExceptionOptionType<CustomDBEngineVersionAlreadyExistsFault, __BaseException>);
|
|
2573
2685
|
}
|
|
2574
2686
|
/**
|
|
2575
2687
|
* <p>You have exceeded your CEV quota.</p>
|
|
2576
2688
|
*/
|
|
2577
|
-
export
|
|
2578
|
-
name: "CustomDBEngineVersionQuotaExceededFault";
|
|
2579
|
-
$fault: "client";
|
|
2580
|
-
|
|
2689
|
+
export declare class CustomDBEngineVersionQuotaExceededFault extends __BaseException {
|
|
2690
|
+
readonly name: "CustomDBEngineVersionQuotaExceededFault";
|
|
2691
|
+
readonly $fault: "client";
|
|
2692
|
+
/**
|
|
2693
|
+
* @internal
|
|
2694
|
+
*/
|
|
2695
|
+
constructor(opts: __ExceptionOptionType<CustomDBEngineVersionQuotaExceededFault, __BaseException>);
|
|
2581
2696
|
}
|
|
2582
2697
|
/**
|
|
2583
2698
|
* <p>
|
|
@@ -4114,117 +4229,156 @@ export declare namespace CreateDBClusterResult {
|
|
|
4114
4229
|
/**
|
|
4115
4230
|
* <p>The user already has a DB cluster with the given identifier.</p>
|
|
4116
4231
|
*/
|
|
4117
|
-
export
|
|
4118
|
-
name: "DBClusterAlreadyExistsFault";
|
|
4119
|
-
$fault: "client";
|
|
4120
|
-
|
|
4232
|
+
export declare class DBClusterAlreadyExistsFault extends __BaseException {
|
|
4233
|
+
readonly name: "DBClusterAlreadyExistsFault";
|
|
4234
|
+
readonly $fault: "client";
|
|
4235
|
+
/**
|
|
4236
|
+
* @internal
|
|
4237
|
+
*/
|
|
4238
|
+
constructor(opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>);
|
|
4121
4239
|
}
|
|
4122
4240
|
/**
|
|
4123
4241
|
* <p>
|
|
4124
4242
|
* <code>DBClusterParameterGroupName</code> doesn't refer to an existing DB
|
|
4125
4243
|
* cluster parameter group. </p>
|
|
4126
4244
|
*/
|
|
4127
|
-
export
|
|
4128
|
-
name: "DBClusterParameterGroupNotFoundFault";
|
|
4129
|
-
$fault: "client";
|
|
4130
|
-
|
|
4245
|
+
export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
|
|
4246
|
+
readonly name: "DBClusterParameterGroupNotFoundFault";
|
|
4247
|
+
readonly $fault: "client";
|
|
4248
|
+
/**
|
|
4249
|
+
* @internal
|
|
4250
|
+
*/
|
|
4251
|
+
constructor(opts: __ExceptionOptionType<DBClusterParameterGroupNotFoundFault, __BaseException>);
|
|
4131
4252
|
}
|
|
4132
4253
|
/**
|
|
4133
4254
|
* <p>The user attempted to create a new DB cluster and the user has already reached the
|
|
4134
4255
|
* maximum allowed DB cluster quota.</p>
|
|
4135
4256
|
*/
|
|
4136
|
-
export
|
|
4137
|
-
name: "DBClusterQuotaExceededFault";
|
|
4138
|
-
$fault: "client";
|
|
4139
|
-
|
|
4257
|
+
export declare class DBClusterQuotaExceededFault extends __BaseException {
|
|
4258
|
+
readonly name: "DBClusterQuotaExceededFault";
|
|
4259
|
+
readonly $fault: "client";
|
|
4260
|
+
/**
|
|
4261
|
+
* @internal
|
|
4262
|
+
*/
|
|
4263
|
+
constructor(opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>);
|
|
4140
4264
|
}
|
|
4141
4265
|
/**
|
|
4142
4266
|
* <p>Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.</p>
|
|
4143
4267
|
*/
|
|
4144
|
-
export
|
|
4145
|
-
name: "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
4146
|
-
$fault: "client";
|
|
4147
|
-
|
|
4268
|
+
export declare class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
|
|
4269
|
+
readonly name: "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
4270
|
+
readonly $fault: "client";
|
|
4271
|
+
/**
|
|
4272
|
+
* @internal
|
|
4273
|
+
*/
|
|
4274
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupDoesNotCoverEnoughAZs, __BaseException>);
|
|
4148
4275
|
}
|
|
4149
4276
|
/**
|
|
4150
4277
|
* <p>
|
|
4151
4278
|
* <code>DBSubnetGroupName</code> doesn't refer to an existing DB subnet group.
|
|
4152
4279
|
* </p>
|
|
4153
4280
|
*/
|
|
4154
|
-
export
|
|
4155
|
-
name: "DBSubnetGroupNotFoundFault";
|
|
4156
|
-
$fault: "client";
|
|
4157
|
-
|
|
4281
|
+
export declare class DBSubnetGroupNotFoundFault extends __BaseException {
|
|
4282
|
+
readonly name: "DBSubnetGroupNotFoundFault";
|
|
4283
|
+
readonly $fault: "client";
|
|
4284
|
+
/**
|
|
4285
|
+
* @internal
|
|
4286
|
+
*/
|
|
4287
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupNotFoundFault, __BaseException>);
|
|
4158
4288
|
}
|
|
4159
4289
|
/**
|
|
4160
4290
|
* <p>
|
|
4161
4291
|
* <code>Domain</code> doesn't refer to an existing Active Directory domain.
|
|
4162
4292
|
* </p>
|
|
4163
4293
|
*/
|
|
4164
|
-
export
|
|
4165
|
-
name: "DomainNotFoundFault";
|
|
4166
|
-
$fault: "client";
|
|
4167
|
-
|
|
4294
|
+
export declare class DomainNotFoundFault extends __BaseException {
|
|
4295
|
+
readonly name: "DomainNotFoundFault";
|
|
4296
|
+
readonly $fault: "client";
|
|
4297
|
+
/**
|
|
4298
|
+
* @internal
|
|
4299
|
+
*/
|
|
4300
|
+
constructor(opts: __ExceptionOptionType<DomainNotFoundFault, __BaseException>);
|
|
4168
4301
|
}
|
|
4169
4302
|
/**
|
|
4170
4303
|
* <p>The <code>GlobalClusterIdentifier</code> doesn't refer to an existing global database cluster. </p>
|
|
4171
4304
|
*/
|
|
4172
|
-
export
|
|
4173
|
-
name: "GlobalClusterNotFoundFault";
|
|
4174
|
-
$fault: "client";
|
|
4175
|
-
|
|
4305
|
+
export declare class GlobalClusterNotFoundFault extends __BaseException {
|
|
4306
|
+
readonly name: "GlobalClusterNotFoundFault";
|
|
4307
|
+
readonly $fault: "client";
|
|
4308
|
+
/**
|
|
4309
|
+
* @internal
|
|
4310
|
+
*/
|
|
4311
|
+
constructor(opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>);
|
|
4176
4312
|
}
|
|
4177
4313
|
/**
|
|
4178
4314
|
* <p>There is insufficient storage available for the current action. You might be able to
|
|
4179
4315
|
* resolve this error by updating your subnet group to use different Availability Zones
|
|
4180
4316
|
* that have more storage available.</p>
|
|
4181
4317
|
*/
|
|
4182
|
-
export
|
|
4183
|
-
name: "InsufficientStorageClusterCapacityFault";
|
|
4184
|
-
$fault: "client";
|
|
4185
|
-
|
|
4318
|
+
export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
|
|
4319
|
+
readonly name: "InsufficientStorageClusterCapacityFault";
|
|
4320
|
+
readonly $fault: "client";
|
|
4321
|
+
/**
|
|
4322
|
+
* @internal
|
|
4323
|
+
*/
|
|
4324
|
+
constructor(opts: __ExceptionOptionType<InsufficientStorageClusterCapacityFault, __BaseException>);
|
|
4186
4325
|
}
|
|
4187
4326
|
/**
|
|
4188
4327
|
* <p>The DB subnet group cannot be deleted because it's in use.</p>
|
|
4189
4328
|
*/
|
|
4190
|
-
export
|
|
4191
|
-
name: "InvalidDBSubnetGroupStateFault";
|
|
4192
|
-
$fault: "client";
|
|
4193
|
-
|
|
4329
|
+
export declare class InvalidDBSubnetGroupStateFault extends __BaseException {
|
|
4330
|
+
readonly name: "InvalidDBSubnetGroupStateFault";
|
|
4331
|
+
readonly $fault: "client";
|
|
4332
|
+
/**
|
|
4333
|
+
* @internal
|
|
4334
|
+
*/
|
|
4335
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupStateFault, __BaseException>);
|
|
4194
4336
|
}
|
|
4195
4337
|
/**
|
|
4196
4338
|
* <p>The global cluster is in an invalid state and can't perform the requested operation. </p>
|
|
4197
4339
|
*/
|
|
4198
|
-
export
|
|
4199
|
-
name: "InvalidGlobalClusterStateFault";
|
|
4200
|
-
$fault: "client";
|
|
4201
|
-
|
|
4340
|
+
export declare class InvalidGlobalClusterStateFault extends __BaseException {
|
|
4341
|
+
readonly name: "InvalidGlobalClusterStateFault";
|
|
4342
|
+
readonly $fault: "client";
|
|
4343
|
+
/**
|
|
4344
|
+
* @internal
|
|
4345
|
+
*/
|
|
4346
|
+
constructor(opts: __ExceptionOptionType<InvalidGlobalClusterStateFault, __BaseException>);
|
|
4202
4347
|
}
|
|
4203
4348
|
/**
|
|
4204
4349
|
* <p>The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.</p>
|
|
4205
4350
|
*/
|
|
4206
|
-
export
|
|
4207
|
-
name: "InvalidSubnet";
|
|
4208
|
-
$fault: "client";
|
|
4209
|
-
|
|
4351
|
+
export declare class InvalidSubnet extends __BaseException {
|
|
4352
|
+
readonly name: "InvalidSubnet";
|
|
4353
|
+
readonly $fault: "client";
|
|
4354
|
+
/**
|
|
4355
|
+
* @internal
|
|
4356
|
+
*/
|
|
4357
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
|
|
4210
4358
|
}
|
|
4211
4359
|
/**
|
|
4212
4360
|
* <p>The DB subnet group doesn't cover all Availability Zones after it's
|
|
4213
4361
|
* created because of users' change.</p>
|
|
4214
4362
|
*/
|
|
4215
|
-
export
|
|
4216
|
-
name: "InvalidVPCNetworkStateFault";
|
|
4217
|
-
$fault: "client";
|
|
4218
|
-
|
|
4363
|
+
export declare class InvalidVPCNetworkStateFault extends __BaseException {
|
|
4364
|
+
readonly name: "InvalidVPCNetworkStateFault";
|
|
4365
|
+
readonly $fault: "client";
|
|
4366
|
+
/**
|
|
4367
|
+
* @internal
|
|
4368
|
+
*/
|
|
4369
|
+
constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
|
|
4219
4370
|
}
|
|
4220
4371
|
/**
|
|
4221
4372
|
* <p>The request would result in the user exceeding the allowed amount of storage
|
|
4222
4373
|
* available across all DB instances.</p>
|
|
4223
4374
|
*/
|
|
4224
|
-
export
|
|
4225
|
-
name: "StorageQuotaExceededFault";
|
|
4226
|
-
$fault: "client";
|
|
4227
|
-
|
|
4375
|
+
export declare class StorageQuotaExceededFault extends __BaseException {
|
|
4376
|
+
readonly name: "StorageQuotaExceededFault";
|
|
4377
|
+
readonly $fault: "client";
|
|
4378
|
+
/**
|
|
4379
|
+
* @internal
|
|
4380
|
+
*/
|
|
4381
|
+
constructor(opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>);
|
|
4228
4382
|
}
|
|
4229
4383
|
export interface CreateDBClusterEndpointMessage {
|
|
4230
4384
|
/**
|
|
@@ -4345,18 +4499,24 @@ export declare namespace DBClusterEndpoint {
|
|
|
4345
4499
|
/**
|
|
4346
4500
|
* <p>The specified custom endpoint can't be created because it already exists.</p>
|
|
4347
4501
|
*/
|
|
4348
|
-
export
|
|
4349
|
-
name: "DBClusterEndpointAlreadyExistsFault";
|
|
4350
|
-
$fault: "client";
|
|
4351
|
-
|
|
4502
|
+
export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
|
|
4503
|
+
readonly name: "DBClusterEndpointAlreadyExistsFault";
|
|
4504
|
+
readonly $fault: "client";
|
|
4505
|
+
/**
|
|
4506
|
+
* @internal
|
|
4507
|
+
*/
|
|
4508
|
+
constructor(opts: __ExceptionOptionType<DBClusterEndpointAlreadyExistsFault, __BaseException>);
|
|
4352
4509
|
}
|
|
4353
4510
|
/**
|
|
4354
4511
|
* <p>The cluster already has the maximum number of custom endpoints.</p>
|
|
4355
4512
|
*/
|
|
4356
|
-
export
|
|
4357
|
-
name: "DBClusterEndpointQuotaExceededFault";
|
|
4358
|
-
$fault: "client";
|
|
4359
|
-
|
|
4513
|
+
export declare class DBClusterEndpointQuotaExceededFault extends __BaseException {
|
|
4514
|
+
readonly name: "DBClusterEndpointQuotaExceededFault";
|
|
4515
|
+
readonly $fault: "client";
|
|
4516
|
+
/**
|
|
4517
|
+
* @internal
|
|
4518
|
+
*/
|
|
4519
|
+
constructor(opts: __ExceptionOptionType<DBClusterEndpointQuotaExceededFault, __BaseException>);
|
|
4360
4520
|
}
|
|
4361
4521
|
/**
|
|
4362
4522
|
* <p></p>
|
|
@@ -4534,15 +4694,21 @@ export declare namespace CreateDBClusterSnapshotResult {
|
|
|
4534
4694
|
* <p>Or, RDS might not be authorized to perform necessary actions using IAM on your
|
|
4535
4695
|
* behalf.</p>
|
|
4536
4696
|
*/
|
|
4537
|
-
export
|
|
4538
|
-
name: "AuthorizationNotFoundFault";
|
|
4539
|
-
$fault: "client";
|
|
4540
|
-
|
|
4697
|
+
export declare class AuthorizationNotFoundFault extends __BaseException {
|
|
4698
|
+
readonly name: "AuthorizationNotFoundFault";
|
|
4699
|
+
readonly $fault: "client";
|
|
4700
|
+
/**
|
|
4701
|
+
* @internal
|
|
4702
|
+
*/
|
|
4703
|
+
constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
|
|
4541
4704
|
}
|
|
4542
|
-
export
|
|
4543
|
-
name: "BackupPolicyNotFoundFault";
|
|
4544
|
-
$fault: "client";
|
|
4545
|
-
|
|
4705
|
+
export declare class BackupPolicyNotFoundFault extends __BaseException {
|
|
4706
|
+
readonly name: "BackupPolicyNotFoundFault";
|
|
4707
|
+
readonly $fault: "client";
|
|
4708
|
+
/**
|
|
4709
|
+
* @internal
|
|
4710
|
+
*/
|
|
4711
|
+
constructor(opts: __ExceptionOptionType<BackupPolicyNotFoundFault, __BaseException>);
|
|
4546
4712
|
}
|
|
4547
4713
|
/**
|
|
4548
4714
|
* <p></p>
|
|
@@ -6518,45 +6684,60 @@ export declare namespace CreateDBInstanceResult {
|
|
|
6518
6684
|
/**
|
|
6519
6685
|
* <p>The user already has a DB instance with the given identifier.</p>
|
|
6520
6686
|
*/
|
|
6521
|
-
export
|
|
6522
|
-
name: "DBInstanceAlreadyExistsFault";
|
|
6523
|
-
$fault: "client";
|
|
6524
|
-
|
|
6687
|
+
export declare class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
6688
|
+
readonly name: "DBInstanceAlreadyExistsFault";
|
|
6689
|
+
readonly $fault: "client";
|
|
6690
|
+
/**
|
|
6691
|
+
* @internal
|
|
6692
|
+
*/
|
|
6693
|
+
constructor(opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>);
|
|
6525
6694
|
}
|
|
6526
6695
|
/**
|
|
6527
6696
|
* <p>The request would result in the user exceeding the allowed number of DB
|
|
6528
6697
|
* instances.</p>
|
|
6529
6698
|
*/
|
|
6530
|
-
export
|
|
6531
|
-
name: "InstanceQuotaExceededFault";
|
|
6532
|
-
$fault: "client";
|
|
6533
|
-
|
|
6699
|
+
export declare class InstanceQuotaExceededFault extends __BaseException {
|
|
6700
|
+
readonly name: "InstanceQuotaExceededFault";
|
|
6701
|
+
readonly $fault: "client";
|
|
6702
|
+
/**
|
|
6703
|
+
* @internal
|
|
6704
|
+
*/
|
|
6705
|
+
constructor(opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>);
|
|
6534
6706
|
}
|
|
6535
6707
|
/**
|
|
6536
6708
|
* <p>The specified DB instance class isn't available in the specified Availability
|
|
6537
6709
|
* Zone.</p>
|
|
6538
6710
|
*/
|
|
6539
|
-
export
|
|
6540
|
-
name: "InsufficientDBInstanceCapacityFault";
|
|
6541
|
-
$fault: "client";
|
|
6542
|
-
|
|
6711
|
+
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
6712
|
+
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
6713
|
+
readonly $fault: "client";
|
|
6714
|
+
/**
|
|
6715
|
+
* @internal
|
|
6716
|
+
*/
|
|
6717
|
+
constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
|
|
6543
6718
|
}
|
|
6544
6719
|
/**
|
|
6545
6720
|
* <p>Provisioned IOPS not available in the specified Availability Zone.</p>
|
|
6546
6721
|
*/
|
|
6547
|
-
export
|
|
6548
|
-
name: "ProvisionedIopsNotAvailableInAZFault";
|
|
6549
|
-
$fault: "client";
|
|
6550
|
-
|
|
6722
|
+
export declare class ProvisionedIopsNotAvailableInAZFault extends __BaseException {
|
|
6723
|
+
readonly name: "ProvisionedIopsNotAvailableInAZFault";
|
|
6724
|
+
readonly $fault: "client";
|
|
6725
|
+
/**
|
|
6726
|
+
* @internal
|
|
6727
|
+
*/
|
|
6728
|
+
constructor(opts: __ExceptionOptionType<ProvisionedIopsNotAvailableInAZFault, __BaseException>);
|
|
6551
6729
|
}
|
|
6552
6730
|
/**
|
|
6553
6731
|
* <p>Storage of the <code>StorageType</code> specified can't be associated
|
|
6554
6732
|
* with the DB instance. </p>
|
|
6555
6733
|
*/
|
|
6556
|
-
export
|
|
6557
|
-
name: "StorageTypeNotSupportedFault";
|
|
6558
|
-
$fault: "client";
|
|
6559
|
-
|
|
6734
|
+
export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
6735
|
+
readonly name: "StorageTypeNotSupportedFault";
|
|
6736
|
+
readonly $fault: "client";
|
|
6737
|
+
/**
|
|
6738
|
+
* @internal
|
|
6739
|
+
*/
|
|
6740
|
+
constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
|
|
6560
6741
|
}
|
|
6561
6742
|
export interface CreateDBInstanceReadReplicaMessage {
|
|
6562
6743
|
/**
|
|
@@ -7015,19 +7196,25 @@ export declare namespace CreateDBInstanceReadReplicaResult {
|
|
|
7015
7196
|
* <p>The DBSubnetGroup shouldn't be specified while creating read replicas that lie
|
|
7016
7197
|
* in the same region as the source instance.</p>
|
|
7017
7198
|
*/
|
|
7018
|
-
export
|
|
7019
|
-
name: "DBSubnetGroupNotAllowedFault";
|
|
7020
|
-
$fault: "client";
|
|
7021
|
-
|
|
7199
|
+
export declare class DBSubnetGroupNotAllowedFault extends __BaseException {
|
|
7200
|
+
readonly name: "DBSubnetGroupNotAllowedFault";
|
|
7201
|
+
readonly $fault: "client";
|
|
7202
|
+
/**
|
|
7203
|
+
* @internal
|
|
7204
|
+
*/
|
|
7205
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupNotAllowedFault, __BaseException>);
|
|
7022
7206
|
}
|
|
7023
7207
|
/**
|
|
7024
7208
|
* <p>The DBSubnetGroup doesn't belong to the same VPC as that of an existing
|
|
7025
7209
|
* cross-region read replica of the same source instance.</p>
|
|
7026
7210
|
*/
|
|
7027
|
-
export
|
|
7028
|
-
name: "InvalidDBSubnetGroupFault";
|
|
7029
|
-
$fault: "client";
|
|
7030
|
-
|
|
7211
|
+
export declare class InvalidDBSubnetGroupFault extends __BaseException {
|
|
7212
|
+
readonly name: "InvalidDBSubnetGroupFault";
|
|
7213
|
+
readonly $fault: "client";
|
|
7214
|
+
/**
|
|
7215
|
+
* @internal
|
|
7216
|
+
*/
|
|
7217
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupFault, __BaseException>);
|
|
7031
7218
|
}
|
|
7032
7219
|
/**
|
|
7033
7220
|
* <p></p>
|
|
@@ -7412,18 +7599,24 @@ export declare namespace CreateDBProxyResponse {
|
|
|
7412
7599
|
/**
|
|
7413
7600
|
* <p>The specified proxy name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
7414
7601
|
*/
|
|
7415
|
-
export
|
|
7416
|
-
name: "DBProxyAlreadyExistsFault";
|
|
7417
|
-
$fault: "client";
|
|
7418
|
-
|
|
7602
|
+
export declare class DBProxyAlreadyExistsFault extends __BaseException {
|
|
7603
|
+
readonly name: "DBProxyAlreadyExistsFault";
|
|
7604
|
+
readonly $fault: "client";
|
|
7605
|
+
/**
|
|
7606
|
+
* @internal
|
|
7607
|
+
*/
|
|
7608
|
+
constructor(opts: __ExceptionOptionType<DBProxyAlreadyExistsFault, __BaseException>);
|
|
7419
7609
|
}
|
|
7420
7610
|
/**
|
|
7421
7611
|
* <p>Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.</p>
|
|
7422
7612
|
*/
|
|
7423
|
-
export
|
|
7424
|
-
name: "DBProxyQuotaExceededFault";
|
|
7425
|
-
$fault: "client";
|
|
7426
|
-
|
|
7613
|
+
export declare class DBProxyQuotaExceededFault extends __BaseException {
|
|
7614
|
+
readonly name: "DBProxyQuotaExceededFault";
|
|
7615
|
+
readonly $fault: "client";
|
|
7616
|
+
/**
|
|
7617
|
+
* @internal
|
|
7618
|
+
*/
|
|
7619
|
+
constructor(opts: __ExceptionOptionType<DBProxyQuotaExceededFault, __BaseException>);
|
|
7427
7620
|
}
|
|
7428
7621
|
export declare enum DBProxyEndpointTargetRole {
|
|
7429
7622
|
READ_ONLY = "READ_ONLY",
|
|
@@ -7558,26 +7751,35 @@ export declare namespace CreateDBProxyEndpointResponse {
|
|
|
7558
7751
|
/**
|
|
7559
7752
|
* <p>The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
7560
7753
|
*/
|
|
7561
|
-
export
|
|
7562
|
-
name: "DBProxyEndpointAlreadyExistsFault";
|
|
7563
|
-
$fault: "client";
|
|
7564
|
-
|
|
7754
|
+
export declare class DBProxyEndpointAlreadyExistsFault extends __BaseException {
|
|
7755
|
+
readonly name: "DBProxyEndpointAlreadyExistsFault";
|
|
7756
|
+
readonly $fault: "client";
|
|
7757
|
+
/**
|
|
7758
|
+
* @internal
|
|
7759
|
+
*/
|
|
7760
|
+
constructor(opts: __ExceptionOptionType<DBProxyEndpointAlreadyExistsFault, __BaseException>);
|
|
7565
7761
|
}
|
|
7566
7762
|
/**
|
|
7567
7763
|
* <p>The DB proxy already has the maximum number of endpoints.</p>
|
|
7568
7764
|
*/
|
|
7569
|
-
export
|
|
7570
|
-
name: "DBProxyEndpointQuotaExceededFault";
|
|
7571
|
-
$fault: "client";
|
|
7572
|
-
|
|
7765
|
+
export declare class DBProxyEndpointQuotaExceededFault extends __BaseException {
|
|
7766
|
+
readonly name: "DBProxyEndpointQuotaExceededFault";
|
|
7767
|
+
readonly $fault: "client";
|
|
7768
|
+
/**
|
|
7769
|
+
* @internal
|
|
7770
|
+
*/
|
|
7771
|
+
constructor(opts: __ExceptionOptionType<DBProxyEndpointQuotaExceededFault, __BaseException>);
|
|
7573
7772
|
}
|
|
7574
7773
|
/**
|
|
7575
7774
|
* <p>The requested operation can't be performed while the proxy is in this state.</p>
|
|
7576
7775
|
*/
|
|
7577
|
-
export
|
|
7578
|
-
name: "InvalidDBProxyStateFault";
|
|
7579
|
-
$fault: "client";
|
|
7580
|
-
|
|
7776
|
+
export declare class InvalidDBProxyStateFault extends __BaseException {
|
|
7777
|
+
readonly name: "InvalidDBProxyStateFault";
|
|
7778
|
+
readonly $fault: "client";
|
|
7779
|
+
/**
|
|
7780
|
+
* @internal
|
|
7781
|
+
*/
|
|
7782
|
+
constructor(opts: __ExceptionOptionType<InvalidDBProxyStateFault, __BaseException>);
|
|
7581
7783
|
}
|
|
7582
7784
|
/**
|
|
7583
7785
|
* <p></p>
|
|
@@ -7641,27 +7843,36 @@ export declare namespace CreateDBSecurityGroupResult {
|
|
|
7641
7843
|
* <code>DBSecurityGroupName</code> already exists.
|
|
7642
7844
|
* </p>
|
|
7643
7845
|
*/
|
|
7644
|
-
export
|
|
7645
|
-
name: "DBSecurityGroupAlreadyExistsFault";
|
|
7646
|
-
$fault: "client";
|
|
7647
|
-
|
|
7846
|
+
export declare class DBSecurityGroupAlreadyExistsFault extends __BaseException {
|
|
7847
|
+
readonly name: "DBSecurityGroupAlreadyExistsFault";
|
|
7848
|
+
readonly $fault: "client";
|
|
7849
|
+
/**
|
|
7850
|
+
* @internal
|
|
7851
|
+
*/
|
|
7852
|
+
constructor(opts: __ExceptionOptionType<DBSecurityGroupAlreadyExistsFault, __BaseException>);
|
|
7648
7853
|
}
|
|
7649
7854
|
/**
|
|
7650
7855
|
* <p>A DB security group isn't allowed for this action.</p>
|
|
7651
7856
|
*/
|
|
7652
|
-
export
|
|
7653
|
-
name: "DBSecurityGroupNotSupportedFault";
|
|
7654
|
-
$fault: "client";
|
|
7655
|
-
|
|
7857
|
+
export declare class DBSecurityGroupNotSupportedFault extends __BaseException {
|
|
7858
|
+
readonly name: "DBSecurityGroupNotSupportedFault";
|
|
7859
|
+
readonly $fault: "client";
|
|
7860
|
+
/**
|
|
7861
|
+
* @internal
|
|
7862
|
+
*/
|
|
7863
|
+
constructor(opts: __ExceptionOptionType<DBSecurityGroupNotSupportedFault, __BaseException>);
|
|
7656
7864
|
}
|
|
7657
7865
|
/**
|
|
7658
7866
|
* <p>The request would result in the user exceeding the allowed number of DB security
|
|
7659
7867
|
* groups.</p>
|
|
7660
7868
|
*/
|
|
7661
|
-
export
|
|
7662
|
-
name: "DBSecurityGroupQuotaExceededFault";
|
|
7663
|
-
$fault: "client";
|
|
7664
|
-
|
|
7869
|
+
export declare class DBSecurityGroupQuotaExceededFault extends __BaseException {
|
|
7870
|
+
readonly name: "DBSecurityGroupQuotaExceededFault";
|
|
7871
|
+
readonly $fault: "client";
|
|
7872
|
+
/**
|
|
7873
|
+
* @internal
|
|
7874
|
+
*/
|
|
7875
|
+
constructor(opts: __ExceptionOptionType<DBSecurityGroupQuotaExceededFault, __BaseException>);
|
|
7665
7876
|
}
|
|
7666
7877
|
/**
|
|
7667
7878
|
* <p></p>
|
|
@@ -7789,28 +8000,37 @@ export declare namespace CreateDBSubnetGroupResult {
|
|
|
7789
8000
|
* <code>DBSubnetGroupName</code> is already used by an existing DB subnet group.
|
|
7790
8001
|
* </p>
|
|
7791
8002
|
*/
|
|
7792
|
-
export
|
|
7793
|
-
name: "DBSubnetGroupAlreadyExistsFault";
|
|
7794
|
-
$fault: "client";
|
|
7795
|
-
|
|
8003
|
+
export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
8004
|
+
readonly name: "DBSubnetGroupAlreadyExistsFault";
|
|
8005
|
+
readonly $fault: "client";
|
|
8006
|
+
/**
|
|
8007
|
+
* @internal
|
|
8008
|
+
*/
|
|
8009
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupAlreadyExistsFault, __BaseException>);
|
|
7796
8010
|
}
|
|
7797
8011
|
/**
|
|
7798
8012
|
* <p>The request would result in the user exceeding the allowed number of DB subnet
|
|
7799
8013
|
* groups.</p>
|
|
7800
8014
|
*/
|
|
7801
|
-
export
|
|
7802
|
-
name: "DBSubnetGroupQuotaExceededFault";
|
|
7803
|
-
$fault: "client";
|
|
7804
|
-
|
|
8015
|
+
export declare class DBSubnetGroupQuotaExceededFault extends __BaseException {
|
|
8016
|
+
readonly name: "DBSubnetGroupQuotaExceededFault";
|
|
8017
|
+
readonly $fault: "client";
|
|
8018
|
+
/**
|
|
8019
|
+
* @internal
|
|
8020
|
+
*/
|
|
8021
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupQuotaExceededFault, __BaseException>);
|
|
7805
8022
|
}
|
|
7806
8023
|
/**
|
|
7807
8024
|
* <p>The request would result in the user exceeding the allowed number of subnets in a
|
|
7808
8025
|
* DB subnet groups.</p>
|
|
7809
8026
|
*/
|
|
7810
|
-
export
|
|
7811
|
-
name: "DBSubnetQuotaExceededFault";
|
|
7812
|
-
$fault: "client";
|
|
7813
|
-
|
|
8027
|
+
export declare class DBSubnetQuotaExceededFault extends __BaseException {
|
|
8028
|
+
readonly name: "DBSubnetQuotaExceededFault";
|
|
8029
|
+
readonly $fault: "client";
|
|
8030
|
+
/**
|
|
8031
|
+
* @internal
|
|
8032
|
+
*/
|
|
8033
|
+
constructor(opts: __ExceptionOptionType<DBSubnetQuotaExceededFault, __BaseException>);
|
|
7814
8034
|
}
|
|
7815
8035
|
/**
|
|
7816
8036
|
* <p></p>
|
|
@@ -7912,50 +8132,68 @@ export declare namespace CreateEventSubscriptionResult {
|
|
|
7912
8132
|
/**
|
|
7913
8133
|
* <p>You have reached the maximum number of event subscriptions.</p>
|
|
7914
8134
|
*/
|
|
7915
|
-
export
|
|
7916
|
-
name: "EventSubscriptionQuotaExceededFault";
|
|
7917
|
-
$fault: "client";
|
|
7918
|
-
|
|
8135
|
+
export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
|
|
8136
|
+
readonly name: "EventSubscriptionQuotaExceededFault";
|
|
8137
|
+
readonly $fault: "client";
|
|
8138
|
+
/**
|
|
8139
|
+
* @internal
|
|
8140
|
+
*/
|
|
8141
|
+
constructor(opts: __ExceptionOptionType<EventSubscriptionQuotaExceededFault, __BaseException>);
|
|
7919
8142
|
}
|
|
7920
8143
|
/**
|
|
7921
8144
|
* <p>SNS has responded that there is a problem with the SNS topic specified.</p>
|
|
7922
8145
|
*/
|
|
7923
|
-
export
|
|
7924
|
-
name: "SNSInvalidTopicFault";
|
|
7925
|
-
$fault: "client";
|
|
7926
|
-
|
|
8146
|
+
export declare class SNSInvalidTopicFault extends __BaseException {
|
|
8147
|
+
readonly name: "SNSInvalidTopicFault";
|
|
8148
|
+
readonly $fault: "client";
|
|
8149
|
+
/**
|
|
8150
|
+
* @internal
|
|
8151
|
+
*/
|
|
8152
|
+
constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
|
|
7927
8153
|
}
|
|
7928
8154
|
/**
|
|
7929
8155
|
* <p>You do not have permission to publish to the SNS topic ARN.</p>
|
|
7930
8156
|
*/
|
|
7931
|
-
export
|
|
7932
|
-
name: "SNSNoAuthorizationFault";
|
|
7933
|
-
$fault: "client";
|
|
7934
|
-
|
|
8157
|
+
export declare class SNSNoAuthorizationFault extends __BaseException {
|
|
8158
|
+
readonly name: "SNSNoAuthorizationFault";
|
|
8159
|
+
readonly $fault: "client";
|
|
8160
|
+
/**
|
|
8161
|
+
* @internal
|
|
8162
|
+
*/
|
|
8163
|
+
constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
|
|
7935
8164
|
}
|
|
7936
8165
|
/**
|
|
7937
8166
|
* <p>The SNS topic ARN does not exist.</p>
|
|
7938
8167
|
*/
|
|
7939
|
-
export
|
|
7940
|
-
name: "SNSTopicArnNotFoundFault";
|
|
7941
|
-
$fault: "client";
|
|
7942
|
-
|
|
8168
|
+
export declare class SNSTopicArnNotFoundFault extends __BaseException {
|
|
8169
|
+
readonly name: "SNSTopicArnNotFoundFault";
|
|
8170
|
+
readonly $fault: "client";
|
|
8171
|
+
/**
|
|
8172
|
+
* @internal
|
|
8173
|
+
*/
|
|
8174
|
+
constructor(opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>);
|
|
7943
8175
|
}
|
|
7944
8176
|
/**
|
|
7945
8177
|
* <p>The supplied subscription name already exists.</p>
|
|
7946
8178
|
*/
|
|
7947
|
-
export
|
|
7948
|
-
name: "SubscriptionAlreadyExistFault";
|
|
7949
|
-
$fault: "client";
|
|
7950
|
-
|
|
8179
|
+
export declare class SubscriptionAlreadyExistFault extends __BaseException {
|
|
8180
|
+
readonly name: "SubscriptionAlreadyExistFault";
|
|
8181
|
+
readonly $fault: "client";
|
|
8182
|
+
/**
|
|
8183
|
+
* @internal
|
|
8184
|
+
*/
|
|
8185
|
+
constructor(opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>);
|
|
7951
8186
|
}
|
|
7952
8187
|
/**
|
|
7953
8188
|
* <p>The supplied category does not exist.</p>
|
|
7954
8189
|
*/
|
|
7955
|
-
export
|
|
7956
|
-
name: "SubscriptionCategoryNotFoundFault";
|
|
7957
|
-
$fault: "client";
|
|
7958
|
-
|
|
8190
|
+
export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
|
|
8191
|
+
readonly name: "SubscriptionCategoryNotFoundFault";
|
|
8192
|
+
readonly $fault: "client";
|
|
8193
|
+
/**
|
|
8194
|
+
* @internal
|
|
8195
|
+
*/
|
|
8196
|
+
constructor(opts: __ExceptionOptionType<SubscriptionCategoryNotFoundFault, __BaseException>);
|
|
7959
8197
|
}
|
|
7960
8198
|
export interface CreateGlobalClusterMessage {
|
|
7961
8199
|
/**
|
|
@@ -8182,18 +8420,24 @@ export declare namespace CreateGlobalClusterResult {
|
|
|
8182
8420
|
/**
|
|
8183
8421
|
* <p>The <code>GlobalClusterIdentifier</code> already exists. Choose a new global database identifier (unique name) to create a new global database cluster.</p>
|
|
8184
8422
|
*/
|
|
8185
|
-
export
|
|
8186
|
-
name: "GlobalClusterAlreadyExistsFault";
|
|
8187
|
-
$fault: "client";
|
|
8188
|
-
|
|
8423
|
+
export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
|
|
8424
|
+
readonly name: "GlobalClusterAlreadyExistsFault";
|
|
8425
|
+
readonly $fault: "client";
|
|
8426
|
+
/**
|
|
8427
|
+
* @internal
|
|
8428
|
+
*/
|
|
8429
|
+
constructor(opts: __ExceptionOptionType<GlobalClusterAlreadyExistsFault, __BaseException>);
|
|
8189
8430
|
}
|
|
8190
8431
|
/**
|
|
8191
8432
|
* <p>The number of global database clusters for this account is already at the maximum allowed.</p>
|
|
8192
8433
|
*/
|
|
8193
|
-
export
|
|
8194
|
-
name: "GlobalClusterQuotaExceededFault";
|
|
8195
|
-
$fault: "client";
|
|
8196
|
-
|
|
8434
|
+
export declare class GlobalClusterQuotaExceededFault extends __BaseException {
|
|
8435
|
+
readonly name: "GlobalClusterQuotaExceededFault";
|
|
8436
|
+
readonly $fault: "client";
|
|
8437
|
+
/**
|
|
8438
|
+
* @internal
|
|
8439
|
+
*/
|
|
8440
|
+
constructor(opts: __ExceptionOptionType<GlobalClusterQuotaExceededFault, __BaseException>);
|
|
8197
8441
|
}
|
|
8198
8442
|
/**
|
|
8199
8443
|
* <p></p>
|
|
@@ -8342,10 +8586,13 @@ export declare namespace DeleteCustomAvailabilityZoneResult {
|
|
|
8342
8586
|
/**
|
|
8343
8587
|
* <p>The specified CEV was not found.</p>
|
|
8344
8588
|
*/
|
|
8345
|
-
export
|
|
8346
|
-
name: "CustomDBEngineVersionNotFoundFault";
|
|
8347
|
-
$fault: "client";
|
|
8348
|
-
|
|
8589
|
+
export declare class CustomDBEngineVersionNotFoundFault extends __BaseException {
|
|
8590
|
+
readonly name: "CustomDBEngineVersionNotFoundFault";
|
|
8591
|
+
readonly $fault: "client";
|
|
8592
|
+
/**
|
|
8593
|
+
* @internal
|
|
8594
|
+
*/
|
|
8595
|
+
constructor(opts: __ExceptionOptionType<CustomDBEngineVersionNotFoundFault, __BaseException>);
|
|
8349
8596
|
}
|
|
8350
8597
|
export interface DeleteCustomDBEngineVersionMessage {
|
|
8351
8598
|
/**
|
|
@@ -8368,10 +8615,13 @@ export declare namespace DeleteCustomDBEngineVersionMessage {
|
|
|
8368
8615
|
/**
|
|
8369
8616
|
* <p>You can't delete the CEV.</p>
|
|
8370
8617
|
*/
|
|
8371
|
-
export
|
|
8372
|
-
name: "InvalidCustomDBEngineVersionStateFault";
|
|
8373
|
-
$fault: "client";
|
|
8374
|
-
|
|
8618
|
+
export declare class InvalidCustomDBEngineVersionStateFault extends __BaseException {
|
|
8619
|
+
readonly name: "InvalidCustomDBEngineVersionStateFault";
|
|
8620
|
+
readonly $fault: "client";
|
|
8621
|
+
/**
|
|
8622
|
+
* @internal
|
|
8623
|
+
*/
|
|
8624
|
+
constructor(opts: __ExceptionOptionType<InvalidCustomDBEngineVersionStateFault, __BaseException>);
|
|
8375
8625
|
}
|
|
8376
8626
|
/**
|
|
8377
8627
|
* <p></p>
|
|
@@ -8464,10 +8714,13 @@ export declare namespace DeleteDBClusterResult {
|
|
|
8464
8714
|
/**
|
|
8465
8715
|
* <p>The specified custom endpoint doesn't exist.</p>
|
|
8466
8716
|
*/
|
|
8467
|
-
export
|
|
8468
|
-
name: "DBClusterEndpointNotFoundFault";
|
|
8469
|
-
$fault: "client";
|
|
8470
|
-
|
|
8717
|
+
export declare class DBClusterEndpointNotFoundFault extends __BaseException {
|
|
8718
|
+
readonly name: "DBClusterEndpointNotFoundFault";
|
|
8719
|
+
readonly $fault: "client";
|
|
8720
|
+
/**
|
|
8721
|
+
* @internal
|
|
8722
|
+
*/
|
|
8723
|
+
constructor(opts: __ExceptionOptionType<DBClusterEndpointNotFoundFault, __BaseException>);
|
|
8471
8724
|
}
|
|
8472
8725
|
export interface DeleteDBClusterEndpointMessage {
|
|
8473
8726
|
/**
|
|
@@ -8484,10 +8737,13 @@ export declare namespace DeleteDBClusterEndpointMessage {
|
|
|
8484
8737
|
/**
|
|
8485
8738
|
* <p>The requested operation can't be performed on the endpoint while the endpoint is in this state.</p>
|
|
8486
8739
|
*/
|
|
8487
|
-
export
|
|
8488
|
-
name: "InvalidDBClusterEndpointStateFault";
|
|
8489
|
-
$fault: "client";
|
|
8490
|
-
|
|
8740
|
+
export declare class InvalidDBClusterEndpointStateFault extends __BaseException {
|
|
8741
|
+
readonly name: "InvalidDBClusterEndpointStateFault";
|
|
8742
|
+
readonly $fault: "client";
|
|
8743
|
+
/**
|
|
8744
|
+
* @internal
|
|
8745
|
+
*/
|
|
8746
|
+
constructor(opts: __ExceptionOptionType<InvalidDBClusterEndpointStateFault, __BaseException>);
|
|
8491
8747
|
}
|
|
8492
8748
|
/**
|
|
8493
8749
|
* <p></p>
|
|
@@ -8521,10 +8777,13 @@ export declare namespace DeleteDBClusterParameterGroupMessage {
|
|
|
8521
8777
|
* to delete the parameter group, you can't delete it when the parameter group is in
|
|
8522
8778
|
* this state.</p>
|
|
8523
8779
|
*/
|
|
8524
|
-
export
|
|
8525
|
-
name: "InvalidDBParameterGroupStateFault";
|
|
8526
|
-
$fault: "client";
|
|
8527
|
-
|
|
8780
|
+
export declare class InvalidDBParameterGroupStateFault extends __BaseException {
|
|
8781
|
+
readonly name: "InvalidDBParameterGroupStateFault";
|
|
8782
|
+
readonly $fault: "client";
|
|
8783
|
+
/**
|
|
8784
|
+
* @internal
|
|
8785
|
+
*/
|
|
8786
|
+
constructor(opts: __ExceptionOptionType<InvalidDBParameterGroupStateFault, __BaseException>);
|
|
8528
8787
|
}
|
|
8529
8788
|
/**
|
|
8530
8789
|
* <p></p>
|
|
@@ -8563,10 +8822,13 @@ export declare namespace DeleteDBClusterSnapshotResult {
|
|
|
8563
8822
|
* from retaining any additional automated backups. The retained automated backups
|
|
8564
8823
|
* quota is the same as your DB Instance quota.</p>
|
|
8565
8824
|
*/
|
|
8566
|
-
export
|
|
8567
|
-
name: "DBInstanceAutomatedBackupQuotaExceededFault";
|
|
8568
|
-
$fault: "client";
|
|
8569
|
-
|
|
8825
|
+
export declare class DBInstanceAutomatedBackupQuotaExceededFault extends __BaseException {
|
|
8826
|
+
readonly name: "DBInstanceAutomatedBackupQuotaExceededFault";
|
|
8827
|
+
readonly $fault: "client";
|
|
8828
|
+
/**
|
|
8829
|
+
* @internal
|
|
8830
|
+
*/
|
|
8831
|
+
constructor(opts: __ExceptionOptionType<DBInstanceAutomatedBackupQuotaExceededFault, __BaseException>);
|
|
8570
8832
|
}
|
|
8571
8833
|
/**
|
|
8572
8834
|
* <p></p>
|
|
@@ -8657,10 +8919,13 @@ export declare namespace DeleteDBInstanceResult {
|
|
|
8657
8919
|
/**
|
|
8658
8920
|
* <p>No automated backup for this DB instance was found.</p>
|
|
8659
8921
|
*/
|
|
8660
|
-
export
|
|
8661
|
-
name: "DBInstanceAutomatedBackupNotFoundFault";
|
|
8662
|
-
$fault: "client";
|
|
8663
|
-
|
|
8922
|
+
export declare class DBInstanceAutomatedBackupNotFoundFault extends __BaseException {
|
|
8923
|
+
readonly name: "DBInstanceAutomatedBackupNotFoundFault";
|
|
8924
|
+
readonly $fault: "client";
|
|
8925
|
+
/**
|
|
8926
|
+
* @internal
|
|
8927
|
+
*/
|
|
8928
|
+
constructor(opts: __ExceptionOptionType<DBInstanceAutomatedBackupNotFoundFault, __BaseException>);
|
|
8664
8929
|
}
|
|
8665
8930
|
/**
|
|
8666
8931
|
* <p>Parameter input for the <code>DeleteDBInstanceAutomatedBackup</code> operation.</p>
|
|
@@ -8866,10 +9131,13 @@ export declare namespace DeleteDBInstanceAutomatedBackupResult {
|
|
|
8866
9131
|
* <p>The automated backup is in an invalid state.
|
|
8867
9132
|
* For example, this automated backup is associated with an active instance. </p>
|
|
8868
9133
|
*/
|
|
8869
|
-
export
|
|
8870
|
-
name: "InvalidDBInstanceAutomatedBackupStateFault";
|
|
8871
|
-
$fault: "client";
|
|
8872
|
-
|
|
9134
|
+
export declare class InvalidDBInstanceAutomatedBackupStateFault extends __BaseException {
|
|
9135
|
+
readonly name: "InvalidDBInstanceAutomatedBackupStateFault";
|
|
9136
|
+
readonly $fault: "client";
|
|
9137
|
+
/**
|
|
9138
|
+
* @internal
|
|
9139
|
+
*/
|
|
9140
|
+
constructor(opts: __ExceptionOptionType<InvalidDBInstanceAutomatedBackupStateFault, __BaseException>);
|
|
8873
9141
|
}
|
|
8874
9142
|
/**
|
|
8875
9143
|
* <p></p>
|
|
@@ -8925,10 +9193,13 @@ export declare namespace DeleteDBProxyResponse {
|
|
|
8925
9193
|
/**
|
|
8926
9194
|
* <p>The DB proxy endpoint doesn't exist.</p>
|
|
8927
9195
|
*/
|
|
8928
|
-
export
|
|
8929
|
-
name: "DBProxyEndpointNotFoundFault";
|
|
8930
|
-
$fault: "client";
|
|
8931
|
-
|
|
9196
|
+
export declare class DBProxyEndpointNotFoundFault extends __BaseException {
|
|
9197
|
+
readonly name: "DBProxyEndpointNotFoundFault";
|
|
9198
|
+
readonly $fault: "client";
|
|
9199
|
+
/**
|
|
9200
|
+
* @internal
|
|
9201
|
+
*/
|
|
9202
|
+
constructor(opts: __ExceptionOptionType<DBProxyEndpointNotFoundFault, __BaseException>);
|
|
8932
9203
|
}
|
|
8933
9204
|
export interface DeleteDBProxyEndpointRequest {
|
|
8934
9205
|
/**
|
|
@@ -8957,10 +9228,13 @@ export declare namespace DeleteDBProxyEndpointResponse {
|
|
|
8957
9228
|
/**
|
|
8958
9229
|
* <p>You can't perform this operation while the DB proxy endpoint is in a particular state.</p>
|
|
8959
9230
|
*/
|
|
8960
|
-
export
|
|
8961
|
-
name: "InvalidDBProxyEndpointStateFault";
|
|
8962
|
-
$fault: "client";
|
|
8963
|
-
|
|
9231
|
+
export declare class InvalidDBProxyEndpointStateFault extends __BaseException {
|
|
9232
|
+
readonly name: "InvalidDBProxyEndpointStateFault";
|
|
9233
|
+
readonly $fault: "client";
|
|
9234
|
+
/**
|
|
9235
|
+
* @internal
|
|
9236
|
+
*/
|
|
9237
|
+
constructor(opts: __ExceptionOptionType<InvalidDBProxyEndpointStateFault, __BaseException>);
|
|
8964
9238
|
}
|
|
8965
9239
|
/**
|
|
8966
9240
|
* <p></p>
|
|
@@ -9053,10 +9327,13 @@ export declare namespace DeleteDBSubnetGroupMessage {
|
|
|
9053
9327
|
* The DB subnet isn't in the <i>available</i> state.
|
|
9054
9328
|
* </p>
|
|
9055
9329
|
*/
|
|
9056
|
-
export
|
|
9057
|
-
name: "InvalidDBSubnetStateFault";
|
|
9058
|
-
$fault: "client";
|
|
9059
|
-
|
|
9330
|
+
export declare class InvalidDBSubnetStateFault extends __BaseException {
|
|
9331
|
+
readonly name: "InvalidDBSubnetStateFault";
|
|
9332
|
+
readonly $fault: "client";
|
|
9333
|
+
/**
|
|
9334
|
+
* @internal
|
|
9335
|
+
*/
|
|
9336
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSubnetStateFault, __BaseException>);
|
|
9060
9337
|
}
|
|
9061
9338
|
/**
|
|
9062
9339
|
* <p></p>
|
|
@@ -9088,10 +9365,13 @@ export declare namespace DeleteEventSubscriptionResult {
|
|
|
9088
9365
|
/**
|
|
9089
9366
|
* <p>This error can occur if someone else is modifying a subscription. You should retry the action.</p>
|
|
9090
9367
|
*/
|
|
9091
|
-
export
|
|
9092
|
-
name: "InvalidEventSubscriptionStateFault";
|
|
9093
|
-
$fault: "client";
|
|
9094
|
-
|
|
9368
|
+
export declare class InvalidEventSubscriptionStateFault extends __BaseException {
|
|
9369
|
+
readonly name: "InvalidEventSubscriptionStateFault";
|
|
9370
|
+
readonly $fault: "client";
|
|
9371
|
+
/**
|
|
9372
|
+
* @internal
|
|
9373
|
+
*/
|
|
9374
|
+
constructor(opts: __ExceptionOptionType<InvalidEventSubscriptionStateFault, __BaseException>);
|
|
9095
9375
|
}
|
|
9096
9376
|
export interface DeleteGlobalClusterMessage {
|
|
9097
9377
|
/**
|
|
@@ -9196,10 +9476,13 @@ export declare namespace InstallationMedia {
|
|
|
9196
9476
|
* <p>
|
|
9197
9477
|
* <code>InstallationMediaID</code> doesn't refer to an existing installation medium.</p>
|
|
9198
9478
|
*/
|
|
9199
|
-
export
|
|
9200
|
-
name: "InstallationMediaNotFoundFault";
|
|
9201
|
-
$fault: "client";
|
|
9202
|
-
|
|
9479
|
+
export declare class InstallationMediaNotFoundFault extends __BaseException {
|
|
9480
|
+
readonly name: "InstallationMediaNotFoundFault";
|
|
9481
|
+
readonly $fault: "client";
|
|
9482
|
+
/**
|
|
9483
|
+
* @internal
|
|
9484
|
+
*/
|
|
9485
|
+
constructor(opts: __ExceptionOptionType<InstallationMediaNotFoundFault, __BaseException>);
|
|
9203
9486
|
}
|
|
9204
9487
|
/**
|
|
9205
9488
|
* <p></p>
|
|
@@ -9224,18 +9507,24 @@ export declare namespace DeleteOptionGroupMessage {
|
|
|
9224
9507
|
* The option group isn't in the <i>available</i> state.
|
|
9225
9508
|
* </p>
|
|
9226
9509
|
*/
|
|
9227
|
-
export
|
|
9228
|
-
name: "InvalidOptionGroupStateFault";
|
|
9229
|
-
$fault: "client";
|
|
9230
|
-
|
|
9510
|
+
export declare class InvalidOptionGroupStateFault extends __BaseException {
|
|
9511
|
+
readonly name: "InvalidOptionGroupStateFault";
|
|
9512
|
+
readonly $fault: "client";
|
|
9513
|
+
/**
|
|
9514
|
+
* @internal
|
|
9515
|
+
*/
|
|
9516
|
+
constructor(opts: __ExceptionOptionType<InvalidOptionGroupStateFault, __BaseException>);
|
|
9231
9517
|
}
|
|
9232
9518
|
/**
|
|
9233
9519
|
* <p>The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
9234
9520
|
*/
|
|
9235
|
-
export
|
|
9236
|
-
name: "DBProxyTargetNotFoundFault";
|
|
9237
|
-
$fault: "client";
|
|
9238
|
-
|
|
9521
|
+
export declare class DBProxyTargetNotFoundFault extends __BaseException {
|
|
9522
|
+
readonly name: "DBProxyTargetNotFoundFault";
|
|
9523
|
+
readonly $fault: "client";
|
|
9524
|
+
/**
|
|
9525
|
+
* @internal
|
|
9526
|
+
*/
|
|
9527
|
+
constructor(opts: __ExceptionOptionType<DBProxyTargetNotFoundFault, __BaseException>);
|
|
9239
9528
|
}
|
|
9240
9529
|
export interface DeregisterDBProxyTargetsRequest {
|
|
9241
9530
|
/**
|
|
@@ -9355,10 +9644,13 @@ export declare namespace CertificateMessage {
|
|
|
9355
9644
|
* existing certificate.
|
|
9356
9645
|
* </p>
|
|
9357
9646
|
*/
|
|
9358
|
-
export
|
|
9359
|
-
name: "CertificateNotFoundFault";
|
|
9360
|
-
$fault: "client";
|
|
9361
|
-
|
|
9647
|
+
export declare class CertificateNotFoundFault extends __BaseException {
|
|
9648
|
+
readonly name: "CertificateNotFoundFault";
|
|
9649
|
+
readonly $fault: "client";
|
|
9650
|
+
/**
|
|
9651
|
+
* @internal
|
|
9652
|
+
*/
|
|
9653
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>);
|
|
9362
9654
|
}
|
|
9363
9655
|
/**
|
|
9364
9656
|
* <p>A filter name and value pair that is used to return a more specific list of results
|
|
@@ -9533,10 +9825,13 @@ export declare namespace DBClusterBacktrackMessage {
|
|
|
9533
9825
|
* <p>
|
|
9534
9826
|
* <code>BacktrackIdentifier</code> doesn't refer to an existing backtrack. </p>
|
|
9535
9827
|
*/
|
|
9536
|
-
export
|
|
9537
|
-
name: "DBClusterBacktrackNotFoundFault";
|
|
9538
|
-
$fault: "client";
|
|
9539
|
-
|
|
9828
|
+
export declare class DBClusterBacktrackNotFoundFault extends __BaseException {
|
|
9829
|
+
readonly name: "DBClusterBacktrackNotFoundFault";
|
|
9830
|
+
readonly $fault: "client";
|
|
9831
|
+
/**
|
|
9832
|
+
* @internal
|
|
9833
|
+
*/
|
|
9834
|
+
constructor(opts: __ExceptionOptionType<DBClusterBacktrackNotFoundFault, __BaseException>);
|
|
9540
9835
|
}
|
|
9541
9836
|
/**
|
|
9542
9837
|
* <p></p>
|