@effect-aws/client-rds 1.9.3 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/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 +272 -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,6 +1389,7 @@ 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
|
|
@@ -1362,7 +1405,10 @@ interface RDSService$ {
|
|
|
1362
1405
|
options?: HttpHandlerOptions,
|
|
1363
1406
|
): Effect.Effect<
|
|
1364
1407
|
DeleteBlueGreenDeploymentCommandOutput,
|
|
1365
|
-
|
|
1408
|
+
| Cause.TimeoutException
|
|
1409
|
+
| SdkError
|
|
1410
|
+
| BlueGreenDeploymentNotFoundFaultError
|
|
1411
|
+
| InvalidBlueGreenDeploymentStateFaultError
|
|
1366
1412
|
>;
|
|
1367
1413
|
|
|
1368
1414
|
/**
|
|
@@ -1373,7 +1419,10 @@ interface RDSService$ {
|
|
|
1373
1419
|
options?: HttpHandlerOptions,
|
|
1374
1420
|
): Effect.Effect<
|
|
1375
1421
|
DeleteCustomDBEngineVersionCommandOutput,
|
|
1376
|
-
|
|
1422
|
+
| Cause.TimeoutException
|
|
1423
|
+
| SdkError
|
|
1424
|
+
| CustomDBEngineVersionNotFoundFaultError
|
|
1425
|
+
| InvalidCustomDBEngineVersionStateFaultError
|
|
1377
1426
|
>;
|
|
1378
1427
|
|
|
1379
1428
|
/**
|
|
@@ -1384,6 +1433,7 @@ interface RDSService$ {
|
|
|
1384
1433
|
options?: HttpHandlerOptions,
|
|
1385
1434
|
): Effect.Effect<
|
|
1386
1435
|
DeleteDBClusterCommandOutput,
|
|
1436
|
+
| Cause.TimeoutException
|
|
1387
1437
|
| SdkError
|
|
1388
1438
|
| DBClusterAutomatedBackupQuotaExceededFaultError
|
|
1389
1439
|
| DBClusterNotFoundFaultError
|
|
@@ -1401,7 +1451,10 @@ interface RDSService$ {
|
|
|
1401
1451
|
options?: HttpHandlerOptions,
|
|
1402
1452
|
): Effect.Effect<
|
|
1403
1453
|
DeleteDBClusterAutomatedBackupCommandOutput,
|
|
1404
|
-
|
|
1454
|
+
| Cause.TimeoutException
|
|
1455
|
+
| SdkError
|
|
1456
|
+
| DBClusterAutomatedBackupNotFoundFaultError
|
|
1457
|
+
| InvalidDBClusterAutomatedBackupStateFaultError
|
|
1405
1458
|
>;
|
|
1406
1459
|
|
|
1407
1460
|
/**
|
|
@@ -1412,6 +1465,7 @@ interface RDSService$ {
|
|
|
1412
1465
|
options?: HttpHandlerOptions,
|
|
1413
1466
|
): Effect.Effect<
|
|
1414
1467
|
DeleteDBClusterEndpointCommandOutput,
|
|
1468
|
+
| Cause.TimeoutException
|
|
1415
1469
|
| SdkError
|
|
1416
1470
|
| DBClusterEndpointNotFoundFaultError
|
|
1417
1471
|
| InvalidDBClusterEndpointStateFaultError
|
|
@@ -1426,7 +1480,7 @@ interface RDSService$ {
|
|
|
1426
1480
|
options?: HttpHandlerOptions,
|
|
1427
1481
|
): Effect.Effect<
|
|
1428
1482
|
DeleteDBClusterParameterGroupCommandOutput,
|
|
1429
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1483
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1430
1484
|
>;
|
|
1431
1485
|
|
|
1432
1486
|
/**
|
|
@@ -1437,7 +1491,7 @@ interface RDSService$ {
|
|
|
1437
1491
|
options?: HttpHandlerOptions,
|
|
1438
1492
|
): Effect.Effect<
|
|
1439
1493
|
DeleteDBClusterSnapshotCommandOutput,
|
|
1440
|
-
SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
|
|
1494
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
|
|
1441
1495
|
>;
|
|
1442
1496
|
|
|
1443
1497
|
/**
|
|
@@ -1448,6 +1502,7 @@ interface RDSService$ {
|
|
|
1448
1502
|
options?: HttpHandlerOptions,
|
|
1449
1503
|
): Effect.Effect<
|
|
1450
1504
|
DeleteDBInstanceCommandOutput,
|
|
1505
|
+
| Cause.TimeoutException
|
|
1451
1506
|
| SdkError
|
|
1452
1507
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
1453
1508
|
| DBInstanceNotFoundFaultError
|
|
@@ -1465,7 +1520,10 @@ interface RDSService$ {
|
|
|
1465
1520
|
options?: HttpHandlerOptions,
|
|
1466
1521
|
): Effect.Effect<
|
|
1467
1522
|
DeleteDBInstanceAutomatedBackupCommandOutput,
|
|
1468
|
-
|
|
1523
|
+
| Cause.TimeoutException
|
|
1524
|
+
| SdkError
|
|
1525
|
+
| DBInstanceAutomatedBackupNotFoundFaultError
|
|
1526
|
+
| InvalidDBInstanceAutomatedBackupStateFaultError
|
|
1469
1527
|
>;
|
|
1470
1528
|
|
|
1471
1529
|
/**
|
|
@@ -1476,7 +1534,7 @@ interface RDSService$ {
|
|
|
1476
1534
|
options?: HttpHandlerOptions,
|
|
1477
1535
|
): Effect.Effect<
|
|
1478
1536
|
DeleteDBParameterGroupCommandOutput,
|
|
1479
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1537
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1480
1538
|
>;
|
|
1481
1539
|
|
|
1482
1540
|
/**
|
|
@@ -1487,7 +1545,7 @@ interface RDSService$ {
|
|
|
1487
1545
|
options?: HttpHandlerOptions,
|
|
1488
1546
|
): Effect.Effect<
|
|
1489
1547
|
DeleteDBProxyCommandOutput,
|
|
1490
|
-
SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
|
|
1548
|
+
Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
|
|
1491
1549
|
>;
|
|
1492
1550
|
|
|
1493
1551
|
/**
|
|
@@ -1498,7 +1556,7 @@ interface RDSService$ {
|
|
|
1498
1556
|
options?: HttpHandlerOptions,
|
|
1499
1557
|
): Effect.Effect<
|
|
1500
1558
|
DeleteDBProxyEndpointCommandOutput,
|
|
1501
|
-
SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
|
|
1559
|
+
Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
|
|
1502
1560
|
>;
|
|
1503
1561
|
|
|
1504
1562
|
/**
|
|
@@ -1509,7 +1567,7 @@ interface RDSService$ {
|
|
|
1509
1567
|
options?: HttpHandlerOptions,
|
|
1510
1568
|
): Effect.Effect<
|
|
1511
1569
|
DeleteDBSecurityGroupCommandOutput,
|
|
1512
|
-
SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
|
|
1570
|
+
Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
|
|
1513
1571
|
>;
|
|
1514
1572
|
|
|
1515
1573
|
/**
|
|
@@ -1520,7 +1578,11 @@ interface RDSService$ {
|
|
|
1520
1578
|
options?: HttpHandlerOptions,
|
|
1521
1579
|
): Effect.Effect<
|
|
1522
1580
|
DeleteDBShardGroupCommandOutput,
|
|
1523
|
-
|
|
1581
|
+
| Cause.TimeoutException
|
|
1582
|
+
| SdkError
|
|
1583
|
+
| DBShardGroupNotFoundFaultError
|
|
1584
|
+
| InvalidDBClusterStateFaultError
|
|
1585
|
+
| InvalidDBShardGroupStateFaultError
|
|
1524
1586
|
>;
|
|
1525
1587
|
|
|
1526
1588
|
/**
|
|
@@ -1531,7 +1593,7 @@ interface RDSService$ {
|
|
|
1531
1593
|
options?: HttpHandlerOptions,
|
|
1532
1594
|
): Effect.Effect<
|
|
1533
1595
|
DeleteDBSnapshotCommandOutput,
|
|
1534
|
-
SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
|
|
1596
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
|
|
1535
1597
|
>;
|
|
1536
1598
|
|
|
1537
1599
|
/**
|
|
@@ -1542,7 +1604,11 @@ interface RDSService$ {
|
|
|
1542
1604
|
options?: HttpHandlerOptions,
|
|
1543
1605
|
): Effect.Effect<
|
|
1544
1606
|
DeleteDBSubnetGroupCommandOutput,
|
|
1545
|
-
|
|
1607
|
+
| Cause.TimeoutException
|
|
1608
|
+
| SdkError
|
|
1609
|
+
| DBSubnetGroupNotFoundFaultError
|
|
1610
|
+
| InvalidDBSubnetGroupStateFaultError
|
|
1611
|
+
| InvalidDBSubnetStateFaultError
|
|
1546
1612
|
>;
|
|
1547
1613
|
|
|
1548
1614
|
/**
|
|
@@ -1553,7 +1619,7 @@ interface RDSService$ {
|
|
|
1553
1619
|
options?: HttpHandlerOptions,
|
|
1554
1620
|
): Effect.Effect<
|
|
1555
1621
|
DeleteEventSubscriptionCommandOutput,
|
|
1556
|
-
SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
|
|
1622
|
+
Cause.TimeoutException | SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
|
|
1557
1623
|
>;
|
|
1558
1624
|
|
|
1559
1625
|
/**
|
|
@@ -1564,7 +1630,7 @@ interface RDSService$ {
|
|
|
1564
1630
|
options?: HttpHandlerOptions,
|
|
1565
1631
|
): Effect.Effect<
|
|
1566
1632
|
DeleteGlobalClusterCommandOutput,
|
|
1567
|
-
SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
|
|
1633
|
+
Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
|
|
1568
1634
|
>;
|
|
1569
1635
|
|
|
1570
1636
|
/**
|
|
@@ -1575,6 +1641,7 @@ interface RDSService$ {
|
|
|
1575
1641
|
options?: HttpHandlerOptions,
|
|
1576
1642
|
): Effect.Effect<
|
|
1577
1643
|
DeleteIntegrationCommandOutput,
|
|
1644
|
+
| Cause.TimeoutException
|
|
1578
1645
|
| SdkError
|
|
1579
1646
|
| IntegrationConflictOperationFaultError
|
|
1580
1647
|
| IntegrationNotFoundFaultError
|
|
@@ -1589,7 +1656,7 @@ interface RDSService$ {
|
|
|
1589
1656
|
options?: HttpHandlerOptions,
|
|
1590
1657
|
): Effect.Effect<
|
|
1591
1658
|
DeleteOptionGroupCommandOutput,
|
|
1592
|
-
SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
1659
|
+
Cause.TimeoutException | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
1593
1660
|
>;
|
|
1594
1661
|
|
|
1595
1662
|
/**
|
|
@@ -1600,7 +1667,11 @@ interface RDSService$ {
|
|
|
1600
1667
|
options?: HttpHandlerOptions,
|
|
1601
1668
|
): Effect.Effect<
|
|
1602
1669
|
DeleteTenantDatabaseCommandOutput,
|
|
1603
|
-
|
|
1670
|
+
| Cause.TimeoutException
|
|
1671
|
+
| SdkError
|
|
1672
|
+
| DBInstanceNotFoundFaultError
|
|
1673
|
+
| InvalidDBInstanceStateFaultError
|
|
1674
|
+
| TenantDatabaseNotFoundFaultError
|
|
1604
1675
|
>;
|
|
1605
1676
|
|
|
1606
1677
|
/**
|
|
@@ -1611,6 +1682,7 @@ interface RDSService$ {
|
|
|
1611
1682
|
options?: HttpHandlerOptions,
|
|
1612
1683
|
): Effect.Effect<
|
|
1613
1684
|
DeregisterDBProxyTargetsCommandOutput,
|
|
1685
|
+
| Cause.TimeoutException
|
|
1614
1686
|
| SdkError
|
|
1615
1687
|
| DBProxyNotFoundFaultError
|
|
1616
1688
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1626,7 +1698,7 @@ interface RDSService$ {
|
|
|
1626
1698
|
options?: HttpHandlerOptions,
|
|
1627
1699
|
): Effect.Effect<
|
|
1628
1700
|
DescribeAccountAttributesCommandOutput,
|
|
1629
|
-
SdkError
|
|
1701
|
+
Cause.TimeoutException | SdkError
|
|
1630
1702
|
>;
|
|
1631
1703
|
|
|
1632
1704
|
/**
|
|
@@ -1637,7 +1709,7 @@ interface RDSService$ {
|
|
|
1637
1709
|
options?: HttpHandlerOptions,
|
|
1638
1710
|
): Effect.Effect<
|
|
1639
1711
|
DescribeBlueGreenDeploymentsCommandOutput,
|
|
1640
|
-
SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1712
|
+
Cause.TimeoutException | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1641
1713
|
>;
|
|
1642
1714
|
|
|
1643
1715
|
/**
|
|
@@ -1648,7 +1720,7 @@ interface RDSService$ {
|
|
|
1648
1720
|
options?: HttpHandlerOptions,
|
|
1649
1721
|
): Effect.Effect<
|
|
1650
1722
|
DescribeCertificatesCommandOutput,
|
|
1651
|
-
SdkError | CertificateNotFoundFaultError
|
|
1723
|
+
Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
|
|
1652
1724
|
>;
|
|
1653
1725
|
|
|
1654
1726
|
/**
|
|
@@ -1659,7 +1731,7 @@ interface RDSService$ {
|
|
|
1659
1731
|
options?: HttpHandlerOptions,
|
|
1660
1732
|
): Effect.Effect<
|
|
1661
1733
|
DescribeDBClusterAutomatedBackupsCommandOutput,
|
|
1662
|
-
SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1734
|
+
Cause.TimeoutException | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1663
1735
|
>;
|
|
1664
1736
|
|
|
1665
1737
|
/**
|
|
@@ -1670,7 +1742,7 @@ interface RDSService$ {
|
|
|
1670
1742
|
options?: HttpHandlerOptions,
|
|
1671
1743
|
): Effect.Effect<
|
|
1672
1744
|
DescribeDBClusterBacktracksCommandOutput,
|
|
1673
|
-
SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1745
|
+
Cause.TimeoutException | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1674
1746
|
>;
|
|
1675
1747
|
|
|
1676
1748
|
/**
|
|
@@ -1681,7 +1753,7 @@ interface RDSService$ {
|
|
|
1681
1753
|
options?: HttpHandlerOptions,
|
|
1682
1754
|
): Effect.Effect<
|
|
1683
1755
|
DescribeDBClusterEndpointsCommandOutput,
|
|
1684
|
-
SdkError | DBClusterNotFoundFaultError
|
|
1756
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1685
1757
|
>;
|
|
1686
1758
|
|
|
1687
1759
|
/**
|
|
@@ -1692,7 +1764,7 @@ interface RDSService$ {
|
|
|
1692
1764
|
options?: HttpHandlerOptions,
|
|
1693
1765
|
): Effect.Effect<
|
|
1694
1766
|
DescribeDBClusterParameterGroupsCommandOutput,
|
|
1695
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1767
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1696
1768
|
>;
|
|
1697
1769
|
|
|
1698
1770
|
/**
|
|
@@ -1703,7 +1775,7 @@ interface RDSService$ {
|
|
|
1703
1775
|
options?: HttpHandlerOptions,
|
|
1704
1776
|
): Effect.Effect<
|
|
1705
1777
|
DescribeDBClusterParametersCommandOutput,
|
|
1706
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1778
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1707
1779
|
>;
|
|
1708
1780
|
|
|
1709
1781
|
/**
|
|
@@ -1714,7 +1786,7 @@ interface RDSService$ {
|
|
|
1714
1786
|
options?: HttpHandlerOptions,
|
|
1715
1787
|
): Effect.Effect<
|
|
1716
1788
|
DescribeDBClusterSnapshotAttributesCommandOutput,
|
|
1717
|
-
SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1789
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1718
1790
|
>;
|
|
1719
1791
|
|
|
1720
1792
|
/**
|
|
@@ -1725,7 +1797,7 @@ interface RDSService$ {
|
|
|
1725
1797
|
options?: HttpHandlerOptions,
|
|
1726
1798
|
): Effect.Effect<
|
|
1727
1799
|
DescribeDBClusterSnapshotsCommandOutput,
|
|
1728
|
-
SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1800
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1729
1801
|
>;
|
|
1730
1802
|
|
|
1731
1803
|
/**
|
|
@@ -1736,7 +1808,7 @@ interface RDSService$ {
|
|
|
1736
1808
|
options?: HttpHandlerOptions,
|
|
1737
1809
|
): Effect.Effect<
|
|
1738
1810
|
DescribeDBClustersCommandOutput,
|
|
1739
|
-
SdkError | DBClusterNotFoundFaultError
|
|
1811
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1740
1812
|
>;
|
|
1741
1813
|
|
|
1742
1814
|
/**
|
|
@@ -1747,7 +1819,7 @@ interface RDSService$ {
|
|
|
1747
1819
|
options?: HttpHandlerOptions,
|
|
1748
1820
|
): Effect.Effect<
|
|
1749
1821
|
DescribeDBEngineVersionsCommandOutput,
|
|
1750
|
-
SdkError
|
|
1822
|
+
Cause.TimeoutException | SdkError
|
|
1751
1823
|
>;
|
|
1752
1824
|
|
|
1753
1825
|
/**
|
|
@@ -1758,7 +1830,7 @@ interface RDSService$ {
|
|
|
1758
1830
|
options?: HttpHandlerOptions,
|
|
1759
1831
|
): Effect.Effect<
|
|
1760
1832
|
DescribeDBInstanceAutomatedBackupsCommandOutput,
|
|
1761
|
-
SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1833
|
+
Cause.TimeoutException | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1762
1834
|
>;
|
|
1763
1835
|
|
|
1764
1836
|
/**
|
|
@@ -1769,7 +1841,7 @@ interface RDSService$ {
|
|
|
1769
1841
|
options?: HttpHandlerOptions,
|
|
1770
1842
|
): Effect.Effect<
|
|
1771
1843
|
DescribeDBInstancesCommandOutput,
|
|
1772
|
-
SdkError | DBInstanceNotFoundFaultError
|
|
1844
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
1773
1845
|
>;
|
|
1774
1846
|
|
|
1775
1847
|
/**
|
|
@@ -1780,7 +1852,7 @@ interface RDSService$ {
|
|
|
1780
1852
|
options?: HttpHandlerOptions,
|
|
1781
1853
|
): Effect.Effect<
|
|
1782
1854
|
DescribeDBLogFilesCommandOutput,
|
|
1783
|
-
SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1855
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1784
1856
|
>;
|
|
1785
1857
|
|
|
1786
1858
|
/**
|
|
@@ -1791,7 +1863,7 @@ interface RDSService$ {
|
|
|
1791
1863
|
options?: HttpHandlerOptions,
|
|
1792
1864
|
): Effect.Effect<
|
|
1793
1865
|
DescribeDBParameterGroupsCommandOutput,
|
|
1794
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1866
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1795
1867
|
>;
|
|
1796
1868
|
|
|
1797
1869
|
/**
|
|
@@ -1802,7 +1874,7 @@ interface RDSService$ {
|
|
|
1802
1874
|
options?: HttpHandlerOptions,
|
|
1803
1875
|
): Effect.Effect<
|
|
1804
1876
|
DescribeDBParametersCommandOutput,
|
|
1805
|
-
SdkError | DBParameterGroupNotFoundFaultError
|
|
1877
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1806
1878
|
>;
|
|
1807
1879
|
|
|
1808
1880
|
/**
|
|
@@ -1813,7 +1885,7 @@ interface RDSService$ {
|
|
|
1813
1885
|
options?: HttpHandlerOptions,
|
|
1814
1886
|
): Effect.Effect<
|
|
1815
1887
|
DescribeDBProxiesCommandOutput,
|
|
1816
|
-
SdkError | DBProxyNotFoundFaultError
|
|
1888
|
+
Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError
|
|
1817
1889
|
>;
|
|
1818
1890
|
|
|
1819
1891
|
/**
|
|
@@ -1824,7 +1896,7 @@ interface RDSService$ {
|
|
|
1824
1896
|
options?: HttpHandlerOptions,
|
|
1825
1897
|
): Effect.Effect<
|
|
1826
1898
|
DescribeDBProxyEndpointsCommandOutput,
|
|
1827
|
-
SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1899
|
+
Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1828
1900
|
>;
|
|
1829
1901
|
|
|
1830
1902
|
/**
|
|
@@ -1835,7 +1907,11 @@ interface RDSService$ {
|
|
|
1835
1907
|
options?: HttpHandlerOptions,
|
|
1836
1908
|
): Effect.Effect<
|
|
1837
1909
|
DescribeDBProxyTargetGroupsCommandOutput,
|
|
1838
|
-
|
|
1910
|
+
| Cause.TimeoutException
|
|
1911
|
+
| SdkError
|
|
1912
|
+
| DBProxyNotFoundFaultError
|
|
1913
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
1914
|
+
| InvalidDBProxyStateFaultError
|
|
1839
1915
|
>;
|
|
1840
1916
|
|
|
1841
1917
|
/**
|
|
@@ -1846,6 +1922,7 @@ interface RDSService$ {
|
|
|
1846
1922
|
options?: HttpHandlerOptions,
|
|
1847
1923
|
): Effect.Effect<
|
|
1848
1924
|
DescribeDBProxyTargetsCommandOutput,
|
|
1925
|
+
| Cause.TimeoutException
|
|
1849
1926
|
| SdkError
|
|
1850
1927
|
| DBProxyNotFoundFaultError
|
|
1851
1928
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1861,7 +1938,7 @@ interface RDSService$ {
|
|
|
1861
1938
|
options?: HttpHandlerOptions,
|
|
1862
1939
|
): Effect.Effect<
|
|
1863
1940
|
DescribeDBRecommendationsCommandOutput,
|
|
1864
|
-
SdkError
|
|
1941
|
+
Cause.TimeoutException | SdkError
|
|
1865
1942
|
>;
|
|
1866
1943
|
|
|
1867
1944
|
/**
|
|
@@ -1872,7 +1949,7 @@ interface RDSService$ {
|
|
|
1872
1949
|
options?: HttpHandlerOptions,
|
|
1873
1950
|
): Effect.Effect<
|
|
1874
1951
|
DescribeDBSecurityGroupsCommandOutput,
|
|
1875
|
-
SdkError | DBSecurityGroupNotFoundFaultError
|
|
1952
|
+
Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError
|
|
1876
1953
|
>;
|
|
1877
1954
|
|
|
1878
1955
|
/**
|
|
@@ -1883,7 +1960,7 @@ interface RDSService$ {
|
|
|
1883
1960
|
options?: HttpHandlerOptions,
|
|
1884
1961
|
): Effect.Effect<
|
|
1885
1962
|
DescribeDBShardGroupsCommandOutput,
|
|
1886
|
-
SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
|
|
1963
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
|
|
1887
1964
|
>;
|
|
1888
1965
|
|
|
1889
1966
|
/**
|
|
@@ -1894,7 +1971,7 @@ interface RDSService$ {
|
|
|
1894
1971
|
options?: HttpHandlerOptions,
|
|
1895
1972
|
): Effect.Effect<
|
|
1896
1973
|
DescribeDBSnapshotAttributesCommandOutput,
|
|
1897
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
1974
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
1898
1975
|
>;
|
|
1899
1976
|
|
|
1900
1977
|
/**
|
|
@@ -1905,7 +1982,7 @@ interface RDSService$ {
|
|
|
1905
1982
|
options?: HttpHandlerOptions,
|
|
1906
1983
|
): Effect.Effect<
|
|
1907
1984
|
DescribeDBSnapshotTenantDatabasesCommandOutput,
|
|
1908
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
1985
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
1909
1986
|
>;
|
|
1910
1987
|
|
|
1911
1988
|
/**
|
|
@@ -1916,7 +1993,7 @@ interface RDSService$ {
|
|
|
1916
1993
|
options?: HttpHandlerOptions,
|
|
1917
1994
|
): Effect.Effect<
|
|
1918
1995
|
DescribeDBSnapshotsCommandOutput,
|
|
1919
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
1996
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
1920
1997
|
>;
|
|
1921
1998
|
|
|
1922
1999
|
/**
|
|
@@ -1927,7 +2004,7 @@ interface RDSService$ {
|
|
|
1927
2004
|
options?: HttpHandlerOptions,
|
|
1928
2005
|
): Effect.Effect<
|
|
1929
2006
|
DescribeDBSubnetGroupsCommandOutput,
|
|
1930
|
-
SdkError | DBSubnetGroupNotFoundFaultError
|
|
2007
|
+
Cause.TimeoutException | SdkError | DBSubnetGroupNotFoundFaultError
|
|
1931
2008
|
>;
|
|
1932
2009
|
|
|
1933
2010
|
/**
|
|
@@ -1938,7 +2015,7 @@ interface RDSService$ {
|
|
|
1938
2015
|
options?: HttpHandlerOptions,
|
|
1939
2016
|
): Effect.Effect<
|
|
1940
2017
|
DescribeEngineDefaultClusterParametersCommandOutput,
|
|
1941
|
-
SdkError
|
|
2018
|
+
Cause.TimeoutException | SdkError
|
|
1942
2019
|
>;
|
|
1943
2020
|
|
|
1944
2021
|
/**
|
|
@@ -1949,7 +2026,7 @@ interface RDSService$ {
|
|
|
1949
2026
|
options?: HttpHandlerOptions,
|
|
1950
2027
|
): Effect.Effect<
|
|
1951
2028
|
DescribeEngineDefaultParametersCommandOutput,
|
|
1952
|
-
SdkError
|
|
2029
|
+
Cause.TimeoutException | SdkError
|
|
1953
2030
|
>;
|
|
1954
2031
|
|
|
1955
2032
|
/**
|
|
@@ -1960,7 +2037,7 @@ interface RDSService$ {
|
|
|
1960
2037
|
options?: HttpHandlerOptions,
|
|
1961
2038
|
): Effect.Effect<
|
|
1962
2039
|
DescribeEventCategoriesCommandOutput,
|
|
1963
|
-
SdkError
|
|
2040
|
+
Cause.TimeoutException | SdkError
|
|
1964
2041
|
>;
|
|
1965
2042
|
|
|
1966
2043
|
/**
|
|
@@ -1971,7 +2048,7 @@ interface RDSService$ {
|
|
|
1971
2048
|
options?: HttpHandlerOptions,
|
|
1972
2049
|
): Effect.Effect<
|
|
1973
2050
|
DescribeEventSubscriptionsCommandOutput,
|
|
1974
|
-
SdkError | SubscriptionNotFoundFaultError
|
|
2051
|
+
Cause.TimeoutException | SdkError | SubscriptionNotFoundFaultError
|
|
1975
2052
|
>;
|
|
1976
2053
|
|
|
1977
2054
|
/**
|
|
@@ -1982,7 +2059,7 @@ interface RDSService$ {
|
|
|
1982
2059
|
options?: HttpHandlerOptions,
|
|
1983
2060
|
): Effect.Effect<
|
|
1984
2061
|
DescribeEventsCommandOutput,
|
|
1985
|
-
SdkError
|
|
2062
|
+
Cause.TimeoutException | SdkError
|
|
1986
2063
|
>;
|
|
1987
2064
|
|
|
1988
2065
|
/**
|
|
@@ -1993,7 +2070,7 @@ interface RDSService$ {
|
|
|
1993
2070
|
options?: HttpHandlerOptions,
|
|
1994
2071
|
): Effect.Effect<
|
|
1995
2072
|
DescribeExportTasksCommandOutput,
|
|
1996
|
-
SdkError | ExportTaskNotFoundFaultError
|
|
2073
|
+
Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError
|
|
1997
2074
|
>;
|
|
1998
2075
|
|
|
1999
2076
|
/**
|
|
@@ -2004,7 +2081,7 @@ interface RDSService$ {
|
|
|
2004
2081
|
options?: HttpHandlerOptions,
|
|
2005
2082
|
): Effect.Effect<
|
|
2006
2083
|
DescribeGlobalClustersCommandOutput,
|
|
2007
|
-
SdkError | GlobalClusterNotFoundFaultError
|
|
2084
|
+
Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError
|
|
2008
2085
|
>;
|
|
2009
2086
|
|
|
2010
2087
|
/**
|
|
@@ -2015,7 +2092,7 @@ interface RDSService$ {
|
|
|
2015
2092
|
options?: HttpHandlerOptions,
|
|
2016
2093
|
): Effect.Effect<
|
|
2017
2094
|
DescribeIntegrationsCommandOutput,
|
|
2018
|
-
SdkError | IntegrationNotFoundFaultError
|
|
2095
|
+
Cause.TimeoutException | SdkError | IntegrationNotFoundFaultError
|
|
2019
2096
|
>;
|
|
2020
2097
|
|
|
2021
2098
|
/**
|
|
@@ -2026,7 +2103,7 @@ interface RDSService$ {
|
|
|
2026
2103
|
options?: HttpHandlerOptions,
|
|
2027
2104
|
): Effect.Effect<
|
|
2028
2105
|
DescribeOptionGroupOptionsCommandOutput,
|
|
2029
|
-
SdkError
|
|
2106
|
+
Cause.TimeoutException | SdkError
|
|
2030
2107
|
>;
|
|
2031
2108
|
|
|
2032
2109
|
/**
|
|
@@ -2037,7 +2114,7 @@ interface RDSService$ {
|
|
|
2037
2114
|
options?: HttpHandlerOptions,
|
|
2038
2115
|
): Effect.Effect<
|
|
2039
2116
|
DescribeOptionGroupsCommandOutput,
|
|
2040
|
-
SdkError | OptionGroupNotFoundFaultError
|
|
2117
|
+
Cause.TimeoutException | SdkError | OptionGroupNotFoundFaultError
|
|
2041
2118
|
>;
|
|
2042
2119
|
|
|
2043
2120
|
/**
|
|
@@ -2048,7 +2125,7 @@ interface RDSService$ {
|
|
|
2048
2125
|
options?: HttpHandlerOptions,
|
|
2049
2126
|
): Effect.Effect<
|
|
2050
2127
|
DescribeOrderableDBInstanceOptionsCommandOutput,
|
|
2051
|
-
SdkError
|
|
2128
|
+
Cause.TimeoutException | SdkError
|
|
2052
2129
|
>;
|
|
2053
2130
|
|
|
2054
2131
|
/**
|
|
@@ -2059,7 +2136,7 @@ interface RDSService$ {
|
|
|
2059
2136
|
options?: HttpHandlerOptions,
|
|
2060
2137
|
): Effect.Effect<
|
|
2061
2138
|
DescribePendingMaintenanceActionsCommandOutput,
|
|
2062
|
-
SdkError | ResourceNotFoundFaultError
|
|
2139
|
+
Cause.TimeoutException | SdkError | ResourceNotFoundFaultError
|
|
2063
2140
|
>;
|
|
2064
2141
|
|
|
2065
2142
|
/**
|
|
@@ -2070,7 +2147,7 @@ interface RDSService$ {
|
|
|
2070
2147
|
options?: HttpHandlerOptions,
|
|
2071
2148
|
): Effect.Effect<
|
|
2072
2149
|
DescribeReservedDBInstancesCommandOutput,
|
|
2073
|
-
SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2150
|
+
Cause.TimeoutException | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2074
2151
|
>;
|
|
2075
2152
|
|
|
2076
2153
|
/**
|
|
@@ -2081,7 +2158,7 @@ interface RDSService$ {
|
|
|
2081
2158
|
options?: HttpHandlerOptions,
|
|
2082
2159
|
): Effect.Effect<
|
|
2083
2160
|
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
2084
|
-
SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2161
|
+
Cause.TimeoutException | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2085
2162
|
>;
|
|
2086
2163
|
|
|
2087
2164
|
/**
|
|
@@ -2092,7 +2169,7 @@ interface RDSService$ {
|
|
|
2092
2169
|
options?: HttpHandlerOptions,
|
|
2093
2170
|
): Effect.Effect<
|
|
2094
2171
|
DescribeSourceRegionsCommandOutput,
|
|
2095
|
-
SdkError
|
|
2172
|
+
Cause.TimeoutException | SdkError
|
|
2096
2173
|
>;
|
|
2097
2174
|
|
|
2098
2175
|
/**
|
|
@@ -2103,7 +2180,7 @@ interface RDSService$ {
|
|
|
2103
2180
|
options?: HttpHandlerOptions,
|
|
2104
2181
|
): Effect.Effect<
|
|
2105
2182
|
DescribeTenantDatabasesCommandOutput,
|
|
2106
|
-
SdkError | DBInstanceNotFoundFaultError
|
|
2183
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
2107
2184
|
>;
|
|
2108
2185
|
|
|
2109
2186
|
/**
|
|
@@ -2114,7 +2191,7 @@ interface RDSService$ {
|
|
|
2114
2191
|
options?: HttpHandlerOptions,
|
|
2115
2192
|
): Effect.Effect<
|
|
2116
2193
|
DescribeValidDBInstanceModificationsCommandOutput,
|
|
2117
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2194
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2118
2195
|
>;
|
|
2119
2196
|
|
|
2120
2197
|
/**
|
|
@@ -2125,7 +2202,7 @@ interface RDSService$ {
|
|
|
2125
2202
|
options?: HttpHandlerOptions,
|
|
2126
2203
|
): Effect.Effect<
|
|
2127
2204
|
DisableHttpEndpointCommandOutput,
|
|
2128
|
-
SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2205
|
+
Cause.TimeoutException | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2129
2206
|
>;
|
|
2130
2207
|
|
|
2131
2208
|
/**
|
|
@@ -2136,7 +2213,11 @@ interface RDSService$ {
|
|
|
2136
2213
|
options?: HttpHandlerOptions,
|
|
2137
2214
|
): Effect.Effect<
|
|
2138
2215
|
DownloadDBLogFilePortionCommandOutput,
|
|
2139
|
-
|
|
2216
|
+
| Cause.TimeoutException
|
|
2217
|
+
| SdkError
|
|
2218
|
+
| DBInstanceNotFoundFaultError
|
|
2219
|
+
| DBInstanceNotReadyFaultError
|
|
2220
|
+
| DBLogFileNotFoundFaultError
|
|
2140
2221
|
>;
|
|
2141
2222
|
|
|
2142
2223
|
/**
|
|
@@ -2147,7 +2228,7 @@ interface RDSService$ {
|
|
|
2147
2228
|
options?: HttpHandlerOptions,
|
|
2148
2229
|
): Effect.Effect<
|
|
2149
2230
|
EnableHttpEndpointCommandOutput,
|
|
2150
|
-
SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2231
|
+
Cause.TimeoutException | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2151
2232
|
>;
|
|
2152
2233
|
|
|
2153
2234
|
/**
|
|
@@ -2158,7 +2239,11 @@ interface RDSService$ {
|
|
|
2158
2239
|
options?: HttpHandlerOptions,
|
|
2159
2240
|
): Effect.Effect<
|
|
2160
2241
|
FailoverDBClusterCommandOutput,
|
|
2161
|
-
|
|
2242
|
+
| Cause.TimeoutException
|
|
2243
|
+
| SdkError
|
|
2244
|
+
| DBClusterNotFoundFaultError
|
|
2245
|
+
| InvalidDBClusterStateFaultError
|
|
2246
|
+
| InvalidDBInstanceStateFaultError
|
|
2162
2247
|
>;
|
|
2163
2248
|
|
|
2164
2249
|
/**
|
|
@@ -2169,6 +2254,7 @@ interface RDSService$ {
|
|
|
2169
2254
|
options?: HttpHandlerOptions,
|
|
2170
2255
|
): Effect.Effect<
|
|
2171
2256
|
FailoverGlobalClusterCommandOutput,
|
|
2257
|
+
| Cause.TimeoutException
|
|
2172
2258
|
| SdkError
|
|
2173
2259
|
| DBClusterNotFoundFaultError
|
|
2174
2260
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2184,6 +2270,7 @@ interface RDSService$ {
|
|
|
2184
2270
|
options?: HttpHandlerOptions,
|
|
2185
2271
|
): Effect.Effect<
|
|
2186
2272
|
ListTagsForResourceCommandOutput,
|
|
2273
|
+
| Cause.TimeoutException
|
|
2187
2274
|
| SdkError
|
|
2188
2275
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2189
2276
|
| DBClusterNotFoundFaultError
|
|
@@ -2204,7 +2291,11 @@ interface RDSService$ {
|
|
|
2204
2291
|
options?: HttpHandlerOptions,
|
|
2205
2292
|
): Effect.Effect<
|
|
2206
2293
|
ModifyActivityStreamCommandOutput,
|
|
2207
|
-
|
|
2294
|
+
| Cause.TimeoutException
|
|
2295
|
+
| SdkError
|
|
2296
|
+
| DBInstanceNotFoundFaultError
|
|
2297
|
+
| InvalidDBInstanceStateFaultError
|
|
2298
|
+
| ResourceNotFoundFaultError
|
|
2208
2299
|
>;
|
|
2209
2300
|
|
|
2210
2301
|
/**
|
|
@@ -2215,7 +2306,7 @@ interface RDSService$ {
|
|
|
2215
2306
|
options?: HttpHandlerOptions,
|
|
2216
2307
|
): Effect.Effect<
|
|
2217
2308
|
ModifyCertificatesCommandOutput,
|
|
2218
|
-
SdkError | CertificateNotFoundFaultError
|
|
2309
|
+
Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
|
|
2219
2310
|
>;
|
|
2220
2311
|
|
|
2221
2312
|
/**
|
|
@@ -2226,7 +2317,11 @@ interface RDSService$ {
|
|
|
2226
2317
|
options?: HttpHandlerOptions,
|
|
2227
2318
|
): Effect.Effect<
|
|
2228
2319
|
ModifyCurrentDBClusterCapacityCommandOutput,
|
|
2229
|
-
|
|
2320
|
+
| Cause.TimeoutException
|
|
2321
|
+
| SdkError
|
|
2322
|
+
| DBClusterNotFoundFaultError
|
|
2323
|
+
| InvalidDBClusterCapacityFaultError
|
|
2324
|
+
| InvalidDBClusterStateFaultError
|
|
2230
2325
|
>;
|
|
2231
2326
|
|
|
2232
2327
|
/**
|
|
@@ -2237,7 +2332,10 @@ interface RDSService$ {
|
|
|
2237
2332
|
options?: HttpHandlerOptions,
|
|
2238
2333
|
): Effect.Effect<
|
|
2239
2334
|
ModifyCustomDBEngineVersionCommandOutput,
|
|
2240
|
-
|
|
2335
|
+
| Cause.TimeoutException
|
|
2336
|
+
| SdkError
|
|
2337
|
+
| CustomDBEngineVersionNotFoundFaultError
|
|
2338
|
+
| InvalidCustomDBEngineVersionStateFaultError
|
|
2241
2339
|
>;
|
|
2242
2340
|
|
|
2243
2341
|
/**
|
|
@@ -2248,6 +2346,7 @@ interface RDSService$ {
|
|
|
2248
2346
|
options?: HttpHandlerOptions,
|
|
2249
2347
|
): Effect.Effect<
|
|
2250
2348
|
ModifyDBClusterCommandOutput,
|
|
2349
|
+
| Cause.TimeoutException
|
|
2251
2350
|
| SdkError
|
|
2252
2351
|
| DBClusterAlreadyExistsFaultError
|
|
2253
2352
|
| DBClusterNotFoundFaultError
|
|
@@ -2274,6 +2373,7 @@ interface RDSService$ {
|
|
|
2274
2373
|
options?: HttpHandlerOptions,
|
|
2275
2374
|
): Effect.Effect<
|
|
2276
2375
|
ModifyDBClusterEndpointCommandOutput,
|
|
2376
|
+
| Cause.TimeoutException
|
|
2277
2377
|
| SdkError
|
|
2278
2378
|
| DBClusterEndpointNotFoundFaultError
|
|
2279
2379
|
| DBInstanceNotFoundFaultError
|
|
@@ -2290,7 +2390,7 @@ interface RDSService$ {
|
|
|
2290
2390
|
options?: HttpHandlerOptions,
|
|
2291
2391
|
): Effect.Effect<
|
|
2292
2392
|
ModifyDBClusterParameterGroupCommandOutput,
|
|
2293
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2393
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2294
2394
|
>;
|
|
2295
2395
|
|
|
2296
2396
|
/**
|
|
@@ -2301,6 +2401,7 @@ interface RDSService$ {
|
|
|
2301
2401
|
options?: HttpHandlerOptions,
|
|
2302
2402
|
): Effect.Effect<
|
|
2303
2403
|
ModifyDBClusterSnapshotAttributeCommandOutput,
|
|
2404
|
+
| Cause.TimeoutException
|
|
2304
2405
|
| SdkError
|
|
2305
2406
|
| DBClusterSnapshotNotFoundFaultError
|
|
2306
2407
|
| InvalidDBClusterSnapshotStateFaultError
|
|
@@ -2315,6 +2416,7 @@ interface RDSService$ {
|
|
|
2315
2416
|
options?: HttpHandlerOptions,
|
|
2316
2417
|
): Effect.Effect<
|
|
2317
2418
|
ModifyDBInstanceCommandOutput,
|
|
2419
|
+
| Cause.TimeoutException
|
|
2318
2420
|
| SdkError
|
|
2319
2421
|
| AuthorizationNotFoundFaultError
|
|
2320
2422
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2347,7 +2449,7 @@ interface RDSService$ {
|
|
|
2347
2449
|
options?: HttpHandlerOptions,
|
|
2348
2450
|
): Effect.Effect<
|
|
2349
2451
|
ModifyDBParameterGroupCommandOutput,
|
|
2350
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2452
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2351
2453
|
>;
|
|
2352
2454
|
|
|
2353
2455
|
/**
|
|
@@ -2358,7 +2460,11 @@ interface RDSService$ {
|
|
|
2358
2460
|
options?: HttpHandlerOptions,
|
|
2359
2461
|
): Effect.Effect<
|
|
2360
2462
|
ModifyDBProxyCommandOutput,
|
|
2361
|
-
|
|
2463
|
+
| Cause.TimeoutException
|
|
2464
|
+
| SdkError
|
|
2465
|
+
| DBProxyAlreadyExistsFaultError
|
|
2466
|
+
| DBProxyNotFoundFaultError
|
|
2467
|
+
| InvalidDBProxyStateFaultError
|
|
2362
2468
|
>;
|
|
2363
2469
|
|
|
2364
2470
|
/**
|
|
@@ -2369,6 +2475,7 @@ interface RDSService$ {
|
|
|
2369
2475
|
options?: HttpHandlerOptions,
|
|
2370
2476
|
): Effect.Effect<
|
|
2371
2477
|
ModifyDBProxyEndpointCommandOutput,
|
|
2478
|
+
| Cause.TimeoutException
|
|
2372
2479
|
| SdkError
|
|
2373
2480
|
| DBProxyEndpointAlreadyExistsFaultError
|
|
2374
2481
|
| DBProxyEndpointNotFoundFaultError
|
|
@@ -2384,7 +2491,11 @@ interface RDSService$ {
|
|
|
2384
2491
|
options?: HttpHandlerOptions,
|
|
2385
2492
|
): Effect.Effect<
|
|
2386
2493
|
ModifyDBProxyTargetGroupCommandOutput,
|
|
2387
|
-
|
|
2494
|
+
| Cause.TimeoutException
|
|
2495
|
+
| SdkError
|
|
2496
|
+
| DBProxyNotFoundFaultError
|
|
2497
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
2498
|
+
| InvalidDBProxyStateFaultError
|
|
2388
2499
|
>;
|
|
2389
2500
|
|
|
2390
2501
|
/**
|
|
@@ -2395,7 +2506,7 @@ interface RDSService$ {
|
|
|
2395
2506
|
options?: HttpHandlerOptions,
|
|
2396
2507
|
): Effect.Effect<
|
|
2397
2508
|
ModifyDBRecommendationCommandOutput,
|
|
2398
|
-
SdkError
|
|
2509
|
+
Cause.TimeoutException | SdkError
|
|
2399
2510
|
>;
|
|
2400
2511
|
|
|
2401
2512
|
/**
|
|
@@ -2406,7 +2517,11 @@ interface RDSService$ {
|
|
|
2406
2517
|
options?: HttpHandlerOptions,
|
|
2407
2518
|
): Effect.Effect<
|
|
2408
2519
|
ModifyDBShardGroupCommandOutput,
|
|
2409
|
-
|
|
2520
|
+
| Cause.TimeoutException
|
|
2521
|
+
| SdkError
|
|
2522
|
+
| DBShardGroupAlreadyExistsFaultError
|
|
2523
|
+
| DBShardGroupNotFoundFaultError
|
|
2524
|
+
| InvalidDBClusterStateFaultError
|
|
2410
2525
|
>;
|
|
2411
2526
|
|
|
2412
2527
|
/**
|
|
@@ -2417,7 +2532,7 @@ interface RDSService$ {
|
|
|
2417
2532
|
options?: HttpHandlerOptions,
|
|
2418
2533
|
): Effect.Effect<
|
|
2419
2534
|
ModifyDBSnapshotCommandOutput,
|
|
2420
|
-
SdkError | DBSnapshotNotFoundFaultError
|
|
2535
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
2421
2536
|
>;
|
|
2422
2537
|
|
|
2423
2538
|
/**
|
|
@@ -2428,7 +2543,11 @@ interface RDSService$ {
|
|
|
2428
2543
|
options?: HttpHandlerOptions,
|
|
2429
2544
|
): Effect.Effect<
|
|
2430
2545
|
ModifyDBSnapshotAttributeCommandOutput,
|
|
2431
|
-
|
|
2546
|
+
| Cause.TimeoutException
|
|
2547
|
+
| SdkError
|
|
2548
|
+
| DBSnapshotNotFoundFaultError
|
|
2549
|
+
| InvalidDBSnapshotStateFaultError
|
|
2550
|
+
| SharedSnapshotQuotaExceededFaultError
|
|
2432
2551
|
>;
|
|
2433
2552
|
|
|
2434
2553
|
/**
|
|
@@ -2439,6 +2558,7 @@ interface RDSService$ {
|
|
|
2439
2558
|
options?: HttpHandlerOptions,
|
|
2440
2559
|
): Effect.Effect<
|
|
2441
2560
|
ModifyDBSubnetGroupCommandOutput,
|
|
2561
|
+
| Cause.TimeoutException
|
|
2442
2562
|
| SdkError
|
|
2443
2563
|
| DBSubnetGroupDoesNotCoverEnoughAZsError
|
|
2444
2564
|
| DBSubnetGroupNotFoundFaultError
|
|
@@ -2455,6 +2575,7 @@ interface RDSService$ {
|
|
|
2455
2575
|
options?: HttpHandlerOptions,
|
|
2456
2576
|
): Effect.Effect<
|
|
2457
2577
|
ModifyEventSubscriptionCommandOutput,
|
|
2578
|
+
| Cause.TimeoutException
|
|
2458
2579
|
| SdkError
|
|
2459
2580
|
| EventSubscriptionQuotaExceededFaultError
|
|
2460
2581
|
| SNSInvalidTopicFaultError
|
|
@@ -2472,6 +2593,7 @@ interface RDSService$ {
|
|
|
2472
2593
|
options?: HttpHandlerOptions,
|
|
2473
2594
|
): Effect.Effect<
|
|
2474
2595
|
ModifyGlobalClusterCommandOutput,
|
|
2596
|
+
| Cause.TimeoutException
|
|
2475
2597
|
| SdkError
|
|
2476
2598
|
| GlobalClusterAlreadyExistsFaultError
|
|
2477
2599
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2488,6 +2610,7 @@ interface RDSService$ {
|
|
|
2488
2610
|
options?: HttpHandlerOptions,
|
|
2489
2611
|
): Effect.Effect<
|
|
2490
2612
|
ModifyIntegrationCommandOutput,
|
|
2613
|
+
| Cause.TimeoutException
|
|
2491
2614
|
| SdkError
|
|
2492
2615
|
| IntegrationConflictOperationFaultError
|
|
2493
2616
|
| IntegrationNotFoundFaultError
|
|
@@ -2502,7 +2625,7 @@ interface RDSService$ {
|
|
|
2502
2625
|
options?: HttpHandlerOptions,
|
|
2503
2626
|
): Effect.Effect<
|
|
2504
2627
|
ModifyOptionGroupCommandOutput,
|
|
2505
|
-
SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
2628
|
+
Cause.TimeoutException | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
2506
2629
|
>;
|
|
2507
2630
|
|
|
2508
2631
|
/**
|
|
@@ -2513,6 +2636,7 @@ interface RDSService$ {
|
|
|
2513
2636
|
options?: HttpHandlerOptions,
|
|
2514
2637
|
): Effect.Effect<
|
|
2515
2638
|
ModifyTenantDatabaseCommandOutput,
|
|
2639
|
+
| Cause.TimeoutException
|
|
2516
2640
|
| SdkError
|
|
2517
2641
|
| DBInstanceNotFoundFaultError
|
|
2518
2642
|
| InvalidDBInstanceStateFaultError
|
|
@@ -2528,7 +2652,7 @@ interface RDSService$ {
|
|
|
2528
2652
|
options?: HttpHandlerOptions,
|
|
2529
2653
|
): Effect.Effect<
|
|
2530
2654
|
PromoteReadReplicaCommandOutput,
|
|
2531
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2655
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2532
2656
|
>;
|
|
2533
2657
|
|
|
2534
2658
|
/**
|
|
@@ -2539,7 +2663,7 @@ interface RDSService$ {
|
|
|
2539
2663
|
options?: HttpHandlerOptions,
|
|
2540
2664
|
): Effect.Effect<
|
|
2541
2665
|
PromoteReadReplicaDBClusterCommandOutput,
|
|
2542
|
-
SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
2666
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
2543
2667
|
>;
|
|
2544
2668
|
|
|
2545
2669
|
/**
|
|
@@ -2550,6 +2674,7 @@ interface RDSService$ {
|
|
|
2550
2674
|
options?: HttpHandlerOptions,
|
|
2551
2675
|
): Effect.Effect<
|
|
2552
2676
|
PurchaseReservedDBInstancesOfferingCommandOutput,
|
|
2677
|
+
| Cause.TimeoutException
|
|
2553
2678
|
| SdkError
|
|
2554
2679
|
| ReservedDBInstanceAlreadyExistsFaultError
|
|
2555
2680
|
| ReservedDBInstanceQuotaExceededFaultError
|
|
@@ -2564,7 +2689,11 @@ interface RDSService$ {
|
|
|
2564
2689
|
options?: HttpHandlerOptions,
|
|
2565
2690
|
): Effect.Effect<
|
|
2566
2691
|
RebootDBClusterCommandOutput,
|
|
2567
|
-
|
|
2692
|
+
| Cause.TimeoutException
|
|
2693
|
+
| SdkError
|
|
2694
|
+
| DBClusterNotFoundFaultError
|
|
2695
|
+
| InvalidDBClusterStateFaultError
|
|
2696
|
+
| InvalidDBInstanceStateFaultError
|
|
2568
2697
|
>;
|
|
2569
2698
|
|
|
2570
2699
|
/**
|
|
@@ -2575,7 +2704,7 @@ interface RDSService$ {
|
|
|
2575
2704
|
options?: HttpHandlerOptions,
|
|
2576
2705
|
): Effect.Effect<
|
|
2577
2706
|
RebootDBInstanceCommandOutput,
|
|
2578
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2707
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2579
2708
|
>;
|
|
2580
2709
|
|
|
2581
2710
|
/**
|
|
@@ -2586,7 +2715,7 @@ interface RDSService$ {
|
|
|
2586
2715
|
options?: HttpHandlerOptions,
|
|
2587
2716
|
): Effect.Effect<
|
|
2588
2717
|
RebootDBShardGroupCommandOutput,
|
|
2589
|
-
SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
|
|
2718
|
+
Cause.TimeoutException | SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
|
|
2590
2719
|
>;
|
|
2591
2720
|
|
|
2592
2721
|
/**
|
|
@@ -2597,6 +2726,7 @@ interface RDSService$ {
|
|
|
2597
2726
|
options?: HttpHandlerOptions,
|
|
2598
2727
|
): Effect.Effect<
|
|
2599
2728
|
RegisterDBProxyTargetsCommandOutput,
|
|
2729
|
+
| Cause.TimeoutException
|
|
2600
2730
|
| SdkError
|
|
2601
2731
|
| DBClusterNotFoundFaultError
|
|
2602
2732
|
| DBInstanceNotFoundFaultError
|
|
@@ -2617,7 +2747,11 @@ interface RDSService$ {
|
|
|
2617
2747
|
options?: HttpHandlerOptions,
|
|
2618
2748
|
): Effect.Effect<
|
|
2619
2749
|
RemoveFromGlobalClusterCommandOutput,
|
|
2620
|
-
|
|
2750
|
+
| Cause.TimeoutException
|
|
2751
|
+
| SdkError
|
|
2752
|
+
| DBClusterNotFoundFaultError
|
|
2753
|
+
| GlobalClusterNotFoundFaultError
|
|
2754
|
+
| InvalidGlobalClusterStateFaultError
|
|
2621
2755
|
>;
|
|
2622
2756
|
|
|
2623
2757
|
/**
|
|
@@ -2628,7 +2762,11 @@ interface RDSService$ {
|
|
|
2628
2762
|
options?: HttpHandlerOptions,
|
|
2629
2763
|
): Effect.Effect<
|
|
2630
2764
|
RemoveRoleFromDBClusterCommandOutput,
|
|
2631
|
-
|
|
2765
|
+
| Cause.TimeoutException
|
|
2766
|
+
| SdkError
|
|
2767
|
+
| DBClusterNotFoundFaultError
|
|
2768
|
+
| DBClusterRoleNotFoundFaultError
|
|
2769
|
+
| InvalidDBClusterStateFaultError
|
|
2632
2770
|
>;
|
|
2633
2771
|
|
|
2634
2772
|
/**
|
|
@@ -2639,7 +2777,11 @@ interface RDSService$ {
|
|
|
2639
2777
|
options?: HttpHandlerOptions,
|
|
2640
2778
|
): Effect.Effect<
|
|
2641
2779
|
RemoveRoleFromDBInstanceCommandOutput,
|
|
2642
|
-
|
|
2780
|
+
| Cause.TimeoutException
|
|
2781
|
+
| SdkError
|
|
2782
|
+
| DBInstanceNotFoundFaultError
|
|
2783
|
+
| DBInstanceRoleNotFoundFaultError
|
|
2784
|
+
| InvalidDBInstanceStateFaultError
|
|
2643
2785
|
>;
|
|
2644
2786
|
|
|
2645
2787
|
/**
|
|
@@ -2650,7 +2792,7 @@ interface RDSService$ {
|
|
|
2650
2792
|
options?: HttpHandlerOptions,
|
|
2651
2793
|
): Effect.Effect<
|
|
2652
2794
|
RemoveSourceIdentifierFromSubscriptionCommandOutput,
|
|
2653
|
-
SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
2795
|
+
Cause.TimeoutException | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
2654
2796
|
>;
|
|
2655
2797
|
|
|
2656
2798
|
/**
|
|
@@ -2661,6 +2803,7 @@ interface RDSService$ {
|
|
|
2661
2803
|
options?: HttpHandlerOptions,
|
|
2662
2804
|
): Effect.Effect<
|
|
2663
2805
|
RemoveTagsFromResourceCommandOutput,
|
|
2806
|
+
| Cause.TimeoutException
|
|
2664
2807
|
| SdkError
|
|
2665
2808
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2666
2809
|
| DBClusterNotFoundFaultError
|
|
@@ -2681,7 +2824,7 @@ interface RDSService$ {
|
|
|
2681
2824
|
options?: HttpHandlerOptions,
|
|
2682
2825
|
): Effect.Effect<
|
|
2683
2826
|
ResetDBClusterParameterGroupCommandOutput,
|
|
2684
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2827
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2685
2828
|
>;
|
|
2686
2829
|
|
|
2687
2830
|
/**
|
|
@@ -2692,7 +2835,7 @@ interface RDSService$ {
|
|
|
2692
2835
|
options?: HttpHandlerOptions,
|
|
2693
2836
|
): Effect.Effect<
|
|
2694
2837
|
ResetDBParameterGroupCommandOutput,
|
|
2695
|
-
SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2838
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2696
2839
|
>;
|
|
2697
2840
|
|
|
2698
2841
|
/**
|
|
@@ -2703,6 +2846,7 @@ interface RDSService$ {
|
|
|
2703
2846
|
options?: HttpHandlerOptions,
|
|
2704
2847
|
): Effect.Effect<
|
|
2705
2848
|
RestoreDBClusterFromS3CommandOutput,
|
|
2849
|
+
| Cause.TimeoutException
|
|
2706
2850
|
| SdkError
|
|
2707
2851
|
| DBClusterAlreadyExistsFaultError
|
|
2708
2852
|
| DBClusterNotFoundFaultError
|
|
@@ -2729,6 +2873,7 @@ interface RDSService$ {
|
|
|
2729
2873
|
options?: HttpHandlerOptions,
|
|
2730
2874
|
): Effect.Effect<
|
|
2731
2875
|
RestoreDBClusterFromSnapshotCommandOutput,
|
|
2876
|
+
| Cause.TimeoutException
|
|
2732
2877
|
| SdkError
|
|
2733
2878
|
| DBClusterAlreadyExistsFaultError
|
|
2734
2879
|
| DBClusterParameterGroupNotFoundFaultError
|
|
@@ -2760,6 +2905,7 @@ interface RDSService$ {
|
|
|
2760
2905
|
options?: HttpHandlerOptions,
|
|
2761
2906
|
): Effect.Effect<
|
|
2762
2907
|
RestoreDBClusterToPointInTimeCommandOutput,
|
|
2908
|
+
| Cause.TimeoutException
|
|
2763
2909
|
| SdkError
|
|
2764
2910
|
| DBClusterAlreadyExistsFaultError
|
|
2765
2911
|
| DBClusterAutomatedBackupNotFoundFaultError
|
|
@@ -2791,6 +2937,7 @@ interface RDSService$ {
|
|
|
2791
2937
|
options?: HttpHandlerOptions,
|
|
2792
2938
|
): Effect.Effect<
|
|
2793
2939
|
RestoreDBInstanceFromDBSnapshotCommandOutput,
|
|
2940
|
+
| Cause.TimeoutException
|
|
2794
2941
|
| SdkError
|
|
2795
2942
|
| AuthorizationNotFoundFaultError
|
|
2796
2943
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2826,6 +2973,7 @@ interface RDSService$ {
|
|
|
2826
2973
|
options?: HttpHandlerOptions,
|
|
2827
2974
|
): Effect.Effect<
|
|
2828
2975
|
RestoreDBInstanceFromS3CommandOutput,
|
|
2976
|
+
| Cause.TimeoutException
|
|
2829
2977
|
| SdkError
|
|
2830
2978
|
| AuthorizationNotFoundFaultError
|
|
2831
2979
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2856,6 +3004,7 @@ interface RDSService$ {
|
|
|
2856
3004
|
options?: HttpHandlerOptions,
|
|
2857
3005
|
): Effect.Effect<
|
|
2858
3006
|
RestoreDBInstanceToPointInTimeCommandOutput,
|
|
3007
|
+
| Cause.TimeoutException
|
|
2859
3008
|
| SdkError
|
|
2860
3009
|
| AuthorizationNotFoundFaultError
|
|
2861
3010
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2892,6 +3041,7 @@ interface RDSService$ {
|
|
|
2892
3041
|
options?: HttpHandlerOptions,
|
|
2893
3042
|
): Effect.Effect<
|
|
2894
3043
|
RevokeDBSecurityGroupIngressCommandOutput,
|
|
3044
|
+
| Cause.TimeoutException
|
|
2895
3045
|
| SdkError
|
|
2896
3046
|
| AuthorizationNotFoundFaultError
|
|
2897
3047
|
| DBSecurityGroupNotFoundFaultError
|
|
@@ -2906,6 +3056,7 @@ interface RDSService$ {
|
|
|
2906
3056
|
options?: HttpHandlerOptions,
|
|
2907
3057
|
): Effect.Effect<
|
|
2908
3058
|
StartActivityStreamCommandOutput,
|
|
3059
|
+
| Cause.TimeoutException
|
|
2909
3060
|
| SdkError
|
|
2910
3061
|
| DBClusterNotFoundFaultError
|
|
2911
3062
|
| DBInstanceNotFoundFaultError
|
|
@@ -2923,7 +3074,11 @@ interface RDSService$ {
|
|
|
2923
3074
|
options?: HttpHandlerOptions,
|
|
2924
3075
|
): Effect.Effect<
|
|
2925
3076
|
StartDBClusterCommandOutput,
|
|
2926
|
-
|
|
3077
|
+
| Cause.TimeoutException
|
|
3078
|
+
| SdkError
|
|
3079
|
+
| DBClusterNotFoundFaultError
|
|
3080
|
+
| InvalidDBClusterStateFaultError
|
|
3081
|
+
| InvalidDBInstanceStateFaultError
|
|
2927
3082
|
>;
|
|
2928
3083
|
|
|
2929
3084
|
/**
|
|
@@ -2934,6 +3089,7 @@ interface RDSService$ {
|
|
|
2934
3089
|
options?: HttpHandlerOptions,
|
|
2935
3090
|
): Effect.Effect<
|
|
2936
3091
|
StartDBInstanceCommandOutput,
|
|
3092
|
+
| Cause.TimeoutException
|
|
2937
3093
|
| SdkError
|
|
2938
3094
|
| AuthorizationNotFoundFaultError
|
|
2939
3095
|
| DBClusterNotFoundFaultError
|
|
@@ -2956,6 +3112,7 @@ interface RDSService$ {
|
|
|
2956
3112
|
options?: HttpHandlerOptions,
|
|
2957
3113
|
): Effect.Effect<
|
|
2958
3114
|
StartDBInstanceAutomatedBackupsReplicationCommandOutput,
|
|
3115
|
+
| Cause.TimeoutException
|
|
2959
3116
|
| SdkError
|
|
2960
3117
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
2961
3118
|
| DBInstanceNotFoundFaultError
|
|
@@ -2972,6 +3129,7 @@ interface RDSService$ {
|
|
|
2972
3129
|
options?: HttpHandlerOptions,
|
|
2973
3130
|
): Effect.Effect<
|
|
2974
3131
|
StartExportTaskCommandOutput,
|
|
3132
|
+
| Cause.TimeoutException
|
|
2975
3133
|
| SdkError
|
|
2976
3134
|
| DBClusterNotFoundFaultError
|
|
2977
3135
|
| DBClusterSnapshotNotFoundFaultError
|
|
@@ -2993,6 +3151,7 @@ interface RDSService$ {
|
|
|
2993
3151
|
options?: HttpHandlerOptions,
|
|
2994
3152
|
): Effect.Effect<
|
|
2995
3153
|
StopActivityStreamCommandOutput,
|
|
3154
|
+
| Cause.TimeoutException
|
|
2996
3155
|
| SdkError
|
|
2997
3156
|
| DBClusterNotFoundFaultError
|
|
2998
3157
|
| DBInstanceNotFoundFaultError
|
|
@@ -3009,7 +3168,11 @@ interface RDSService$ {
|
|
|
3009
3168
|
options?: HttpHandlerOptions,
|
|
3010
3169
|
): Effect.Effect<
|
|
3011
3170
|
StopDBClusterCommandOutput,
|
|
3012
|
-
|
|
3171
|
+
| Cause.TimeoutException
|
|
3172
|
+
| SdkError
|
|
3173
|
+
| DBClusterNotFoundFaultError
|
|
3174
|
+
| InvalidDBClusterStateFaultError
|
|
3175
|
+
| InvalidDBInstanceStateFaultError
|
|
3013
3176
|
>;
|
|
3014
3177
|
|
|
3015
3178
|
/**
|
|
@@ -3020,6 +3183,7 @@ interface RDSService$ {
|
|
|
3020
3183
|
options?: HttpHandlerOptions,
|
|
3021
3184
|
): Effect.Effect<
|
|
3022
3185
|
StopDBInstanceCommandOutput,
|
|
3186
|
+
| Cause.TimeoutException
|
|
3023
3187
|
| SdkError
|
|
3024
3188
|
| DBInstanceNotFoundFaultError
|
|
3025
3189
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -3036,7 +3200,7 @@ interface RDSService$ {
|
|
|
3036
3200
|
options?: HttpHandlerOptions,
|
|
3037
3201
|
): Effect.Effect<
|
|
3038
3202
|
StopDBInstanceAutomatedBackupsReplicationCommandOutput,
|
|
3039
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3203
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3040
3204
|
>;
|
|
3041
3205
|
|
|
3042
3206
|
/**
|
|
@@ -3047,7 +3211,10 @@ interface RDSService$ {
|
|
|
3047
3211
|
options?: HttpHandlerOptions,
|
|
3048
3212
|
): Effect.Effect<
|
|
3049
3213
|
SwitchoverBlueGreenDeploymentCommandOutput,
|
|
3050
|
-
|
|
3214
|
+
| Cause.TimeoutException
|
|
3215
|
+
| SdkError
|
|
3216
|
+
| BlueGreenDeploymentNotFoundFaultError
|
|
3217
|
+
| InvalidBlueGreenDeploymentStateFaultError
|
|
3051
3218
|
>;
|
|
3052
3219
|
|
|
3053
3220
|
/**
|
|
@@ -3058,6 +3225,7 @@ interface RDSService$ {
|
|
|
3058
3225
|
options?: HttpHandlerOptions,
|
|
3059
3226
|
): Effect.Effect<
|
|
3060
3227
|
SwitchoverGlobalClusterCommandOutput,
|
|
3228
|
+
| Cause.TimeoutException
|
|
3061
3229
|
| SdkError
|
|
3062
3230
|
| DBClusterNotFoundFaultError
|
|
3063
3231
|
| GlobalClusterNotFoundFaultError
|
|
@@ -3073,7 +3241,7 @@ interface RDSService$ {
|
|
|
3073
3241
|
options?: HttpHandlerOptions,
|
|
3074
3242
|
): Effect.Effect<
|
|
3075
3243
|
SwitchoverReadReplicaCommandOutput,
|
|
3076
|
-
SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3244
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3077
3245
|
>;
|
|
3078
3246
|
}
|
|
3079
3247
|
|
|
@@ -3084,7 +3252,7 @@ interface RDSService$ {
|
|
|
3084
3252
|
export const makeRDSService = Effect.gen(function*() {
|
|
3085
3253
|
const client = yield* Instance.RDSClientInstance;
|
|
3086
3254
|
|
|
3087
|
-
return Service.fromClientAndCommands<RDSService$>(
|
|
3255
|
+
return yield* Service.fromClientAndCommands<RDSService$>(
|
|
3088
3256
|
client,
|
|
3089
3257
|
commands,
|
|
3090
3258
|
{
|