@effect-aws/client-rds 1.9.5 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/RDSService.d.ts +164 -163
- package/dist/cjs/RDSService.d.ts.map +1 -1
- package/dist/cjs/RDSService.js +1 -1
- package/dist/cjs/RDSService.js.map +1 -1
- package/dist/dts/RDSService.d.ts +164 -163
- package/dist/dts/RDSService.d.ts.map +1 -1
- package/dist/esm/RDSService.js +1 -1
- package/dist/esm/RDSService.js.map +1 -1
- package/package.json +2 -2
- package/src/RDSService.ts +274 -104
package/src/RDSService.ts
CHANGED
|
@@ -493,6 +493,7 @@ import {
|
|
|
493
493
|
} from "@aws-sdk/client-rds";
|
|
494
494
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
495
495
|
import { Service } from "@effect-aws/commons";
|
|
496
|
+
import type { Cause } from "effect";
|
|
496
497
|
import { Effect, Layer } from "effect";
|
|
497
498
|
import type {
|
|
498
499
|
AuthorizationAlreadyExistsFaultError,
|
|
@@ -821,6 +822,7 @@ interface RDSService$ {
|
|
|
821
822
|
options?: HttpHandlerOptions,
|
|
822
823
|
): Effect.Effect<
|
|
823
824
|
AddRoleToDBClusterCommandOutput,
|
|
825
|
+
| Cause.TimeoutException
|
|
824
826
|
| SdkError
|
|
825
827
|
| DBClusterNotFoundFaultError
|
|
826
828
|
| DBClusterRoleAlreadyExistsFaultError
|
|
@@ -836,6 +838,7 @@ interface RDSService$ {
|
|
|
836
838
|
options?: HttpHandlerOptions,
|
|
837
839
|
): Effect.Effect<
|
|
838
840
|
AddRoleToDBInstanceCommandOutput,
|
|
841
|
+
| Cause.TimeoutException
|
|
839
842
|
| SdkError
|
|
840
843
|
| DBInstanceNotFoundFaultError
|
|
841
844
|
| DBInstanceRoleAlreadyExistsFaultError
|
|
@@ -851,7 +854,7 @@ interface RDSService$ {
|
|
|
851
854
|
options?: HttpHandlerOptions,
|
|
852
855
|
): Effect.Effect<
|
|
853
856
|
AddSourceIdentifierToSubscriptionCommandOutput,
|
|
854
|
-
SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
857
|
+
Cause.TimeoutException | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
855
858
|
>;
|
|
856
859
|
|
|
857
860
|
/**
|
|
@@ -862,6 +865,7 @@ interface RDSService$ {
|
|
|
862
865
|
options?: HttpHandlerOptions,
|
|
863
866
|
): Effect.Effect<
|
|
864
867
|
AddTagsToResourceCommandOutput,
|
|
868
|
+
| Cause.TimeoutException
|
|
865
869
|
| SdkError
|
|
866
870
|
| BlueGreenDeploymentNotFoundFaultError
|
|
867
871
|
| DBClusterNotFoundFaultError
|
|
@@ -882,7 +886,11 @@ interface RDSService$ {
|
|
|
882
886
|
options?: HttpHandlerOptions,
|
|
883
887
|
): Effect.Effect<
|
|
884
888
|
ApplyPendingMaintenanceActionCommandOutput,
|
|
885
|
-
|
|
889
|
+
| Cause.TimeoutException
|
|
890
|
+
| SdkError
|
|
891
|
+
| InvalidDBClusterStateFaultError
|
|
892
|
+
| InvalidDBInstanceStateFaultError
|
|
893
|
+
| ResourceNotFoundFaultError
|
|
886
894
|
>;
|
|
887
895
|
|
|
888
896
|
/**
|
|
@@ -893,6 +901,7 @@ interface RDSService$ {
|
|
|
893
901
|
options?: HttpHandlerOptions,
|
|
894
902
|
): Effect.Effect<
|
|
895
903
|
AuthorizeDBSecurityGroupIngressCommandOutput,
|
|
904
|
+
| Cause.TimeoutException
|
|
896
905
|
| SdkError
|
|
897
906
|
| AuthorizationAlreadyExistsFaultError
|
|
898
907
|
| AuthorizationQuotaExceededFaultError
|
|
@@ -908,7 +917,7 @@ interface RDSService$ {
|
|
|
908
917
|
options?: HttpHandlerOptions,
|
|
909
918
|
): Effect.Effect<
|
|
910
919
|
BacktrackDBClusterCommandOutput,
|
|
911
|
-
SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
920
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
912
921
|
>;
|
|
913
922
|
|
|
914
923
|
/**
|
|
@@ -919,7 +928,7 @@ interface RDSService$ {
|
|
|
919
928
|
options?: HttpHandlerOptions,
|
|
920
929
|
): Effect.Effect<
|
|
921
930
|
CancelExportTaskCommandOutput,
|
|
922
|
-
SdkError | ExportTaskNotFoundFaultError | InvalidExportTaskStateFaultError
|
|
931
|
+
Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError | InvalidExportTaskStateFaultError
|
|
923
932
|
>;
|
|
924
933
|
|
|
925
934
|
/**
|
|
@@ -930,6 +939,7 @@ interface RDSService$ {
|
|
|
930
939
|
options?: HttpHandlerOptions,
|
|
931
940
|
): Effect.Effect<
|
|
932
941
|
CopyDBClusterParameterGroupCommandOutput,
|
|
942
|
+
| Cause.TimeoutException
|
|
933
943
|
| SdkError
|
|
934
944
|
| DBParameterGroupAlreadyExistsFaultError
|
|
935
945
|
| DBParameterGroupNotFoundFaultError
|
|
@@ -944,6 +954,7 @@ interface RDSService$ {
|
|
|
944
954
|
options?: HttpHandlerOptions,
|
|
945
955
|
): Effect.Effect<
|
|
946
956
|
CopyDBClusterSnapshotCommandOutput,
|
|
957
|
+
| Cause.TimeoutException
|
|
947
958
|
| SdkError
|
|
948
959
|
| DBClusterSnapshotAlreadyExistsFaultError
|
|
949
960
|
| DBClusterSnapshotNotFoundFaultError
|
|
@@ -961,6 +972,7 @@ interface RDSService$ {
|
|
|
961
972
|
options?: HttpHandlerOptions,
|
|
962
973
|
): Effect.Effect<
|
|
963
974
|
CopyDBParameterGroupCommandOutput,
|
|
975
|
+
| Cause.TimeoutException
|
|
964
976
|
| SdkError
|
|
965
977
|
| DBParameterGroupAlreadyExistsFaultError
|
|
966
978
|
| DBParameterGroupNotFoundFaultError
|
|
@@ -975,6 +987,7 @@ interface RDSService$ {
|
|
|
975
987
|
options?: HttpHandlerOptions,
|
|
976
988
|
): Effect.Effect<
|
|
977
989
|
CopyDBSnapshotCommandOutput,
|
|
990
|
+
| Cause.TimeoutException
|
|
978
991
|
| SdkError
|
|
979
992
|
| CustomAvailabilityZoneNotFoundFaultError
|
|
980
993
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -992,7 +1005,11 @@ interface RDSService$ {
|
|
|
992
1005
|
options?: HttpHandlerOptions,
|
|
993
1006
|
): Effect.Effect<
|
|
994
1007
|
CopyOptionGroupCommandOutput,
|
|
995
|
-
|
|
1008
|
+
| Cause.TimeoutException
|
|
1009
|
+
| SdkError
|
|
1010
|
+
| OptionGroupAlreadyExistsFaultError
|
|
1011
|
+
| OptionGroupNotFoundFaultError
|
|
1012
|
+
| OptionGroupQuotaExceededFaultError
|
|
996
1013
|
>;
|
|
997
1014
|
|
|
998
1015
|
/**
|
|
@@ -1003,6 +1020,7 @@ interface RDSService$ {
|
|
|
1003
1020
|
options?: HttpHandlerOptions,
|
|
1004
1021
|
): Effect.Effect<
|
|
1005
1022
|
CreateBlueGreenDeploymentCommandOutput,
|
|
1023
|
+
| Cause.TimeoutException
|
|
1006
1024
|
| SdkError
|
|
1007
1025
|
| BlueGreenDeploymentAlreadyExistsFaultError
|
|
1008
1026
|
| DBClusterNotFoundFaultError
|
|
@@ -1025,6 +1043,7 @@ interface RDSService$ {
|
|
|
1025
1043
|
options?: HttpHandlerOptions,
|
|
1026
1044
|
): Effect.Effect<
|
|
1027
1045
|
CreateCustomDBEngineVersionCommandOutput,
|
|
1046
|
+
| Cause.TimeoutException
|
|
1028
1047
|
| SdkError
|
|
1029
1048
|
| CreateCustomDBEngineVersionFaultError
|
|
1030
1049
|
| CustomDBEngineVersionAlreadyExistsFaultError
|
|
@@ -1041,6 +1060,7 @@ interface RDSService$ {
|
|
|
1041
1060
|
options?: HttpHandlerOptions,
|
|
1042
1061
|
): Effect.Effect<
|
|
1043
1062
|
CreateDBClusterCommandOutput,
|
|
1063
|
+
| Cause.TimeoutException
|
|
1044
1064
|
| SdkError
|
|
1045
1065
|
| DBClusterAlreadyExistsFaultError
|
|
1046
1066
|
| DBClusterNotFoundFaultError
|
|
@@ -1073,6 +1093,7 @@ interface RDSService$ {
|
|
|
1073
1093
|
options?: HttpHandlerOptions,
|
|
1074
1094
|
): Effect.Effect<
|
|
1075
1095
|
CreateDBClusterEndpointCommandOutput,
|
|
1096
|
+
| Cause.TimeoutException
|
|
1076
1097
|
| SdkError
|
|
1077
1098
|
| DBClusterEndpointAlreadyExistsFaultError
|
|
1078
1099
|
| DBClusterEndpointQuotaExceededFaultError
|
|
@@ -1090,7 +1111,10 @@ interface RDSService$ {
|
|
|
1090
1111
|
options?: HttpHandlerOptions,
|
|
1091
1112
|
): Effect.Effect<
|
|
1092
1113
|
CreateDBClusterParameterGroupCommandOutput,
|
|
1093
|
-
|
|
1114
|
+
| Cause.TimeoutException
|
|
1115
|
+
| SdkError
|
|
1116
|
+
| DBParameterGroupAlreadyExistsFaultError
|
|
1117
|
+
| DBParameterGroupQuotaExceededFaultError
|
|
1094
1118
|
>;
|
|
1095
1119
|
|
|
1096
1120
|
/**
|
|
@@ -1101,6 +1125,7 @@ interface RDSService$ {
|
|
|
1101
1125
|
options?: HttpHandlerOptions,
|
|
1102
1126
|
): Effect.Effect<
|
|
1103
1127
|
CreateDBClusterSnapshotCommandOutput,
|
|
1128
|
+
| Cause.TimeoutException
|
|
1104
1129
|
| SdkError
|
|
1105
1130
|
| DBClusterNotFoundFaultError
|
|
1106
1131
|
| DBClusterSnapshotAlreadyExistsFaultError
|
|
@@ -1117,6 +1142,7 @@ interface RDSService$ {
|
|
|
1117
1142
|
options?: HttpHandlerOptions,
|
|
1118
1143
|
): Effect.Effect<
|
|
1119
1144
|
CreateDBInstanceCommandOutput,
|
|
1145
|
+
| Cause.TimeoutException
|
|
1120
1146
|
| SdkError
|
|
1121
1147
|
| AuthorizationNotFoundFaultError
|
|
1122
1148
|
| BackupPolicyNotFoundFaultError
|
|
@@ -1150,6 +1176,7 @@ interface RDSService$ {
|
|
|
1150
1176
|
options?: HttpHandlerOptions,
|
|
1151
1177
|
): Effect.Effect<
|
|
1152
1178
|
CreateDBInstanceReadReplicaCommandOutput,
|
|
1179
|
+
| Cause.TimeoutException
|
|
1153
1180
|
| SdkError
|
|
1154
1181
|
| CertificateNotFoundFaultError
|
|
1155
1182
|
| DBClusterNotFoundFaultError
|
|
@@ -1185,7 +1212,10 @@ interface RDSService$ {
|
|
|
1185
1212
|
options?: HttpHandlerOptions,
|
|
1186
1213
|
): Effect.Effect<
|
|
1187
1214
|
CreateDBParameterGroupCommandOutput,
|
|
1188
|
-
|
|
1215
|
+
| Cause.TimeoutException
|
|
1216
|
+
| SdkError
|
|
1217
|
+
| DBParameterGroupAlreadyExistsFaultError
|
|
1218
|
+
| DBParameterGroupQuotaExceededFaultError
|
|
1189
1219
|
>;
|
|
1190
1220
|
|
|
1191
1221
|
/**
|
|
@@ -1196,7 +1226,11 @@ interface RDSService$ {
|
|
|
1196
1226
|
options?: HttpHandlerOptions,
|
|
1197
1227
|
): Effect.Effect<
|
|
1198
1228
|
CreateDBProxyCommandOutput,
|
|
1199
|
-
|
|
1229
|
+
| Cause.TimeoutException
|
|
1230
|
+
| SdkError
|
|
1231
|
+
| DBProxyAlreadyExistsFaultError
|
|
1232
|
+
| DBProxyQuotaExceededFaultError
|
|
1233
|
+
| InvalidSubnetError
|
|
1200
1234
|
>;
|
|
1201
1235
|
|
|
1202
1236
|
/**
|
|
@@ -1207,6 +1241,7 @@ interface RDSService$ {
|
|
|
1207
1241
|
options?: HttpHandlerOptions,
|
|
1208
1242
|
): Effect.Effect<
|
|
1209
1243
|
CreateDBProxyEndpointCommandOutput,
|
|
1244
|
+
| Cause.TimeoutException
|
|
1210
1245
|
| SdkError
|
|
1211
1246
|
| DBProxyEndpointAlreadyExistsFaultError
|
|
1212
1247
|
| DBProxyEndpointQuotaExceededFaultError
|
|
@@ -1223,6 +1258,7 @@ interface RDSService$ {
|
|
|
1223
1258
|
options?: HttpHandlerOptions,
|
|
1224
1259
|
): Effect.Effect<
|
|
1225
1260
|
CreateDBSecurityGroupCommandOutput,
|
|
1261
|
+
| Cause.TimeoutException
|
|
1226
1262
|
| SdkError
|
|
1227
1263
|
| DBSecurityGroupAlreadyExistsFaultError
|
|
1228
1264
|
| DBSecurityGroupNotSupportedFaultError
|
|
@@ -1237,6 +1273,7 @@ interface RDSService$ {
|
|
|
1237
1273
|
options?: HttpHandlerOptions,
|
|
1238
1274
|
): Effect.Effect<
|
|
1239
1275
|
CreateDBShardGroupCommandOutput,
|
|
1276
|
+
| Cause.TimeoutException
|
|
1240
1277
|
| SdkError
|
|
1241
1278
|
| DBClusterNotFoundFaultError
|
|
1242
1279
|
| DBShardGroupAlreadyExistsFaultError
|
|
@@ -1255,6 +1292,7 @@ interface RDSService$ {
|
|
|
1255
1292
|
options?: HttpHandlerOptions,
|
|
1256
1293
|
): Effect.Effect<
|
|
1257
1294
|
CreateDBSnapshotCommandOutput,
|
|
1295
|
+
| Cause.TimeoutException
|
|
1258
1296
|
| SdkError
|
|
1259
1297
|
| DBInstanceNotFoundFaultError
|
|
1260
1298
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -1270,6 +1308,7 @@ interface RDSService$ {
|
|
|
1270
1308
|
options?: HttpHandlerOptions,
|
|
1271
1309
|
): Effect.Effect<
|
|
1272
1310
|
CreateDBSubnetGroupCommandOutput,
|
|
1311
|
+
| Cause.TimeoutException
|
|
1273
1312
|
| SdkError
|
|
1274
1313
|
| DBSubnetGroupAlreadyExistsFaultError
|
|
1275
1314
|
| DBSubnetGroupDoesNotCoverEnoughAZsError
|
|
@@ -1286,6 +1325,7 @@ interface RDSService$ {
|
|
|
1286
1325
|
options?: HttpHandlerOptions,
|
|
1287
1326
|
): Effect.Effect<
|
|
1288
1327
|
CreateEventSubscriptionCommandOutput,
|
|
1328
|
+
| Cause.TimeoutException
|
|
1289
1329
|
| SdkError
|
|
1290
1330
|
| EventSubscriptionQuotaExceededFaultError
|
|
1291
1331
|
| SNSInvalidTopicFaultError
|
|
@@ -1304,6 +1344,7 @@ interface RDSService$ {
|
|
|
1304
1344
|
options?: HttpHandlerOptions,
|
|
1305
1345
|
): Effect.Effect<
|
|
1306
1346
|
CreateGlobalClusterCommandOutput,
|
|
1347
|
+
| Cause.TimeoutException
|
|
1307
1348
|
| SdkError
|
|
1308
1349
|
| DBClusterNotFoundFaultError
|
|
1309
1350
|
| GlobalClusterAlreadyExistsFaultError
|
|
@@ -1319,6 +1360,7 @@ interface RDSService$ {
|
|
|
1319
1360
|
options?: HttpHandlerOptions,
|
|
1320
1361
|
): Effect.Effect<
|
|
1321
1362
|
CreateIntegrationCommandOutput,
|
|
1363
|
+
| Cause.TimeoutException
|
|
1322
1364
|
| SdkError
|
|
1323
1365
|
| DBClusterNotFoundFaultError
|
|
1324
1366
|
| DBInstanceNotFoundFaultError
|
|
@@ -1336,7 +1378,7 @@ interface RDSService$ {
|
|
|
1336
1378
|
options?: HttpHandlerOptions,
|
|
1337
1379
|
): Effect.Effect<
|
|
1338
1380
|
CreateOptionGroupCommandOutput,
|
|
1339
|
-
SdkError | OptionGroupAlreadyExistsFaultError | OptionGroupQuotaExceededFaultError
|
|
1381
|
+
Cause.TimeoutException | SdkError | OptionGroupAlreadyExistsFaultError | OptionGroupQuotaExceededFaultError
|
|
1340
1382
|
>;
|
|
1341
1383
|
|
|
1342
1384
|
/**
|
|
@@ -1347,9 +1389,11 @@ interface RDSService$ {
|
|
|
1347
1389
|
options?: HttpHandlerOptions,
|
|
1348
1390
|
): Effect.Effect<
|
|
1349
1391
|
CreateTenantDatabaseCommandOutput,
|
|
1392
|
+
| Cause.TimeoutException
|
|
1350
1393
|
| SdkError
|
|
1351
1394
|
| DBInstanceNotFoundFaultError
|
|
1352
1395
|
| InvalidDBInstanceStateFaultError
|
|
1396
|
+
| KMSKeyNotAccessibleFaultError
|
|
1353
1397
|
| TenantDatabaseAlreadyExistsFaultError
|
|
1354
1398
|
| TenantDatabaseQuotaExceededFaultError
|
|
1355
1399
|
>;
|
|
@@ -1362,7 +1406,10 @@ interface RDSService$ {
|
|
|
1362
1406
|
options?: HttpHandlerOptions,
|
|
1363
1407
|
): Effect.Effect<
|
|
1364
1408
|
DeleteBlueGreenDeploymentCommandOutput,
|
|
1365
|
-
|
|
1409
|
+
| Cause.TimeoutException
|
|
1410
|
+
| SdkError
|
|
1411
|
+
| BlueGreenDeploymentNotFoundFaultError
|
|
1412
|
+
| InvalidBlueGreenDeploymentStateFaultError
|
|
1366
1413
|
>;
|
|
1367
1414
|
|
|
1368
1415
|
/**
|
|
@@ -1373,7 +1420,10 @@ interface RDSService$ {
|
|
|
1373
1420
|
options?: HttpHandlerOptions,
|
|
1374
1421
|
): Effect.Effect<
|
|
1375
1422
|
DeleteCustomDBEngineVersionCommandOutput,
|
|
1376
|
-
|
|
1423
|
+
| Cause.TimeoutException
|
|
1424
|
+
| SdkError
|
|
1425
|
+
| CustomDBEngineVersionNotFoundFaultError
|
|
1426
|
+
| InvalidCustomDBEngineVersionStateFaultError
|
|
1377
1427
|
>;
|
|
1378
1428
|
|
|
1379
1429
|
/**
|
|
@@ -1384,6 +1434,7 @@ interface RDSService$ {
|
|
|
1384
1434
|
options?: HttpHandlerOptions,
|
|
1385
1435
|
): Effect.Effect<
|
|
1386
1436
|
DeleteDBClusterCommandOutput,
|
|
1437
|
+
| Cause.TimeoutException
|
|
1387
1438
|
| SdkError
|
|
1388
1439
|
| DBClusterAutomatedBackupQuotaExceededFaultError
|
|
1389
1440
|
| DBClusterNotFoundFaultError
|
|
@@ -1401,7 +1452,10 @@ interface RDSService$ {
|
|
|
1401
1452
|
options?: HttpHandlerOptions,
|
|
1402
1453
|
): Effect.Effect<
|
|
1403
1454
|
DeleteDBClusterAutomatedBackupCommandOutput,
|
|
1404
|
-
|
|
1455
|
+
| Cause.TimeoutException
|
|
1456
|
+
| SdkError
|
|
1457
|
+
| DBClusterAutomatedBackupNotFoundFaultError
|
|
1458
|
+
| InvalidDBClusterAutomatedBackupStateFaultError
|
|
1405
1459
|
>;
|
|
1406
1460
|
|
|
1407
1461
|
/**
|
|
@@ -1412,6 +1466,7 @@ interface RDSService$ {
|
|
|
1412
1466
|
options?: HttpHandlerOptions,
|
|
1413
1467
|
): Effect.Effect<
|
|
1414
1468
|
DeleteDBClusterEndpointCommandOutput,
|
|
1469
|
+
| Cause.TimeoutException
|
|
1415
1470
|
| SdkError
|
|
1416
1471
|
| DBClusterEndpointNotFoundFaultError
|
|
1417
1472
|
| InvalidDBClusterEndpointStateFaultError
|
|
@@ -1426,7 +1481,7 @@ interface RDSService$ {
|
|
|
1426
1481
|
options?: HttpHandlerOptions,
|
|
1427
1482
|
): Effect.Effect<
|
|
1428
1483
|
DeleteDBClusterParameterGroupCommandOutput,
|
|
1429
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1484
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1430
1485
|
>;
|
|
1431
1486
|
|
|
1432
1487
|
/**
|
|
@@ -1437,7 +1492,7 @@ interface RDSService$ {
|
|
|
1437
1492
|
options?: HttpHandlerOptions,
|
|
1438
1493
|
): Effect.Effect<
|
|
1439
1494
|
DeleteDBClusterSnapshotCommandOutput,
|
|
1440
|
-
SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
|
|
1495
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
|
|
1441
1496
|
>;
|
|
1442
1497
|
|
|
1443
1498
|
/**
|
|
@@ -1448,6 +1503,7 @@ interface RDSService$ {
|
|
|
1448
1503
|
options?: HttpHandlerOptions,
|
|
1449
1504
|
): Effect.Effect<
|
|
1450
1505
|
DeleteDBInstanceCommandOutput,
|
|
1506
|
+
| Cause.TimeoutException
|
|
1451
1507
|
| SdkError
|
|
1452
1508
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
1453
1509
|
| DBInstanceNotFoundFaultError
|
|
@@ -1465,7 +1521,10 @@ interface RDSService$ {
|
|
|
1465
1521
|
options?: HttpHandlerOptions,
|
|
1466
1522
|
): Effect.Effect<
|
|
1467
1523
|
DeleteDBInstanceAutomatedBackupCommandOutput,
|
|
1468
|
-
|
|
1524
|
+
| Cause.TimeoutException
|
|
1525
|
+
| SdkError
|
|
1526
|
+
| DBInstanceAutomatedBackupNotFoundFaultError
|
|
1527
|
+
| InvalidDBInstanceAutomatedBackupStateFaultError
|
|
1469
1528
|
>;
|
|
1470
1529
|
|
|
1471
1530
|
/**
|
|
@@ -1476,7 +1535,7 @@ interface RDSService$ {
|
|
|
1476
1535
|
options?: HttpHandlerOptions,
|
|
1477
1536
|
): Effect.Effect<
|
|
1478
1537
|
DeleteDBParameterGroupCommandOutput,
|
|
1479
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1538
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1480
1539
|
>;
|
|
1481
1540
|
|
|
1482
1541
|
/**
|
|
@@ -1487,7 +1546,7 @@ interface RDSService$ {
|
|
|
1487
1546
|
options?: HttpHandlerOptions,
|
|
1488
1547
|
): Effect.Effect<
|
|
1489
1548
|
DeleteDBProxyCommandOutput,
|
|
1490
|
-
SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
|
|
1549
|
+
Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
|
|
1491
1550
|
>;
|
|
1492
1551
|
|
|
1493
1552
|
/**
|
|
@@ -1498,7 +1557,7 @@ interface RDSService$ {
|
|
|
1498
1557
|
options?: HttpHandlerOptions,
|
|
1499
1558
|
): Effect.Effect<
|
|
1500
1559
|
DeleteDBProxyEndpointCommandOutput,
|
|
1501
|
-
SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
|
|
1560
|
+
Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
|
|
1502
1561
|
>;
|
|
1503
1562
|
|
|
1504
1563
|
/**
|
|
@@ -1509,7 +1568,7 @@ interface RDSService$ {
|
|
|
1509
1568
|
options?: HttpHandlerOptions,
|
|
1510
1569
|
): Effect.Effect<
|
|
1511
1570
|
DeleteDBSecurityGroupCommandOutput,
|
|
1512
|
-
SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
|
|
1571
|
+
Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
|
|
1513
1572
|
>;
|
|
1514
1573
|
|
|
1515
1574
|
/**
|
|
@@ -1520,7 +1579,11 @@ interface RDSService$ {
|
|
|
1520
1579
|
options?: HttpHandlerOptions,
|
|
1521
1580
|
): Effect.Effect<
|
|
1522
1581
|
DeleteDBShardGroupCommandOutput,
|
|
1523
|
-
|
|
1582
|
+
| Cause.TimeoutException
|
|
1583
|
+
| SdkError
|
|
1584
|
+
| DBShardGroupNotFoundFaultError
|
|
1585
|
+
| InvalidDBClusterStateFaultError
|
|
1586
|
+
| InvalidDBShardGroupStateFaultError
|
|
1524
1587
|
>;
|
|
1525
1588
|
|
|
1526
1589
|
/**
|
|
@@ -1531,7 +1594,7 @@ interface RDSService$ {
|
|
|
1531
1594
|
options?: HttpHandlerOptions,
|
|
1532
1595
|
): Effect.Effect<
|
|
1533
1596
|
DeleteDBSnapshotCommandOutput,
|
|
1534
|
-
SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
|
|
1597
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
|
|
1535
1598
|
>;
|
|
1536
1599
|
|
|
1537
1600
|
/**
|
|
@@ -1542,7 +1605,11 @@ interface RDSService$ {
|
|
|
1542
1605
|
options?: HttpHandlerOptions,
|
|
1543
1606
|
): Effect.Effect<
|
|
1544
1607
|
DeleteDBSubnetGroupCommandOutput,
|
|
1545
|
-
|
|
1608
|
+
| Cause.TimeoutException
|
|
1609
|
+
| SdkError
|
|
1610
|
+
| DBSubnetGroupNotFoundFaultError
|
|
1611
|
+
| InvalidDBSubnetGroupStateFaultError
|
|
1612
|
+
| InvalidDBSubnetStateFaultError
|
|
1546
1613
|
>;
|
|
1547
1614
|
|
|
1548
1615
|
/**
|
|
@@ -1553,7 +1620,7 @@ interface RDSService$ {
|
|
|
1553
1620
|
options?: HttpHandlerOptions,
|
|
1554
1621
|
): Effect.Effect<
|
|
1555
1622
|
DeleteEventSubscriptionCommandOutput,
|
|
1556
|
-
SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
|
|
1623
|
+
Cause.TimeoutException | SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
|
|
1557
1624
|
>;
|
|
1558
1625
|
|
|
1559
1626
|
/**
|
|
@@ -1564,7 +1631,7 @@ interface RDSService$ {
|
|
|
1564
1631
|
options?: HttpHandlerOptions,
|
|
1565
1632
|
): Effect.Effect<
|
|
1566
1633
|
DeleteGlobalClusterCommandOutput,
|
|
1567
|
-
SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
|
|
1634
|
+
Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
|
|
1568
1635
|
>;
|
|
1569
1636
|
|
|
1570
1637
|
/**
|
|
@@ -1575,6 +1642,7 @@ interface RDSService$ {
|
|
|
1575
1642
|
options?: HttpHandlerOptions,
|
|
1576
1643
|
): Effect.Effect<
|
|
1577
1644
|
DeleteIntegrationCommandOutput,
|
|
1645
|
+
| Cause.TimeoutException
|
|
1578
1646
|
| SdkError
|
|
1579
1647
|
| IntegrationConflictOperationFaultError
|
|
1580
1648
|
| IntegrationNotFoundFaultError
|
|
@@ -1589,7 +1657,7 @@ interface RDSService$ {
|
|
|
1589
1657
|
options?: HttpHandlerOptions,
|
|
1590
1658
|
): Effect.Effect<
|
|
1591
1659
|
DeleteOptionGroupCommandOutput,
|
|
1592
|
-
SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
1660
|
+
Cause.TimeoutException | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
1593
1661
|
>;
|
|
1594
1662
|
|
|
1595
1663
|
/**
|
|
@@ -1600,7 +1668,11 @@ interface RDSService$ {
|
|
|
1600
1668
|
options?: HttpHandlerOptions,
|
|
1601
1669
|
): Effect.Effect<
|
|
1602
1670
|
DeleteTenantDatabaseCommandOutput,
|
|
1603
|
-
|
|
1671
|
+
| Cause.TimeoutException
|
|
1672
|
+
| SdkError
|
|
1673
|
+
| DBInstanceNotFoundFaultError
|
|
1674
|
+
| InvalidDBInstanceStateFaultError
|
|
1675
|
+
| TenantDatabaseNotFoundFaultError
|
|
1604
1676
|
>;
|
|
1605
1677
|
|
|
1606
1678
|
/**
|
|
@@ -1611,6 +1683,7 @@ interface RDSService$ {
|
|
|
1611
1683
|
options?: HttpHandlerOptions,
|
|
1612
1684
|
): Effect.Effect<
|
|
1613
1685
|
DeregisterDBProxyTargetsCommandOutput,
|
|
1686
|
+
| Cause.TimeoutException
|
|
1614
1687
|
| SdkError
|
|
1615
1688
|
| DBProxyNotFoundFaultError
|
|
1616
1689
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1626,7 +1699,7 @@ interface RDSService$ {
|
|
|
1626
1699
|
options?: HttpHandlerOptions,
|
|
1627
1700
|
): Effect.Effect<
|
|
1628
1701
|
DescribeAccountAttributesCommandOutput,
|
|
1629
|
-
SdkError
|
|
1702
|
+
Cause.TimeoutException | SdkError
|
|
1630
1703
|
>;
|
|
1631
1704
|
|
|
1632
1705
|
/**
|
|
@@ -1637,7 +1710,7 @@ interface RDSService$ {
|
|
|
1637
1710
|
options?: HttpHandlerOptions,
|
|
1638
1711
|
): Effect.Effect<
|
|
1639
1712
|
DescribeBlueGreenDeploymentsCommandOutput,
|
|
1640
|
-
SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1713
|
+
Cause.TimeoutException | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1641
1714
|
>;
|
|
1642
1715
|
|
|
1643
1716
|
/**
|
|
@@ -1648,7 +1721,7 @@ interface RDSService$ {
|
|
|
1648
1721
|
options?: HttpHandlerOptions,
|
|
1649
1722
|
): Effect.Effect<
|
|
1650
1723
|
DescribeCertificatesCommandOutput,
|
|
1651
|
-
SdkError | CertificateNotFoundFaultError
|
|
1724
|
+
Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
|
|
1652
1725
|
>;
|
|
1653
1726
|
|
|
1654
1727
|
/**
|
|
@@ -1659,7 +1732,7 @@ interface RDSService$ {
|
|
|
1659
1732
|
options?: HttpHandlerOptions,
|
|
1660
1733
|
): Effect.Effect<
|
|
1661
1734
|
DescribeDBClusterAutomatedBackupsCommandOutput,
|
|
1662
|
-
SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1735
|
+
Cause.TimeoutException | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1663
1736
|
>;
|
|
1664
1737
|
|
|
1665
1738
|
/**
|
|
@@ -1670,7 +1743,7 @@ interface RDSService$ {
|
|
|
1670
1743
|
options?: HttpHandlerOptions,
|
|
1671
1744
|
): Effect.Effect<
|
|
1672
1745
|
DescribeDBClusterBacktracksCommandOutput,
|
|
1673
|
-
SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1746
|
+
Cause.TimeoutException | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1674
1747
|
>;
|
|
1675
1748
|
|
|
1676
1749
|
/**
|
|
@@ -1681,7 +1754,7 @@ interface RDSService$ {
|
|
|
1681
1754
|
options?: HttpHandlerOptions,
|
|
1682
1755
|
): Effect.Effect<
|
|
1683
1756
|
DescribeDBClusterEndpointsCommandOutput,
|
|
1684
|
-
SdkError | DBClusterNotFoundFaultError
|
|
1757
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1685
1758
|
>;
|
|
1686
1759
|
|
|
1687
1760
|
/**
|
|
@@ -1692,7 +1765,7 @@ interface RDSService$ {
|
|
|
1692
1765
|
options?: HttpHandlerOptions,
|
|
1693
1766
|
): Effect.Effect<
|
|
1694
1767
|
DescribeDBClusterParameterGroupsCommandOutput,
|
|
1695
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1768
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1696
1769
|
>;
|
|
1697
1770
|
|
|
1698
1771
|
/**
|
|
@@ -1703,7 +1776,7 @@ interface RDSService$ {
|
|
|
1703
1776
|
options?: HttpHandlerOptions,
|
|
1704
1777
|
): Effect.Effect<
|
|
1705
1778
|
DescribeDBClusterParametersCommandOutput,
|
|
1706
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1779
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1707
1780
|
>;
|
|
1708
1781
|
|
|
1709
1782
|
/**
|
|
@@ -1714,7 +1787,7 @@ interface RDSService$ {
|
|
|
1714
1787
|
options?: HttpHandlerOptions,
|
|
1715
1788
|
): Effect.Effect<
|
|
1716
1789
|
DescribeDBClusterSnapshotAttributesCommandOutput,
|
|
1717
|
-
SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1790
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1718
1791
|
>;
|
|
1719
1792
|
|
|
1720
1793
|
/**
|
|
@@ -1725,7 +1798,7 @@ interface RDSService$ {
|
|
|
1725
1798
|
options?: HttpHandlerOptions,
|
|
1726
1799
|
): Effect.Effect<
|
|
1727
1800
|
DescribeDBClusterSnapshotsCommandOutput,
|
|
1728
|
-
SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1801
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1729
1802
|
>;
|
|
1730
1803
|
|
|
1731
1804
|
/**
|
|
@@ -1736,7 +1809,7 @@ interface RDSService$ {
|
|
|
1736
1809
|
options?: HttpHandlerOptions,
|
|
1737
1810
|
): Effect.Effect<
|
|
1738
1811
|
DescribeDBClustersCommandOutput,
|
|
1739
|
-
SdkError | DBClusterNotFoundFaultError
|
|
1812
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1740
1813
|
>;
|
|
1741
1814
|
|
|
1742
1815
|
/**
|
|
@@ -1747,7 +1820,7 @@ interface RDSService$ {
|
|
|
1747
1820
|
options?: HttpHandlerOptions,
|
|
1748
1821
|
): Effect.Effect<
|
|
1749
1822
|
DescribeDBEngineVersionsCommandOutput,
|
|
1750
|
-
SdkError
|
|
1823
|
+
Cause.TimeoutException | SdkError
|
|
1751
1824
|
>;
|
|
1752
1825
|
|
|
1753
1826
|
/**
|
|
@@ -1758,7 +1831,7 @@ interface RDSService$ {
|
|
|
1758
1831
|
options?: HttpHandlerOptions,
|
|
1759
1832
|
): Effect.Effect<
|
|
1760
1833
|
DescribeDBInstanceAutomatedBackupsCommandOutput,
|
|
1761
|
-
SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1834
|
+
Cause.TimeoutException | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1762
1835
|
>;
|
|
1763
1836
|
|
|
1764
1837
|
/**
|
|
@@ -1769,7 +1842,7 @@ interface RDSService$ {
|
|
|
1769
1842
|
options?: HttpHandlerOptions,
|
|
1770
1843
|
): Effect.Effect<
|
|
1771
1844
|
DescribeDBInstancesCommandOutput,
|
|
1772
|
-
SdkError | DBInstanceNotFoundFaultError
|
|
1845
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
1773
1846
|
>;
|
|
1774
1847
|
|
|
1775
1848
|
/**
|
|
@@ -1780,7 +1853,7 @@ interface RDSService$ {
|
|
|
1780
1853
|
options?: HttpHandlerOptions,
|
|
1781
1854
|
): Effect.Effect<
|
|
1782
1855
|
DescribeDBLogFilesCommandOutput,
|
|
1783
|
-
SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1856
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1784
1857
|
>;
|
|
1785
1858
|
|
|
1786
1859
|
/**
|
|
@@ -1791,7 +1864,7 @@ interface RDSService$ {
|
|
|
1791
1864
|
options?: HttpHandlerOptions,
|
|
1792
1865
|
): Effect.Effect<
|
|
1793
1866
|
DescribeDBParameterGroupsCommandOutput,
|
|
1794
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1867
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1795
1868
|
>;
|
|
1796
1869
|
|
|
1797
1870
|
/**
|
|
@@ -1802,7 +1875,7 @@ interface RDSService$ {
|
|
|
1802
1875
|
options?: HttpHandlerOptions,
|
|
1803
1876
|
): Effect.Effect<
|
|
1804
1877
|
DescribeDBParametersCommandOutput,
|
|
1805
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1878
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1806
1879
|
>;
|
|
1807
1880
|
|
|
1808
1881
|
/**
|
|
@@ -1813,7 +1886,7 @@ interface RDSService$ {
|
|
|
1813
1886
|
options?: HttpHandlerOptions,
|
|
1814
1887
|
): Effect.Effect<
|
|
1815
1888
|
DescribeDBProxiesCommandOutput,
|
|
1816
|
-
SdkError | DBProxyNotFoundFaultError
|
|
1889
|
+
Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError
|
|
1817
1890
|
>;
|
|
1818
1891
|
|
|
1819
1892
|
/**
|
|
@@ -1824,7 +1897,7 @@ interface RDSService$ {
|
|
|
1824
1897
|
options?: HttpHandlerOptions,
|
|
1825
1898
|
): Effect.Effect<
|
|
1826
1899
|
DescribeDBProxyEndpointsCommandOutput,
|
|
1827
|
-
SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1900
|
+
Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1828
1901
|
>;
|
|
1829
1902
|
|
|
1830
1903
|
/**
|
|
@@ -1835,7 +1908,11 @@ interface RDSService$ {
|
|
|
1835
1908
|
options?: HttpHandlerOptions,
|
|
1836
1909
|
): Effect.Effect<
|
|
1837
1910
|
DescribeDBProxyTargetGroupsCommandOutput,
|
|
1838
|
-
|
|
1911
|
+
| Cause.TimeoutException
|
|
1912
|
+
| SdkError
|
|
1913
|
+
| DBProxyNotFoundFaultError
|
|
1914
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
1915
|
+
| InvalidDBProxyStateFaultError
|
|
1839
1916
|
>;
|
|
1840
1917
|
|
|
1841
1918
|
/**
|
|
@@ -1846,6 +1923,7 @@ interface RDSService$ {
|
|
|
1846
1923
|
options?: HttpHandlerOptions,
|
|
1847
1924
|
): Effect.Effect<
|
|
1848
1925
|
DescribeDBProxyTargetsCommandOutput,
|
|
1926
|
+
| Cause.TimeoutException
|
|
1849
1927
|
| SdkError
|
|
1850
1928
|
| DBProxyNotFoundFaultError
|
|
1851
1929
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1861,7 +1939,7 @@ interface RDSService$ {
|
|
|
1861
1939
|
options?: HttpHandlerOptions,
|
|
1862
1940
|
): Effect.Effect<
|
|
1863
1941
|
DescribeDBRecommendationsCommandOutput,
|
|
1864
|
-
SdkError
|
|
1942
|
+
Cause.TimeoutException | SdkError
|
|
1865
1943
|
>;
|
|
1866
1944
|
|
|
1867
1945
|
/**
|
|
@@ -1872,7 +1950,7 @@ interface RDSService$ {
|
|
|
1872
1950
|
options?: HttpHandlerOptions,
|
|
1873
1951
|
): Effect.Effect<
|
|
1874
1952
|
DescribeDBSecurityGroupsCommandOutput,
|
|
1875
|
-
SdkError | DBSecurityGroupNotFoundFaultError
|
|
1953
|
+
Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError
|
|
1876
1954
|
>;
|
|
1877
1955
|
|
|
1878
1956
|
/**
|
|
@@ -1883,7 +1961,7 @@ interface RDSService$ {
|
|
|
1883
1961
|
options?: HttpHandlerOptions,
|
|
1884
1962
|
): Effect.Effect<
|
|
1885
1963
|
DescribeDBShardGroupsCommandOutput,
|
|
1886
|
-
SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
|
|
1964
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
|
|
1887
1965
|
>;
|
|
1888
1966
|
|
|
1889
1967
|
/**
|
|
@@ -1894,7 +1972,7 @@ interface RDSService$ {
|
|
|
1894
1972
|
options?: HttpHandlerOptions,
|
|
1895
1973
|
): Effect.Effect<
|
|
1896
1974
|
DescribeDBSnapshotAttributesCommandOutput,
|
|
1897
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
1975
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
1898
1976
|
>;
|
|
1899
1977
|
|
|
1900
1978
|
/**
|
|
@@ -1905,7 +1983,7 @@ interface RDSService$ {
|
|
|
1905
1983
|
options?: HttpHandlerOptions,
|
|
1906
1984
|
): Effect.Effect<
|
|
1907
1985
|
DescribeDBSnapshotTenantDatabasesCommandOutput,
|
|
1908
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
1986
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
1909
1987
|
>;
|
|
1910
1988
|
|
|
1911
1989
|
/**
|
|
@@ -1916,7 +1994,7 @@ interface RDSService$ {
|
|
|
1916
1994
|
options?: HttpHandlerOptions,
|
|
1917
1995
|
): Effect.Effect<
|
|
1918
1996
|
DescribeDBSnapshotsCommandOutput,
|
|
1919
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
1997
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
1920
1998
|
>;
|
|
1921
1999
|
|
|
1922
2000
|
/**
|
|
@@ -1927,7 +2005,7 @@ interface RDSService$ {
|
|
|
1927
2005
|
options?: HttpHandlerOptions,
|
|
1928
2006
|
): Effect.Effect<
|
|
1929
2007
|
DescribeDBSubnetGroupsCommandOutput,
|
|
1930
|
-
SdkError | DBSubnetGroupNotFoundFaultError
|
|
2008
|
+
Cause.TimeoutException | SdkError | DBSubnetGroupNotFoundFaultError
|
|
1931
2009
|
>;
|
|
1932
2010
|
|
|
1933
2011
|
/**
|
|
@@ -1938,7 +2016,7 @@ interface RDSService$ {
|
|
|
1938
2016
|
options?: HttpHandlerOptions,
|
|
1939
2017
|
): Effect.Effect<
|
|
1940
2018
|
DescribeEngineDefaultClusterParametersCommandOutput,
|
|
1941
|
-
SdkError
|
|
2019
|
+
Cause.TimeoutException | SdkError
|
|
1942
2020
|
>;
|
|
1943
2021
|
|
|
1944
2022
|
/**
|
|
@@ -1949,7 +2027,7 @@ interface RDSService$ {
|
|
|
1949
2027
|
options?: HttpHandlerOptions,
|
|
1950
2028
|
): Effect.Effect<
|
|
1951
2029
|
DescribeEngineDefaultParametersCommandOutput,
|
|
1952
|
-
SdkError
|
|
2030
|
+
Cause.TimeoutException | SdkError
|
|
1953
2031
|
>;
|
|
1954
2032
|
|
|
1955
2033
|
/**
|
|
@@ -1960,7 +2038,7 @@ interface RDSService$ {
|
|
|
1960
2038
|
options?: HttpHandlerOptions,
|
|
1961
2039
|
): Effect.Effect<
|
|
1962
2040
|
DescribeEventCategoriesCommandOutput,
|
|
1963
|
-
SdkError
|
|
2041
|
+
Cause.TimeoutException | SdkError
|
|
1964
2042
|
>;
|
|
1965
2043
|
|
|
1966
2044
|
/**
|
|
@@ -1971,7 +2049,7 @@ interface RDSService$ {
|
|
|
1971
2049
|
options?: HttpHandlerOptions,
|
|
1972
2050
|
): Effect.Effect<
|
|
1973
2051
|
DescribeEventSubscriptionsCommandOutput,
|
|
1974
|
-
SdkError | SubscriptionNotFoundFaultError
|
|
2052
|
+
Cause.TimeoutException | SdkError | SubscriptionNotFoundFaultError
|
|
1975
2053
|
>;
|
|
1976
2054
|
|
|
1977
2055
|
/**
|
|
@@ -1982,7 +2060,7 @@ interface RDSService$ {
|
|
|
1982
2060
|
options?: HttpHandlerOptions,
|
|
1983
2061
|
): Effect.Effect<
|
|
1984
2062
|
DescribeEventsCommandOutput,
|
|
1985
|
-
SdkError
|
|
2063
|
+
Cause.TimeoutException | SdkError
|
|
1986
2064
|
>;
|
|
1987
2065
|
|
|
1988
2066
|
/**
|
|
@@ -1993,7 +2071,7 @@ interface RDSService$ {
|
|
|
1993
2071
|
options?: HttpHandlerOptions,
|
|
1994
2072
|
): Effect.Effect<
|
|
1995
2073
|
DescribeExportTasksCommandOutput,
|
|
1996
|
-
SdkError | ExportTaskNotFoundFaultError
|
|
2074
|
+
Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError
|
|
1997
2075
|
>;
|
|
1998
2076
|
|
|
1999
2077
|
/**
|
|
@@ -2004,7 +2082,7 @@ interface RDSService$ {
|
|
|
2004
2082
|
options?: HttpHandlerOptions,
|
|
2005
2083
|
): Effect.Effect<
|
|
2006
2084
|
DescribeGlobalClustersCommandOutput,
|
|
2007
|
-
SdkError | GlobalClusterNotFoundFaultError
|
|
2085
|
+
Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError
|
|
2008
2086
|
>;
|
|
2009
2087
|
|
|
2010
2088
|
/**
|
|
@@ -2015,7 +2093,7 @@ interface RDSService$ {
|
|
|
2015
2093
|
options?: HttpHandlerOptions,
|
|
2016
2094
|
): Effect.Effect<
|
|
2017
2095
|
DescribeIntegrationsCommandOutput,
|
|
2018
|
-
SdkError | IntegrationNotFoundFaultError
|
|
2096
|
+
Cause.TimeoutException | SdkError | IntegrationNotFoundFaultError
|
|
2019
2097
|
>;
|
|
2020
2098
|
|
|
2021
2099
|
/**
|
|
@@ -2026,7 +2104,7 @@ interface RDSService$ {
|
|
|
2026
2104
|
options?: HttpHandlerOptions,
|
|
2027
2105
|
): Effect.Effect<
|
|
2028
2106
|
DescribeOptionGroupOptionsCommandOutput,
|
|
2029
|
-
SdkError
|
|
2107
|
+
Cause.TimeoutException | SdkError
|
|
2030
2108
|
>;
|
|
2031
2109
|
|
|
2032
2110
|
/**
|
|
@@ -2037,7 +2115,7 @@ interface RDSService$ {
|
|
|
2037
2115
|
options?: HttpHandlerOptions,
|
|
2038
2116
|
): Effect.Effect<
|
|
2039
2117
|
DescribeOptionGroupsCommandOutput,
|
|
2040
|
-
SdkError | OptionGroupNotFoundFaultError
|
|
2118
|
+
Cause.TimeoutException | SdkError | OptionGroupNotFoundFaultError
|
|
2041
2119
|
>;
|
|
2042
2120
|
|
|
2043
2121
|
/**
|
|
@@ -2048,7 +2126,7 @@ interface RDSService$ {
|
|
|
2048
2126
|
options?: HttpHandlerOptions,
|
|
2049
2127
|
): Effect.Effect<
|
|
2050
2128
|
DescribeOrderableDBInstanceOptionsCommandOutput,
|
|
2051
|
-
SdkError
|
|
2129
|
+
Cause.TimeoutException | SdkError
|
|
2052
2130
|
>;
|
|
2053
2131
|
|
|
2054
2132
|
/**
|
|
@@ -2059,7 +2137,7 @@ interface RDSService$ {
|
|
|
2059
2137
|
options?: HttpHandlerOptions,
|
|
2060
2138
|
): Effect.Effect<
|
|
2061
2139
|
DescribePendingMaintenanceActionsCommandOutput,
|
|
2062
|
-
SdkError | ResourceNotFoundFaultError
|
|
2140
|
+
Cause.TimeoutException | SdkError | ResourceNotFoundFaultError
|
|
2063
2141
|
>;
|
|
2064
2142
|
|
|
2065
2143
|
/**
|
|
@@ -2070,7 +2148,7 @@ interface RDSService$ {
|
|
|
2070
2148
|
options?: HttpHandlerOptions,
|
|
2071
2149
|
): Effect.Effect<
|
|
2072
2150
|
DescribeReservedDBInstancesCommandOutput,
|
|
2073
|
-
SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2151
|
+
Cause.TimeoutException | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2074
2152
|
>;
|
|
2075
2153
|
|
|
2076
2154
|
/**
|
|
@@ -2081,7 +2159,7 @@ interface RDSService$ {
|
|
|
2081
2159
|
options?: HttpHandlerOptions,
|
|
2082
2160
|
): Effect.Effect<
|
|
2083
2161
|
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
2084
|
-
SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2162
|
+
Cause.TimeoutException | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2085
2163
|
>;
|
|
2086
2164
|
|
|
2087
2165
|
/**
|
|
@@ -2092,7 +2170,7 @@ interface RDSService$ {
|
|
|
2092
2170
|
options?: HttpHandlerOptions,
|
|
2093
2171
|
): Effect.Effect<
|
|
2094
2172
|
DescribeSourceRegionsCommandOutput,
|
|
2095
|
-
SdkError
|
|
2173
|
+
Cause.TimeoutException | SdkError
|
|
2096
2174
|
>;
|
|
2097
2175
|
|
|
2098
2176
|
/**
|
|
@@ -2103,7 +2181,7 @@ interface RDSService$ {
|
|
|
2103
2181
|
options?: HttpHandlerOptions,
|
|
2104
2182
|
): Effect.Effect<
|
|
2105
2183
|
DescribeTenantDatabasesCommandOutput,
|
|
2106
|
-
SdkError | DBInstanceNotFoundFaultError
|
|
2184
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
2107
2185
|
>;
|
|
2108
2186
|
|
|
2109
2187
|
/**
|
|
@@ -2114,7 +2192,7 @@ interface RDSService$ {
|
|
|
2114
2192
|
options?: HttpHandlerOptions,
|
|
2115
2193
|
): Effect.Effect<
|
|
2116
2194
|
DescribeValidDBInstanceModificationsCommandOutput,
|
|
2117
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2195
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2118
2196
|
>;
|
|
2119
2197
|
|
|
2120
2198
|
/**
|
|
@@ -2125,7 +2203,7 @@ interface RDSService$ {
|
|
|
2125
2203
|
options?: HttpHandlerOptions,
|
|
2126
2204
|
): Effect.Effect<
|
|
2127
2205
|
DisableHttpEndpointCommandOutput,
|
|
2128
|
-
SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2206
|
+
Cause.TimeoutException | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2129
2207
|
>;
|
|
2130
2208
|
|
|
2131
2209
|
/**
|
|
@@ -2136,7 +2214,11 @@ interface RDSService$ {
|
|
|
2136
2214
|
options?: HttpHandlerOptions,
|
|
2137
2215
|
): Effect.Effect<
|
|
2138
2216
|
DownloadDBLogFilePortionCommandOutput,
|
|
2139
|
-
|
|
2217
|
+
| Cause.TimeoutException
|
|
2218
|
+
| SdkError
|
|
2219
|
+
| DBInstanceNotFoundFaultError
|
|
2220
|
+
| DBInstanceNotReadyFaultError
|
|
2221
|
+
| DBLogFileNotFoundFaultError
|
|
2140
2222
|
>;
|
|
2141
2223
|
|
|
2142
2224
|
/**
|
|
@@ -2147,7 +2229,7 @@ interface RDSService$ {
|
|
|
2147
2229
|
options?: HttpHandlerOptions,
|
|
2148
2230
|
): Effect.Effect<
|
|
2149
2231
|
EnableHttpEndpointCommandOutput,
|
|
2150
|
-
SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2232
|
+
Cause.TimeoutException | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2151
2233
|
>;
|
|
2152
2234
|
|
|
2153
2235
|
/**
|
|
@@ -2158,7 +2240,11 @@ interface RDSService$ {
|
|
|
2158
2240
|
options?: HttpHandlerOptions,
|
|
2159
2241
|
): Effect.Effect<
|
|
2160
2242
|
FailoverDBClusterCommandOutput,
|
|
2161
|
-
|
|
2243
|
+
| Cause.TimeoutException
|
|
2244
|
+
| SdkError
|
|
2245
|
+
| DBClusterNotFoundFaultError
|
|
2246
|
+
| InvalidDBClusterStateFaultError
|
|
2247
|
+
| InvalidDBInstanceStateFaultError
|
|
2162
2248
|
>;
|
|
2163
2249
|
|
|
2164
2250
|
/**
|
|
@@ -2169,6 +2255,7 @@ interface RDSService$ {
|
|
|
2169
2255
|
options?: HttpHandlerOptions,
|
|
2170
2256
|
): Effect.Effect<
|
|
2171
2257
|
FailoverGlobalClusterCommandOutput,
|
|
2258
|
+
| Cause.TimeoutException
|
|
2172
2259
|
| SdkError
|
|
2173
2260
|
| DBClusterNotFoundFaultError
|
|
2174
2261
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2184,6 +2271,7 @@ interface RDSService$ {
|
|
|
2184
2271
|
options?: HttpHandlerOptions,
|
|
2185
2272
|
): Effect.Effect<
|
|
2186
2273
|
ListTagsForResourceCommandOutput,
|
|
2274
|
+
| Cause.TimeoutException
|
|
2187
2275
|
| SdkError
|
|
2188
2276
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2189
2277
|
| DBClusterNotFoundFaultError
|
|
@@ -2204,7 +2292,11 @@ interface RDSService$ {
|
|
|
2204
2292
|
options?: HttpHandlerOptions,
|
|
2205
2293
|
): Effect.Effect<
|
|
2206
2294
|
ModifyActivityStreamCommandOutput,
|
|
2207
|
-
|
|
2295
|
+
| Cause.TimeoutException
|
|
2296
|
+
| SdkError
|
|
2297
|
+
| DBInstanceNotFoundFaultError
|
|
2298
|
+
| InvalidDBInstanceStateFaultError
|
|
2299
|
+
| ResourceNotFoundFaultError
|
|
2208
2300
|
>;
|
|
2209
2301
|
|
|
2210
2302
|
/**
|
|
@@ -2215,7 +2307,7 @@ interface RDSService$ {
|
|
|
2215
2307
|
options?: HttpHandlerOptions,
|
|
2216
2308
|
): Effect.Effect<
|
|
2217
2309
|
ModifyCertificatesCommandOutput,
|
|
2218
|
-
SdkError | CertificateNotFoundFaultError
|
|
2310
|
+
Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
|
|
2219
2311
|
>;
|
|
2220
2312
|
|
|
2221
2313
|
/**
|
|
@@ -2226,7 +2318,11 @@ interface RDSService$ {
|
|
|
2226
2318
|
options?: HttpHandlerOptions,
|
|
2227
2319
|
): Effect.Effect<
|
|
2228
2320
|
ModifyCurrentDBClusterCapacityCommandOutput,
|
|
2229
|
-
|
|
2321
|
+
| Cause.TimeoutException
|
|
2322
|
+
| SdkError
|
|
2323
|
+
| DBClusterNotFoundFaultError
|
|
2324
|
+
| InvalidDBClusterCapacityFaultError
|
|
2325
|
+
| InvalidDBClusterStateFaultError
|
|
2230
2326
|
>;
|
|
2231
2327
|
|
|
2232
2328
|
/**
|
|
@@ -2237,7 +2333,10 @@ interface RDSService$ {
|
|
|
2237
2333
|
options?: HttpHandlerOptions,
|
|
2238
2334
|
): Effect.Effect<
|
|
2239
2335
|
ModifyCustomDBEngineVersionCommandOutput,
|
|
2240
|
-
|
|
2336
|
+
| Cause.TimeoutException
|
|
2337
|
+
| SdkError
|
|
2338
|
+
| CustomDBEngineVersionNotFoundFaultError
|
|
2339
|
+
| InvalidCustomDBEngineVersionStateFaultError
|
|
2241
2340
|
>;
|
|
2242
2341
|
|
|
2243
2342
|
/**
|
|
@@ -2248,6 +2347,7 @@ interface RDSService$ {
|
|
|
2248
2347
|
options?: HttpHandlerOptions,
|
|
2249
2348
|
): Effect.Effect<
|
|
2250
2349
|
ModifyDBClusterCommandOutput,
|
|
2350
|
+
| Cause.TimeoutException
|
|
2251
2351
|
| SdkError
|
|
2252
2352
|
| DBClusterAlreadyExistsFaultError
|
|
2253
2353
|
| DBClusterNotFoundFaultError
|
|
@@ -2274,6 +2374,7 @@ interface RDSService$ {
|
|
|
2274
2374
|
options?: HttpHandlerOptions,
|
|
2275
2375
|
): Effect.Effect<
|
|
2276
2376
|
ModifyDBClusterEndpointCommandOutput,
|
|
2377
|
+
| Cause.TimeoutException
|
|
2277
2378
|
| SdkError
|
|
2278
2379
|
| DBClusterEndpointNotFoundFaultError
|
|
2279
2380
|
| DBInstanceNotFoundFaultError
|
|
@@ -2290,7 +2391,7 @@ interface RDSService$ {
|
|
|
2290
2391
|
options?: HttpHandlerOptions,
|
|
2291
2392
|
): Effect.Effect<
|
|
2292
2393
|
ModifyDBClusterParameterGroupCommandOutput,
|
|
2293
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2394
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2294
2395
|
>;
|
|
2295
2396
|
|
|
2296
2397
|
/**
|
|
@@ -2301,6 +2402,7 @@ interface RDSService$ {
|
|
|
2301
2402
|
options?: HttpHandlerOptions,
|
|
2302
2403
|
): Effect.Effect<
|
|
2303
2404
|
ModifyDBClusterSnapshotAttributeCommandOutput,
|
|
2405
|
+
| Cause.TimeoutException
|
|
2304
2406
|
| SdkError
|
|
2305
2407
|
| DBClusterSnapshotNotFoundFaultError
|
|
2306
2408
|
| InvalidDBClusterSnapshotStateFaultError
|
|
@@ -2315,6 +2417,7 @@ interface RDSService$ {
|
|
|
2315
2417
|
options?: HttpHandlerOptions,
|
|
2316
2418
|
): Effect.Effect<
|
|
2317
2419
|
ModifyDBInstanceCommandOutput,
|
|
2420
|
+
| Cause.TimeoutException
|
|
2318
2421
|
| SdkError
|
|
2319
2422
|
| AuthorizationNotFoundFaultError
|
|
2320
2423
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2347,7 +2450,7 @@ interface RDSService$ {
|
|
|
2347
2450
|
options?: HttpHandlerOptions,
|
|
2348
2451
|
): Effect.Effect<
|
|
2349
2452
|
ModifyDBParameterGroupCommandOutput,
|
|
2350
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2453
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2351
2454
|
>;
|
|
2352
2455
|
|
|
2353
2456
|
/**
|
|
@@ -2358,7 +2461,11 @@ interface RDSService$ {
|
|
|
2358
2461
|
options?: HttpHandlerOptions,
|
|
2359
2462
|
): Effect.Effect<
|
|
2360
2463
|
ModifyDBProxyCommandOutput,
|
|
2361
|
-
|
|
2464
|
+
| Cause.TimeoutException
|
|
2465
|
+
| SdkError
|
|
2466
|
+
| DBProxyAlreadyExistsFaultError
|
|
2467
|
+
| DBProxyNotFoundFaultError
|
|
2468
|
+
| InvalidDBProxyStateFaultError
|
|
2362
2469
|
>;
|
|
2363
2470
|
|
|
2364
2471
|
/**
|
|
@@ -2369,6 +2476,7 @@ interface RDSService$ {
|
|
|
2369
2476
|
options?: HttpHandlerOptions,
|
|
2370
2477
|
): Effect.Effect<
|
|
2371
2478
|
ModifyDBProxyEndpointCommandOutput,
|
|
2479
|
+
| Cause.TimeoutException
|
|
2372
2480
|
| SdkError
|
|
2373
2481
|
| DBProxyEndpointAlreadyExistsFaultError
|
|
2374
2482
|
| DBProxyEndpointNotFoundFaultError
|
|
@@ -2384,7 +2492,11 @@ interface RDSService$ {
|
|
|
2384
2492
|
options?: HttpHandlerOptions,
|
|
2385
2493
|
): Effect.Effect<
|
|
2386
2494
|
ModifyDBProxyTargetGroupCommandOutput,
|
|
2387
|
-
|
|
2495
|
+
| Cause.TimeoutException
|
|
2496
|
+
| SdkError
|
|
2497
|
+
| DBProxyNotFoundFaultError
|
|
2498
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
2499
|
+
| InvalidDBProxyStateFaultError
|
|
2388
2500
|
>;
|
|
2389
2501
|
|
|
2390
2502
|
/**
|
|
@@ -2395,7 +2507,7 @@ interface RDSService$ {
|
|
|
2395
2507
|
options?: HttpHandlerOptions,
|
|
2396
2508
|
): Effect.Effect<
|
|
2397
2509
|
ModifyDBRecommendationCommandOutput,
|
|
2398
|
-
SdkError
|
|
2510
|
+
Cause.TimeoutException | SdkError
|
|
2399
2511
|
>;
|
|
2400
2512
|
|
|
2401
2513
|
/**
|
|
@@ -2406,7 +2518,11 @@ interface RDSService$ {
|
|
|
2406
2518
|
options?: HttpHandlerOptions,
|
|
2407
2519
|
): Effect.Effect<
|
|
2408
2520
|
ModifyDBShardGroupCommandOutput,
|
|
2409
|
-
|
|
2521
|
+
| Cause.TimeoutException
|
|
2522
|
+
| SdkError
|
|
2523
|
+
| DBShardGroupAlreadyExistsFaultError
|
|
2524
|
+
| DBShardGroupNotFoundFaultError
|
|
2525
|
+
| InvalidDBClusterStateFaultError
|
|
2410
2526
|
>;
|
|
2411
2527
|
|
|
2412
2528
|
/**
|
|
@@ -2417,7 +2533,7 @@ interface RDSService$ {
|
|
|
2417
2533
|
options?: HttpHandlerOptions,
|
|
2418
2534
|
): Effect.Effect<
|
|
2419
2535
|
ModifyDBSnapshotCommandOutput,
|
|
2420
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
2536
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
2421
2537
|
>;
|
|
2422
2538
|
|
|
2423
2539
|
/**
|
|
@@ -2428,7 +2544,11 @@ interface RDSService$ {
|
|
|
2428
2544
|
options?: HttpHandlerOptions,
|
|
2429
2545
|
): Effect.Effect<
|
|
2430
2546
|
ModifyDBSnapshotAttributeCommandOutput,
|
|
2431
|
-
|
|
2547
|
+
| Cause.TimeoutException
|
|
2548
|
+
| SdkError
|
|
2549
|
+
| DBSnapshotNotFoundFaultError
|
|
2550
|
+
| InvalidDBSnapshotStateFaultError
|
|
2551
|
+
| SharedSnapshotQuotaExceededFaultError
|
|
2432
2552
|
>;
|
|
2433
2553
|
|
|
2434
2554
|
/**
|
|
@@ -2439,6 +2559,7 @@ interface RDSService$ {
|
|
|
2439
2559
|
options?: HttpHandlerOptions,
|
|
2440
2560
|
): Effect.Effect<
|
|
2441
2561
|
ModifyDBSubnetGroupCommandOutput,
|
|
2562
|
+
| Cause.TimeoutException
|
|
2442
2563
|
| SdkError
|
|
2443
2564
|
| DBSubnetGroupDoesNotCoverEnoughAZsError
|
|
2444
2565
|
| DBSubnetGroupNotFoundFaultError
|
|
@@ -2455,6 +2576,7 @@ interface RDSService$ {
|
|
|
2455
2576
|
options?: HttpHandlerOptions,
|
|
2456
2577
|
): Effect.Effect<
|
|
2457
2578
|
ModifyEventSubscriptionCommandOutput,
|
|
2579
|
+
| Cause.TimeoutException
|
|
2458
2580
|
| SdkError
|
|
2459
2581
|
| EventSubscriptionQuotaExceededFaultError
|
|
2460
2582
|
| SNSInvalidTopicFaultError
|
|
@@ -2472,6 +2594,7 @@ interface RDSService$ {
|
|
|
2472
2594
|
options?: HttpHandlerOptions,
|
|
2473
2595
|
): Effect.Effect<
|
|
2474
2596
|
ModifyGlobalClusterCommandOutput,
|
|
2597
|
+
| Cause.TimeoutException
|
|
2475
2598
|
| SdkError
|
|
2476
2599
|
| GlobalClusterAlreadyExistsFaultError
|
|
2477
2600
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2488,6 +2611,7 @@ interface RDSService$ {
|
|
|
2488
2611
|
options?: HttpHandlerOptions,
|
|
2489
2612
|
): Effect.Effect<
|
|
2490
2613
|
ModifyIntegrationCommandOutput,
|
|
2614
|
+
| Cause.TimeoutException
|
|
2491
2615
|
| SdkError
|
|
2492
2616
|
| IntegrationConflictOperationFaultError
|
|
2493
2617
|
| IntegrationNotFoundFaultError
|
|
@@ -2502,7 +2626,7 @@ interface RDSService$ {
|
|
|
2502
2626
|
options?: HttpHandlerOptions,
|
|
2503
2627
|
): Effect.Effect<
|
|
2504
2628
|
ModifyOptionGroupCommandOutput,
|
|
2505
|
-
SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
2629
|
+
Cause.TimeoutException | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
2506
2630
|
>;
|
|
2507
2631
|
|
|
2508
2632
|
/**
|
|
@@ -2513,9 +2637,11 @@ interface RDSService$ {
|
|
|
2513
2637
|
options?: HttpHandlerOptions,
|
|
2514
2638
|
): Effect.Effect<
|
|
2515
2639
|
ModifyTenantDatabaseCommandOutput,
|
|
2640
|
+
| Cause.TimeoutException
|
|
2516
2641
|
| SdkError
|
|
2517
2642
|
| DBInstanceNotFoundFaultError
|
|
2518
2643
|
| InvalidDBInstanceStateFaultError
|
|
2644
|
+
| KMSKeyNotAccessibleFaultError
|
|
2519
2645
|
| TenantDatabaseAlreadyExistsFaultError
|
|
2520
2646
|
| TenantDatabaseNotFoundFaultError
|
|
2521
2647
|
>;
|
|
@@ -2528,7 +2654,7 @@ interface RDSService$ {
|
|
|
2528
2654
|
options?: HttpHandlerOptions,
|
|
2529
2655
|
): Effect.Effect<
|
|
2530
2656
|
PromoteReadReplicaCommandOutput,
|
|
2531
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2657
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2532
2658
|
>;
|
|
2533
2659
|
|
|
2534
2660
|
/**
|
|
@@ -2539,7 +2665,7 @@ interface RDSService$ {
|
|
|
2539
2665
|
options?: HttpHandlerOptions,
|
|
2540
2666
|
): Effect.Effect<
|
|
2541
2667
|
PromoteReadReplicaDBClusterCommandOutput,
|
|
2542
|
-
SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
2668
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
2543
2669
|
>;
|
|
2544
2670
|
|
|
2545
2671
|
/**
|
|
@@ -2550,6 +2676,7 @@ interface RDSService$ {
|
|
|
2550
2676
|
options?: HttpHandlerOptions,
|
|
2551
2677
|
): Effect.Effect<
|
|
2552
2678
|
PurchaseReservedDBInstancesOfferingCommandOutput,
|
|
2679
|
+
| Cause.TimeoutException
|
|
2553
2680
|
| SdkError
|
|
2554
2681
|
| ReservedDBInstanceAlreadyExistsFaultError
|
|
2555
2682
|
| ReservedDBInstanceQuotaExceededFaultError
|
|
@@ -2564,7 +2691,11 @@ interface RDSService$ {
|
|
|
2564
2691
|
options?: HttpHandlerOptions,
|
|
2565
2692
|
): Effect.Effect<
|
|
2566
2693
|
RebootDBClusterCommandOutput,
|
|
2567
|
-
|
|
2694
|
+
| Cause.TimeoutException
|
|
2695
|
+
| SdkError
|
|
2696
|
+
| DBClusterNotFoundFaultError
|
|
2697
|
+
| InvalidDBClusterStateFaultError
|
|
2698
|
+
| InvalidDBInstanceStateFaultError
|
|
2568
2699
|
>;
|
|
2569
2700
|
|
|
2570
2701
|
/**
|
|
@@ -2575,7 +2706,7 @@ interface RDSService$ {
|
|
|
2575
2706
|
options?: HttpHandlerOptions,
|
|
2576
2707
|
): Effect.Effect<
|
|
2577
2708
|
RebootDBInstanceCommandOutput,
|
|
2578
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2709
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2579
2710
|
>;
|
|
2580
2711
|
|
|
2581
2712
|
/**
|
|
@@ -2586,7 +2717,7 @@ interface RDSService$ {
|
|
|
2586
2717
|
options?: HttpHandlerOptions,
|
|
2587
2718
|
): Effect.Effect<
|
|
2588
2719
|
RebootDBShardGroupCommandOutput,
|
|
2589
|
-
SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
|
|
2720
|
+
Cause.TimeoutException | SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
|
|
2590
2721
|
>;
|
|
2591
2722
|
|
|
2592
2723
|
/**
|
|
@@ -2597,6 +2728,7 @@ interface RDSService$ {
|
|
|
2597
2728
|
options?: HttpHandlerOptions,
|
|
2598
2729
|
): Effect.Effect<
|
|
2599
2730
|
RegisterDBProxyTargetsCommandOutput,
|
|
2731
|
+
| Cause.TimeoutException
|
|
2600
2732
|
| SdkError
|
|
2601
2733
|
| DBClusterNotFoundFaultError
|
|
2602
2734
|
| DBInstanceNotFoundFaultError
|
|
@@ -2617,7 +2749,11 @@ interface RDSService$ {
|
|
|
2617
2749
|
options?: HttpHandlerOptions,
|
|
2618
2750
|
): Effect.Effect<
|
|
2619
2751
|
RemoveFromGlobalClusterCommandOutput,
|
|
2620
|
-
|
|
2752
|
+
| Cause.TimeoutException
|
|
2753
|
+
| SdkError
|
|
2754
|
+
| DBClusterNotFoundFaultError
|
|
2755
|
+
| GlobalClusterNotFoundFaultError
|
|
2756
|
+
| InvalidGlobalClusterStateFaultError
|
|
2621
2757
|
>;
|
|
2622
2758
|
|
|
2623
2759
|
/**
|
|
@@ -2628,7 +2764,11 @@ interface RDSService$ {
|
|
|
2628
2764
|
options?: HttpHandlerOptions,
|
|
2629
2765
|
): Effect.Effect<
|
|
2630
2766
|
RemoveRoleFromDBClusterCommandOutput,
|
|
2631
|
-
|
|
2767
|
+
| Cause.TimeoutException
|
|
2768
|
+
| SdkError
|
|
2769
|
+
| DBClusterNotFoundFaultError
|
|
2770
|
+
| DBClusterRoleNotFoundFaultError
|
|
2771
|
+
| InvalidDBClusterStateFaultError
|
|
2632
2772
|
>;
|
|
2633
2773
|
|
|
2634
2774
|
/**
|
|
@@ -2639,7 +2779,11 @@ interface RDSService$ {
|
|
|
2639
2779
|
options?: HttpHandlerOptions,
|
|
2640
2780
|
): Effect.Effect<
|
|
2641
2781
|
RemoveRoleFromDBInstanceCommandOutput,
|
|
2642
|
-
|
|
2782
|
+
| Cause.TimeoutException
|
|
2783
|
+
| SdkError
|
|
2784
|
+
| DBInstanceNotFoundFaultError
|
|
2785
|
+
| DBInstanceRoleNotFoundFaultError
|
|
2786
|
+
| InvalidDBInstanceStateFaultError
|
|
2643
2787
|
>;
|
|
2644
2788
|
|
|
2645
2789
|
/**
|
|
@@ -2650,7 +2794,7 @@ interface RDSService$ {
|
|
|
2650
2794
|
options?: HttpHandlerOptions,
|
|
2651
2795
|
): Effect.Effect<
|
|
2652
2796
|
RemoveSourceIdentifierFromSubscriptionCommandOutput,
|
|
2653
|
-
SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
2797
|
+
Cause.TimeoutException | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
2654
2798
|
>;
|
|
2655
2799
|
|
|
2656
2800
|
/**
|
|
@@ -2661,6 +2805,7 @@ interface RDSService$ {
|
|
|
2661
2805
|
options?: HttpHandlerOptions,
|
|
2662
2806
|
): Effect.Effect<
|
|
2663
2807
|
RemoveTagsFromResourceCommandOutput,
|
|
2808
|
+
| Cause.TimeoutException
|
|
2664
2809
|
| SdkError
|
|
2665
2810
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2666
2811
|
| DBClusterNotFoundFaultError
|
|
@@ -2681,7 +2826,7 @@ interface RDSService$ {
|
|
|
2681
2826
|
options?: HttpHandlerOptions,
|
|
2682
2827
|
): Effect.Effect<
|
|
2683
2828
|
ResetDBClusterParameterGroupCommandOutput,
|
|
2684
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2829
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2685
2830
|
>;
|
|
2686
2831
|
|
|
2687
2832
|
/**
|
|
@@ -2692,7 +2837,7 @@ interface RDSService$ {
|
|
|
2692
2837
|
options?: HttpHandlerOptions,
|
|
2693
2838
|
): Effect.Effect<
|
|
2694
2839
|
ResetDBParameterGroupCommandOutput,
|
|
2695
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2840
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2696
2841
|
>;
|
|
2697
2842
|
|
|
2698
2843
|
/**
|
|
@@ -2703,6 +2848,7 @@ interface RDSService$ {
|
|
|
2703
2848
|
options?: HttpHandlerOptions,
|
|
2704
2849
|
): Effect.Effect<
|
|
2705
2850
|
RestoreDBClusterFromS3CommandOutput,
|
|
2851
|
+
| Cause.TimeoutException
|
|
2706
2852
|
| SdkError
|
|
2707
2853
|
| DBClusterAlreadyExistsFaultError
|
|
2708
2854
|
| DBClusterNotFoundFaultError
|
|
@@ -2729,6 +2875,7 @@ interface RDSService$ {
|
|
|
2729
2875
|
options?: HttpHandlerOptions,
|
|
2730
2876
|
): Effect.Effect<
|
|
2731
2877
|
RestoreDBClusterFromSnapshotCommandOutput,
|
|
2878
|
+
| Cause.TimeoutException
|
|
2732
2879
|
| SdkError
|
|
2733
2880
|
| DBClusterAlreadyExistsFaultError
|
|
2734
2881
|
| DBClusterParameterGroupNotFoundFaultError
|
|
@@ -2760,6 +2907,7 @@ interface RDSService$ {
|
|
|
2760
2907
|
options?: HttpHandlerOptions,
|
|
2761
2908
|
): Effect.Effect<
|
|
2762
2909
|
RestoreDBClusterToPointInTimeCommandOutput,
|
|
2910
|
+
| Cause.TimeoutException
|
|
2763
2911
|
| SdkError
|
|
2764
2912
|
| DBClusterAlreadyExistsFaultError
|
|
2765
2913
|
| DBClusterAutomatedBackupNotFoundFaultError
|
|
@@ -2791,6 +2939,7 @@ interface RDSService$ {
|
|
|
2791
2939
|
options?: HttpHandlerOptions,
|
|
2792
2940
|
): Effect.Effect<
|
|
2793
2941
|
RestoreDBInstanceFromDBSnapshotCommandOutput,
|
|
2942
|
+
| Cause.TimeoutException
|
|
2794
2943
|
| SdkError
|
|
2795
2944
|
| AuthorizationNotFoundFaultError
|
|
2796
2945
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2826,6 +2975,7 @@ interface RDSService$ {
|
|
|
2826
2975
|
options?: HttpHandlerOptions,
|
|
2827
2976
|
): Effect.Effect<
|
|
2828
2977
|
RestoreDBInstanceFromS3CommandOutput,
|
|
2978
|
+
| Cause.TimeoutException
|
|
2829
2979
|
| SdkError
|
|
2830
2980
|
| AuthorizationNotFoundFaultError
|
|
2831
2981
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2856,6 +3006,7 @@ interface RDSService$ {
|
|
|
2856
3006
|
options?: HttpHandlerOptions,
|
|
2857
3007
|
): Effect.Effect<
|
|
2858
3008
|
RestoreDBInstanceToPointInTimeCommandOutput,
|
|
3009
|
+
| Cause.TimeoutException
|
|
2859
3010
|
| SdkError
|
|
2860
3011
|
| AuthorizationNotFoundFaultError
|
|
2861
3012
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2892,6 +3043,7 @@ interface RDSService$ {
|
|
|
2892
3043
|
options?: HttpHandlerOptions,
|
|
2893
3044
|
): Effect.Effect<
|
|
2894
3045
|
RevokeDBSecurityGroupIngressCommandOutput,
|
|
3046
|
+
| Cause.TimeoutException
|
|
2895
3047
|
| SdkError
|
|
2896
3048
|
| AuthorizationNotFoundFaultError
|
|
2897
3049
|
| DBSecurityGroupNotFoundFaultError
|
|
@@ -2906,6 +3058,7 @@ interface RDSService$ {
|
|
|
2906
3058
|
options?: HttpHandlerOptions,
|
|
2907
3059
|
): Effect.Effect<
|
|
2908
3060
|
StartActivityStreamCommandOutput,
|
|
3061
|
+
| Cause.TimeoutException
|
|
2909
3062
|
| SdkError
|
|
2910
3063
|
| DBClusterNotFoundFaultError
|
|
2911
3064
|
| DBInstanceNotFoundFaultError
|
|
@@ -2923,7 +3076,11 @@ interface RDSService$ {
|
|
|
2923
3076
|
options?: HttpHandlerOptions,
|
|
2924
3077
|
): Effect.Effect<
|
|
2925
3078
|
StartDBClusterCommandOutput,
|
|
2926
|
-
|
|
3079
|
+
| Cause.TimeoutException
|
|
3080
|
+
| SdkError
|
|
3081
|
+
| DBClusterNotFoundFaultError
|
|
3082
|
+
| InvalidDBClusterStateFaultError
|
|
3083
|
+
| InvalidDBInstanceStateFaultError
|
|
2927
3084
|
>;
|
|
2928
3085
|
|
|
2929
3086
|
/**
|
|
@@ -2934,6 +3091,7 @@ interface RDSService$ {
|
|
|
2934
3091
|
options?: HttpHandlerOptions,
|
|
2935
3092
|
): Effect.Effect<
|
|
2936
3093
|
StartDBInstanceCommandOutput,
|
|
3094
|
+
| Cause.TimeoutException
|
|
2937
3095
|
| SdkError
|
|
2938
3096
|
| AuthorizationNotFoundFaultError
|
|
2939
3097
|
| DBClusterNotFoundFaultError
|
|
@@ -2956,6 +3114,7 @@ interface RDSService$ {
|
|
|
2956
3114
|
options?: HttpHandlerOptions,
|
|
2957
3115
|
): Effect.Effect<
|
|
2958
3116
|
StartDBInstanceAutomatedBackupsReplicationCommandOutput,
|
|
3117
|
+
| Cause.TimeoutException
|
|
2959
3118
|
| SdkError
|
|
2960
3119
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
2961
3120
|
| DBInstanceNotFoundFaultError
|
|
@@ -2972,6 +3131,7 @@ interface RDSService$ {
|
|
|
2972
3131
|
options?: HttpHandlerOptions,
|
|
2973
3132
|
): Effect.Effect<
|
|
2974
3133
|
StartExportTaskCommandOutput,
|
|
3134
|
+
| Cause.TimeoutException
|
|
2975
3135
|
| SdkError
|
|
2976
3136
|
| DBClusterNotFoundFaultError
|
|
2977
3137
|
| DBClusterSnapshotNotFoundFaultError
|
|
@@ -2993,6 +3153,7 @@ interface RDSService$ {
|
|
|
2993
3153
|
options?: HttpHandlerOptions,
|
|
2994
3154
|
): Effect.Effect<
|
|
2995
3155
|
StopActivityStreamCommandOutput,
|
|
3156
|
+
| Cause.TimeoutException
|
|
2996
3157
|
| SdkError
|
|
2997
3158
|
| DBClusterNotFoundFaultError
|
|
2998
3159
|
| DBInstanceNotFoundFaultError
|
|
@@ -3009,7 +3170,11 @@ interface RDSService$ {
|
|
|
3009
3170
|
options?: HttpHandlerOptions,
|
|
3010
3171
|
): Effect.Effect<
|
|
3011
3172
|
StopDBClusterCommandOutput,
|
|
3012
|
-
|
|
3173
|
+
| Cause.TimeoutException
|
|
3174
|
+
| SdkError
|
|
3175
|
+
| DBClusterNotFoundFaultError
|
|
3176
|
+
| InvalidDBClusterStateFaultError
|
|
3177
|
+
| InvalidDBInstanceStateFaultError
|
|
3013
3178
|
>;
|
|
3014
3179
|
|
|
3015
3180
|
/**
|
|
@@ -3020,6 +3185,7 @@ interface RDSService$ {
|
|
|
3020
3185
|
options?: HttpHandlerOptions,
|
|
3021
3186
|
): Effect.Effect<
|
|
3022
3187
|
StopDBInstanceCommandOutput,
|
|
3188
|
+
| Cause.TimeoutException
|
|
3023
3189
|
| SdkError
|
|
3024
3190
|
| DBInstanceNotFoundFaultError
|
|
3025
3191
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -3036,7 +3202,7 @@ interface RDSService$ {
|
|
|
3036
3202
|
options?: HttpHandlerOptions,
|
|
3037
3203
|
): Effect.Effect<
|
|
3038
3204
|
StopDBInstanceAutomatedBackupsReplicationCommandOutput,
|
|
3039
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3205
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3040
3206
|
>;
|
|
3041
3207
|
|
|
3042
3208
|
/**
|
|
@@ -3047,7 +3213,10 @@ interface RDSService$ {
|
|
|
3047
3213
|
options?: HttpHandlerOptions,
|
|
3048
3214
|
): Effect.Effect<
|
|
3049
3215
|
SwitchoverBlueGreenDeploymentCommandOutput,
|
|
3050
|
-
|
|
3216
|
+
| Cause.TimeoutException
|
|
3217
|
+
| SdkError
|
|
3218
|
+
| BlueGreenDeploymentNotFoundFaultError
|
|
3219
|
+
| InvalidBlueGreenDeploymentStateFaultError
|
|
3051
3220
|
>;
|
|
3052
3221
|
|
|
3053
3222
|
/**
|
|
@@ -3058,6 +3227,7 @@ interface RDSService$ {
|
|
|
3058
3227
|
options?: HttpHandlerOptions,
|
|
3059
3228
|
): Effect.Effect<
|
|
3060
3229
|
SwitchoverGlobalClusterCommandOutput,
|
|
3230
|
+
| Cause.TimeoutException
|
|
3061
3231
|
| SdkError
|
|
3062
3232
|
| DBClusterNotFoundFaultError
|
|
3063
3233
|
| GlobalClusterNotFoundFaultError
|
|
@@ -3073,7 +3243,7 @@ interface RDSService$ {
|
|
|
3073
3243
|
options?: HttpHandlerOptions,
|
|
3074
3244
|
): Effect.Effect<
|
|
3075
3245
|
SwitchoverReadReplicaCommandOutput,
|
|
3076
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3246
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3077
3247
|
>;
|
|
3078
3248
|
}
|
|
3079
3249
|
|
|
@@ -3084,7 +3254,7 @@ interface RDSService$ {
|
|
|
3084
3254
|
export const makeRDSService = Effect.gen(function*() {
|
|
3085
3255
|
const client = yield* Instance.RDSClientInstance;
|
|
3086
3256
|
|
|
3087
|
-
return Service.fromClientAndCommands<RDSService$>(
|
|
3257
|
+
return yield* Service.fromClientAndCommands<RDSService$>(
|
|
3088
3258
|
client,
|
|
3089
3259
|
commands,
|
|
3090
3260
|
{
|