@effect-aws/client-rds 1.10.7 → 2.0.0-beta.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.
Files changed (37) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -3
  3. package/dist/dts/RDSClientInstance.d.ts +2 -2
  4. package/dist/dts/RDSClientInstance.d.ts.map +1 -1
  5. package/dist/dts/RDSService.d.ts +165 -167
  6. package/dist/dts/RDSService.d.ts.map +1 -1
  7. package/dist/dts/RDSServiceConfig.d.ts.map +1 -1
  8. package/dist/esm/RDSClientInstance.js +3 -3
  9. package/dist/esm/RDSClientInstance.js.map +1 -1
  10. package/dist/esm/RDSService.js +2 -2
  11. package/dist/esm/RDSService.js.map +1 -1
  12. package/dist/esm/RDSServiceConfig.js +5 -6
  13. package/dist/esm/RDSServiceConfig.js.map +1 -1
  14. package/package.json +8 -14
  15. package/src/RDSClientInstance.ts +4 -4
  16. package/src/RDSService.ts +166 -182
  17. package/src/RDSServiceConfig.ts +6 -7
  18. package/dist/cjs/Errors.d.ts +0 -153
  19. package/dist/cjs/Errors.d.ts.map +0 -1
  20. package/dist/cjs/Errors.js +0 -152
  21. package/dist/cjs/Errors.js.map +0 -1
  22. package/dist/cjs/RDSClientInstance.d.ts +0 -24
  23. package/dist/cjs/RDSClientInstance.d.ts.map +0 -1
  24. package/dist/cjs/RDSClientInstance.js +0 -50
  25. package/dist/cjs/RDSClientInstance.js.map +0 -1
  26. package/dist/cjs/RDSService.d.ts +0 -698
  27. package/dist/cjs/RDSService.d.ts.map +0 -1
  28. package/dist/cjs/RDSService.js +0 -222
  29. package/dist/cjs/RDSService.js.map +0 -1
  30. package/dist/cjs/RDSServiceConfig.d.ts +0 -25
  31. package/dist/cjs/RDSServiceConfig.d.ts.map +0 -1
  32. package/dist/cjs/RDSServiceConfig.js +0 -35
  33. package/dist/cjs/RDSServiceConfig.js.map +0 -1
  34. package/dist/cjs/index.d.ts +0 -44
  35. package/dist/cjs/index.d.ts.map +0 -1
  36. package/dist/cjs/index.js +0 -56
  37. package/dist/cjs/index.js.map +0 -1
package/src/RDSService.ts CHANGED
@@ -497,7 +497,7 @@ import {
497
497
  import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
498
498
  import { Service } from "@effect-aws/commons";
499
499
  import type { Cause } from "effect";
500
- import { Effect, Layer } from "effect";
500
+ import { Effect, Layer, ServiceMap } from "effect";
501
501
  import type {
502
502
  AuthorizationAlreadyExistsFaultError,
503
503
  AuthorizationNotFoundFaultError,
@@ -828,7 +828,7 @@ interface RDSService$ {
828
828
  options?: HttpHandlerOptions,
829
829
  ): Effect.Effect<
830
830
  AddRoleToDBClusterCommandOutput,
831
- | Cause.TimeoutException
831
+ | Cause.TimeoutError
832
832
  | SdkError
833
833
  | DBClusterNotFoundFaultError
834
834
  | DBClusterRoleAlreadyExistsFaultError
@@ -844,7 +844,7 @@ interface RDSService$ {
844
844
  options?: HttpHandlerOptions,
845
845
  ): Effect.Effect<
846
846
  AddRoleToDBInstanceCommandOutput,
847
- | Cause.TimeoutException
847
+ | Cause.TimeoutError
848
848
  | SdkError
849
849
  | DBInstanceNotFoundFaultError
850
850
  | DBInstanceRoleAlreadyExistsFaultError
@@ -860,7 +860,7 @@ interface RDSService$ {
860
860
  options?: HttpHandlerOptions,
861
861
  ): Effect.Effect<
862
862
  AddSourceIdentifierToSubscriptionCommandOutput,
863
- Cause.TimeoutException | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
863
+ Cause.TimeoutError | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
864
864
  >;
865
865
 
866
866
  /**
@@ -871,7 +871,7 @@ interface RDSService$ {
871
871
  options?: HttpHandlerOptions,
872
872
  ): Effect.Effect<
873
873
  AddTagsToResourceCommandOutput,
874
- | Cause.TimeoutException
874
+ | Cause.TimeoutError
875
875
  | SdkError
876
876
  | BlueGreenDeploymentNotFoundFaultError
877
877
  | DBClusterNotFoundFaultError
@@ -897,7 +897,7 @@ interface RDSService$ {
897
897
  options?: HttpHandlerOptions,
898
898
  ): Effect.Effect<
899
899
  ApplyPendingMaintenanceActionCommandOutput,
900
- | Cause.TimeoutException
900
+ | Cause.TimeoutError
901
901
  | SdkError
902
902
  | InvalidDBClusterStateFaultError
903
903
  | InvalidDBInstanceStateFaultError
@@ -912,7 +912,7 @@ interface RDSService$ {
912
912
  options?: HttpHandlerOptions,
913
913
  ): Effect.Effect<
914
914
  AuthorizeDBSecurityGroupIngressCommandOutput,
915
- | Cause.TimeoutException
915
+ | Cause.TimeoutError
916
916
  | SdkError
917
917
  | AuthorizationAlreadyExistsFaultError
918
918
  | AuthorizationQuotaExceededFaultError
@@ -928,7 +928,7 @@ interface RDSService$ {
928
928
  options?: HttpHandlerOptions,
929
929
  ): Effect.Effect<
930
930
  BacktrackDBClusterCommandOutput,
931
- Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
931
+ Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
932
932
  >;
933
933
 
934
934
  /**
@@ -939,7 +939,7 @@ interface RDSService$ {
939
939
  options?: HttpHandlerOptions,
940
940
  ): Effect.Effect<
941
941
  CancelExportTaskCommandOutput,
942
- Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError | InvalidExportTaskStateFaultError
942
+ Cause.TimeoutError | SdkError | ExportTaskNotFoundFaultError | InvalidExportTaskStateFaultError
943
943
  >;
944
944
 
945
945
  /**
@@ -950,7 +950,7 @@ interface RDSService$ {
950
950
  options?: HttpHandlerOptions,
951
951
  ): Effect.Effect<
952
952
  CopyDBClusterParameterGroupCommandOutput,
953
- | Cause.TimeoutException
953
+ | Cause.TimeoutError
954
954
  | SdkError
955
955
  | DBParameterGroupAlreadyExistsFaultError
956
956
  | DBParameterGroupNotFoundFaultError
@@ -965,7 +965,7 @@ interface RDSService$ {
965
965
  options?: HttpHandlerOptions,
966
966
  ): Effect.Effect<
967
967
  CopyDBClusterSnapshotCommandOutput,
968
- | Cause.TimeoutException
968
+ | Cause.TimeoutError
969
969
  | SdkError
970
970
  | DBClusterSnapshotAlreadyExistsFaultError
971
971
  | DBClusterSnapshotNotFoundFaultError
@@ -983,7 +983,7 @@ interface RDSService$ {
983
983
  options?: HttpHandlerOptions,
984
984
  ): Effect.Effect<
985
985
  CopyDBParameterGroupCommandOutput,
986
- | Cause.TimeoutException
986
+ | Cause.TimeoutError
987
987
  | SdkError
988
988
  | DBParameterGroupAlreadyExistsFaultError
989
989
  | DBParameterGroupNotFoundFaultError
@@ -998,7 +998,7 @@ interface RDSService$ {
998
998
  options?: HttpHandlerOptions,
999
999
  ): Effect.Effect<
1000
1000
  CopyDBSnapshotCommandOutput,
1001
- | Cause.TimeoutException
1001
+ | Cause.TimeoutError
1002
1002
  | SdkError
1003
1003
  | CustomAvailabilityZoneNotFoundFaultError
1004
1004
  | DBSnapshotAlreadyExistsFaultError
@@ -1016,7 +1016,7 @@ interface RDSService$ {
1016
1016
  options?: HttpHandlerOptions,
1017
1017
  ): Effect.Effect<
1018
1018
  CopyOptionGroupCommandOutput,
1019
- | Cause.TimeoutException
1019
+ | Cause.TimeoutError
1020
1020
  | SdkError
1021
1021
  | OptionGroupAlreadyExistsFaultError
1022
1022
  | OptionGroupNotFoundFaultError
@@ -1031,7 +1031,7 @@ interface RDSService$ {
1031
1031
  options?: HttpHandlerOptions,
1032
1032
  ): Effect.Effect<
1033
1033
  CreateBlueGreenDeploymentCommandOutput,
1034
- | Cause.TimeoutException
1034
+ | Cause.TimeoutError
1035
1035
  | SdkError
1036
1036
  | BlueGreenDeploymentAlreadyExistsFaultError
1037
1037
  | DBClusterNotFoundFaultError
@@ -1055,7 +1055,7 @@ interface RDSService$ {
1055
1055
  options?: HttpHandlerOptions,
1056
1056
  ): Effect.Effect<
1057
1057
  CreateCustomDBEngineVersionCommandOutput,
1058
- | Cause.TimeoutException
1058
+ | Cause.TimeoutError
1059
1059
  | SdkError
1060
1060
  | CreateCustomDBEngineVersionFaultError
1061
1061
  | CustomDBEngineVersionAlreadyExistsFaultError
@@ -1074,7 +1074,7 @@ interface RDSService$ {
1074
1074
  options?: HttpHandlerOptions,
1075
1075
  ): Effect.Effect<
1076
1076
  CreateDBClusterCommandOutput,
1077
- | Cause.TimeoutException
1077
+ | Cause.TimeoutError
1078
1078
  | SdkError
1079
1079
  | DBClusterAlreadyExistsFaultError
1080
1080
  | DBClusterNotFoundFaultError
@@ -1110,7 +1110,7 @@ interface RDSService$ {
1110
1110
  options?: HttpHandlerOptions,
1111
1111
  ): Effect.Effect<
1112
1112
  CreateDBClusterEndpointCommandOutput,
1113
- | Cause.TimeoutException
1113
+ | Cause.TimeoutError
1114
1114
  | SdkError
1115
1115
  | DBClusterEndpointAlreadyExistsFaultError
1116
1116
  | DBClusterEndpointQuotaExceededFaultError
@@ -1128,10 +1128,7 @@ interface RDSService$ {
1128
1128
  options?: HttpHandlerOptions,
1129
1129
  ): Effect.Effect<
1130
1130
  CreateDBClusterParameterGroupCommandOutput,
1131
- | Cause.TimeoutException
1132
- | SdkError
1133
- | DBParameterGroupAlreadyExistsFaultError
1134
- | DBParameterGroupQuotaExceededFaultError
1131
+ Cause.TimeoutError | SdkError | DBParameterGroupAlreadyExistsFaultError | DBParameterGroupQuotaExceededFaultError
1135
1132
  >;
1136
1133
 
1137
1134
  /**
@@ -1142,7 +1139,7 @@ interface RDSService$ {
1142
1139
  options?: HttpHandlerOptions,
1143
1140
  ): Effect.Effect<
1144
1141
  CreateDBClusterSnapshotCommandOutput,
1145
- | Cause.TimeoutException
1142
+ | Cause.TimeoutError
1146
1143
  | SdkError
1147
1144
  | DBClusterNotFoundFaultError
1148
1145
  | DBClusterSnapshotAlreadyExistsFaultError
@@ -1159,7 +1156,7 @@ interface RDSService$ {
1159
1156
  options?: HttpHandlerOptions,
1160
1157
  ): Effect.Effect<
1161
1158
  CreateDBInstanceCommandOutput,
1162
- | Cause.TimeoutException
1159
+ | Cause.TimeoutError
1163
1160
  | SdkError
1164
1161
  | AuthorizationNotFoundFaultError
1165
1162
  | BackupPolicyNotFoundFaultError
@@ -1194,7 +1191,7 @@ interface RDSService$ {
1194
1191
  options?: HttpHandlerOptions,
1195
1192
  ): Effect.Effect<
1196
1193
  CreateDBInstanceReadReplicaCommandOutput,
1197
- | Cause.TimeoutException
1194
+ | Cause.TimeoutError
1198
1195
  | SdkError
1199
1196
  | CertificateNotFoundFaultError
1200
1197
  | DBClusterNotFoundFaultError
@@ -1231,10 +1228,7 @@ interface RDSService$ {
1231
1228
  options?: HttpHandlerOptions,
1232
1229
  ): Effect.Effect<
1233
1230
  CreateDBParameterGroupCommandOutput,
1234
- | Cause.TimeoutException
1235
- | SdkError
1236
- | DBParameterGroupAlreadyExistsFaultError
1237
- | DBParameterGroupQuotaExceededFaultError
1231
+ Cause.TimeoutError | SdkError | DBParameterGroupAlreadyExistsFaultError | DBParameterGroupQuotaExceededFaultError
1238
1232
  >;
1239
1233
 
1240
1234
  /**
@@ -1245,11 +1239,7 @@ interface RDSService$ {
1245
1239
  options?: HttpHandlerOptions,
1246
1240
  ): Effect.Effect<
1247
1241
  CreateDBProxyCommandOutput,
1248
- | Cause.TimeoutException
1249
- | SdkError
1250
- | DBProxyAlreadyExistsFaultError
1251
- | DBProxyQuotaExceededFaultError
1252
- | InvalidSubnetError
1242
+ Cause.TimeoutError | SdkError | DBProxyAlreadyExistsFaultError | DBProxyQuotaExceededFaultError | InvalidSubnetError
1253
1243
  >;
1254
1244
 
1255
1245
  /**
@@ -1260,7 +1250,7 @@ interface RDSService$ {
1260
1250
  options?: HttpHandlerOptions,
1261
1251
  ): Effect.Effect<
1262
1252
  CreateDBProxyEndpointCommandOutput,
1263
- | Cause.TimeoutException
1253
+ | Cause.TimeoutError
1264
1254
  | SdkError
1265
1255
  | DBProxyEndpointAlreadyExistsFaultError
1266
1256
  | DBProxyEndpointQuotaExceededFaultError
@@ -1277,7 +1267,7 @@ interface RDSService$ {
1277
1267
  options?: HttpHandlerOptions,
1278
1268
  ): Effect.Effect<
1279
1269
  CreateDBSecurityGroupCommandOutput,
1280
- | Cause.TimeoutException
1270
+ | Cause.TimeoutError
1281
1271
  | SdkError
1282
1272
  | DBSecurityGroupAlreadyExistsFaultError
1283
1273
  | DBSecurityGroupNotSupportedFaultError
@@ -1292,7 +1282,7 @@ interface RDSService$ {
1292
1282
  options?: HttpHandlerOptions,
1293
1283
  ): Effect.Effect<
1294
1284
  CreateDBShardGroupCommandOutput,
1295
- | Cause.TimeoutException
1285
+ | Cause.TimeoutError
1296
1286
  | SdkError
1297
1287
  | DBClusterNotFoundFaultError
1298
1288
  | DBShardGroupAlreadyExistsFaultError
@@ -1311,7 +1301,7 @@ interface RDSService$ {
1311
1301
  options?: HttpHandlerOptions,
1312
1302
  ): Effect.Effect<
1313
1303
  CreateDBSnapshotCommandOutput,
1314
- | Cause.TimeoutException
1304
+ | Cause.TimeoutError
1315
1305
  | SdkError
1316
1306
  | DBInstanceNotFoundFaultError
1317
1307
  | DBSnapshotAlreadyExistsFaultError
@@ -1327,7 +1317,7 @@ interface RDSService$ {
1327
1317
  options?: HttpHandlerOptions,
1328
1318
  ): Effect.Effect<
1329
1319
  CreateDBSubnetGroupCommandOutput,
1330
- | Cause.TimeoutException
1320
+ | Cause.TimeoutError
1331
1321
  | SdkError
1332
1322
  | DBSubnetGroupAlreadyExistsFaultError
1333
1323
  | DBSubnetGroupDoesNotCoverEnoughAZsError
@@ -1344,7 +1334,7 @@ interface RDSService$ {
1344
1334
  options?: HttpHandlerOptions,
1345
1335
  ): Effect.Effect<
1346
1336
  CreateEventSubscriptionCommandOutput,
1347
- | Cause.TimeoutException
1337
+ | Cause.TimeoutError
1348
1338
  | SdkError
1349
1339
  | EventSubscriptionQuotaExceededFaultError
1350
1340
  | SNSInvalidTopicFaultError
@@ -1363,7 +1353,7 @@ interface RDSService$ {
1363
1353
  options?: HttpHandlerOptions,
1364
1354
  ): Effect.Effect<
1365
1355
  CreateGlobalClusterCommandOutput,
1366
- | Cause.TimeoutException
1356
+ | Cause.TimeoutError
1367
1357
  | SdkError
1368
1358
  | DBClusterNotFoundFaultError
1369
1359
  | GlobalClusterAlreadyExistsFaultError
@@ -1381,7 +1371,7 @@ interface RDSService$ {
1381
1371
  options?: HttpHandlerOptions,
1382
1372
  ): Effect.Effect<
1383
1373
  CreateIntegrationCommandOutput,
1384
- | Cause.TimeoutException
1374
+ | Cause.TimeoutError
1385
1375
  | SdkError
1386
1376
  | DBClusterNotFoundFaultError
1387
1377
  | DBInstanceNotFoundFaultError
@@ -1399,7 +1389,7 @@ interface RDSService$ {
1399
1389
  options?: HttpHandlerOptions,
1400
1390
  ): Effect.Effect<
1401
1391
  CreateOptionGroupCommandOutput,
1402
- Cause.TimeoutException | SdkError | OptionGroupAlreadyExistsFaultError | OptionGroupQuotaExceededFaultError
1392
+ Cause.TimeoutError | SdkError | OptionGroupAlreadyExistsFaultError | OptionGroupQuotaExceededFaultError
1403
1393
  >;
1404
1394
 
1405
1395
  /**
@@ -1410,7 +1400,7 @@ interface RDSService$ {
1410
1400
  options?: HttpHandlerOptions,
1411
1401
  ): Effect.Effect<
1412
1402
  CreateTenantDatabaseCommandOutput,
1413
- | Cause.TimeoutException
1403
+ | Cause.TimeoutError
1414
1404
  | SdkError
1415
1405
  | DBInstanceNotFoundFaultError
1416
1406
  | InvalidDBInstanceStateFaultError
@@ -1427,10 +1417,7 @@ interface RDSService$ {
1427
1417
  options?: HttpHandlerOptions,
1428
1418
  ): Effect.Effect<
1429
1419
  DeleteBlueGreenDeploymentCommandOutput,
1430
- | Cause.TimeoutException
1431
- | SdkError
1432
- | BlueGreenDeploymentNotFoundFaultError
1433
- | InvalidBlueGreenDeploymentStateFaultError
1420
+ Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError | InvalidBlueGreenDeploymentStateFaultError
1434
1421
  >;
1435
1422
 
1436
1423
  /**
@@ -1441,7 +1428,7 @@ interface RDSService$ {
1441
1428
  options?: HttpHandlerOptions,
1442
1429
  ): Effect.Effect<
1443
1430
  DeleteCustomDBEngineVersionCommandOutput,
1444
- | Cause.TimeoutException
1431
+ | Cause.TimeoutError
1445
1432
  | SdkError
1446
1433
  | CustomDBEngineVersionNotFoundFaultError
1447
1434
  | InvalidCustomDBEngineVersionStateFaultError
@@ -1455,7 +1442,7 @@ interface RDSService$ {
1455
1442
  options?: HttpHandlerOptions,
1456
1443
  ): Effect.Effect<
1457
1444
  DeleteDBClusterCommandOutput,
1458
- | Cause.TimeoutException
1445
+ | Cause.TimeoutError
1459
1446
  | SdkError
1460
1447
  | DBClusterAutomatedBackupQuotaExceededFaultError
1461
1448
  | DBClusterNotFoundFaultError
@@ -1475,7 +1462,7 @@ interface RDSService$ {
1475
1462
  options?: HttpHandlerOptions,
1476
1463
  ): Effect.Effect<
1477
1464
  DeleteDBClusterAutomatedBackupCommandOutput,
1478
- | Cause.TimeoutException
1465
+ | Cause.TimeoutError
1479
1466
  | SdkError
1480
1467
  | DBClusterAutomatedBackupNotFoundFaultError
1481
1468
  | InvalidDBClusterAutomatedBackupStateFaultError
@@ -1489,7 +1476,7 @@ interface RDSService$ {
1489
1476
  options?: HttpHandlerOptions,
1490
1477
  ): Effect.Effect<
1491
1478
  DeleteDBClusterEndpointCommandOutput,
1492
- | Cause.TimeoutException
1479
+ | Cause.TimeoutError
1493
1480
  | SdkError
1494
1481
  | DBClusterEndpointNotFoundFaultError
1495
1482
  | InvalidDBClusterEndpointStateFaultError
@@ -1504,7 +1491,7 @@ interface RDSService$ {
1504
1491
  options?: HttpHandlerOptions,
1505
1492
  ): Effect.Effect<
1506
1493
  DeleteDBClusterParameterGroupCommandOutput,
1507
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
1494
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
1508
1495
  >;
1509
1496
 
1510
1497
  /**
@@ -1515,7 +1502,7 @@ interface RDSService$ {
1515
1502
  options?: HttpHandlerOptions,
1516
1503
  ): Effect.Effect<
1517
1504
  DeleteDBClusterSnapshotCommandOutput,
1518
- Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
1505
+ Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
1519
1506
  >;
1520
1507
 
1521
1508
  /**
@@ -1526,7 +1513,7 @@ interface RDSService$ {
1526
1513
  options?: HttpHandlerOptions,
1527
1514
  ): Effect.Effect<
1528
1515
  DeleteDBInstanceCommandOutput,
1529
- | Cause.TimeoutException
1516
+ | Cause.TimeoutError
1530
1517
  | SdkError
1531
1518
  | DBInstanceAutomatedBackupQuotaExceededFaultError
1532
1519
  | DBInstanceNotFoundFaultError
@@ -1545,7 +1532,7 @@ interface RDSService$ {
1545
1532
  options?: HttpHandlerOptions,
1546
1533
  ): Effect.Effect<
1547
1534
  DeleteDBInstanceAutomatedBackupCommandOutput,
1548
- | Cause.TimeoutException
1535
+ | Cause.TimeoutError
1549
1536
  | SdkError
1550
1537
  | DBInstanceAutomatedBackupNotFoundFaultError
1551
1538
  | InvalidDBInstanceAutomatedBackupStateFaultError
@@ -1559,7 +1546,7 @@ interface RDSService$ {
1559
1546
  options?: HttpHandlerOptions,
1560
1547
  ): Effect.Effect<
1561
1548
  DeleteDBParameterGroupCommandOutput,
1562
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
1549
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
1563
1550
  >;
1564
1551
 
1565
1552
  /**
@@ -1570,7 +1557,7 @@ interface RDSService$ {
1570
1557
  options?: HttpHandlerOptions,
1571
1558
  ): Effect.Effect<
1572
1559
  DeleteDBProxyCommandOutput,
1573
- Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
1560
+ Cause.TimeoutError | SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
1574
1561
  >;
1575
1562
 
1576
1563
  /**
@@ -1581,7 +1568,7 @@ interface RDSService$ {
1581
1568
  options?: HttpHandlerOptions,
1582
1569
  ): Effect.Effect<
1583
1570
  DeleteDBProxyEndpointCommandOutput,
1584
- Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
1571
+ Cause.TimeoutError | SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
1585
1572
  >;
1586
1573
 
1587
1574
  /**
@@ -1592,7 +1579,7 @@ interface RDSService$ {
1592
1579
  options?: HttpHandlerOptions,
1593
1580
  ): Effect.Effect<
1594
1581
  DeleteDBSecurityGroupCommandOutput,
1595
- Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
1582
+ Cause.TimeoutError | SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
1596
1583
  >;
1597
1584
 
1598
1585
  /**
@@ -1603,7 +1590,7 @@ interface RDSService$ {
1603
1590
  options?: HttpHandlerOptions,
1604
1591
  ): Effect.Effect<
1605
1592
  DeleteDBShardGroupCommandOutput,
1606
- | Cause.TimeoutException
1593
+ | Cause.TimeoutError
1607
1594
  | SdkError
1608
1595
  | DBShardGroupNotFoundFaultError
1609
1596
  | InvalidDBClusterStateFaultError
@@ -1618,7 +1605,7 @@ interface RDSService$ {
1618
1605
  options?: HttpHandlerOptions,
1619
1606
  ): Effect.Effect<
1620
1607
  DeleteDBSnapshotCommandOutput,
1621
- Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
1608
+ Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
1622
1609
  >;
1623
1610
 
1624
1611
  /**
@@ -1629,7 +1616,7 @@ interface RDSService$ {
1629
1616
  options?: HttpHandlerOptions,
1630
1617
  ): Effect.Effect<
1631
1618
  DeleteDBSubnetGroupCommandOutput,
1632
- | Cause.TimeoutException
1619
+ | Cause.TimeoutError
1633
1620
  | SdkError
1634
1621
  | DBSubnetGroupNotFoundFaultError
1635
1622
  | InvalidDBSubnetGroupStateFaultError
@@ -1644,7 +1631,7 @@ interface RDSService$ {
1644
1631
  options?: HttpHandlerOptions,
1645
1632
  ): Effect.Effect<
1646
1633
  DeleteEventSubscriptionCommandOutput,
1647
- Cause.TimeoutException | SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
1634
+ Cause.TimeoutError | SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
1648
1635
  >;
1649
1636
 
1650
1637
  /**
@@ -1655,7 +1642,7 @@ interface RDSService$ {
1655
1642
  options?: HttpHandlerOptions,
1656
1643
  ): Effect.Effect<
1657
1644
  DeleteGlobalClusterCommandOutput,
1658
- Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
1645
+ Cause.TimeoutError | SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
1659
1646
  >;
1660
1647
 
1661
1648
  /**
@@ -1666,7 +1653,7 @@ interface RDSService$ {
1666
1653
  options?: HttpHandlerOptions,
1667
1654
  ): Effect.Effect<
1668
1655
  DeleteIntegrationCommandOutput,
1669
- | Cause.TimeoutException
1656
+ | Cause.TimeoutError
1670
1657
  | SdkError
1671
1658
  | IntegrationConflictOperationFaultError
1672
1659
  | IntegrationNotFoundFaultError
@@ -1681,7 +1668,7 @@ interface RDSService$ {
1681
1668
  options?: HttpHandlerOptions,
1682
1669
  ): Effect.Effect<
1683
1670
  DeleteOptionGroupCommandOutput,
1684
- Cause.TimeoutException | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
1671
+ Cause.TimeoutError | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
1685
1672
  >;
1686
1673
 
1687
1674
  /**
@@ -1692,7 +1679,7 @@ interface RDSService$ {
1692
1679
  options?: HttpHandlerOptions,
1693
1680
  ): Effect.Effect<
1694
1681
  DeleteTenantDatabaseCommandOutput,
1695
- | Cause.TimeoutException
1682
+ | Cause.TimeoutError
1696
1683
  | SdkError
1697
1684
  | DBInstanceNotFoundFaultError
1698
1685
  | DBSnapshotAlreadyExistsFaultError
@@ -1708,7 +1695,7 @@ interface RDSService$ {
1708
1695
  options?: HttpHandlerOptions,
1709
1696
  ): Effect.Effect<
1710
1697
  DeregisterDBProxyTargetsCommandOutput,
1711
- | Cause.TimeoutException
1698
+ | Cause.TimeoutError
1712
1699
  | SdkError
1713
1700
  | DBProxyNotFoundFaultError
1714
1701
  | DBProxyTargetGroupNotFoundFaultError
@@ -1724,7 +1711,7 @@ interface RDSService$ {
1724
1711
  options?: HttpHandlerOptions,
1725
1712
  ): Effect.Effect<
1726
1713
  DescribeAccountAttributesCommandOutput,
1727
- Cause.TimeoutException | SdkError
1714
+ Cause.TimeoutError | SdkError
1728
1715
  >;
1729
1716
 
1730
1717
  /**
@@ -1735,7 +1722,7 @@ interface RDSService$ {
1735
1722
  options?: HttpHandlerOptions,
1736
1723
  ): Effect.Effect<
1737
1724
  DescribeBlueGreenDeploymentsCommandOutput,
1738
- Cause.TimeoutException | SdkError | BlueGreenDeploymentNotFoundFaultError
1725
+ Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError
1739
1726
  >;
1740
1727
 
1741
1728
  /**
@@ -1746,7 +1733,7 @@ interface RDSService$ {
1746
1733
  options?: HttpHandlerOptions,
1747
1734
  ): Effect.Effect<
1748
1735
  DescribeCertificatesCommandOutput,
1749
- Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
1736
+ Cause.TimeoutError | SdkError | CertificateNotFoundFaultError
1750
1737
  >;
1751
1738
 
1752
1739
  /**
@@ -1757,7 +1744,7 @@ interface RDSService$ {
1757
1744
  options?: HttpHandlerOptions,
1758
1745
  ): Effect.Effect<
1759
1746
  DescribeDBClusterAutomatedBackupsCommandOutput,
1760
- Cause.TimeoutException | SdkError | DBClusterAutomatedBackupNotFoundFaultError
1747
+ Cause.TimeoutError | SdkError | DBClusterAutomatedBackupNotFoundFaultError
1761
1748
  >;
1762
1749
 
1763
1750
  /**
@@ -1768,7 +1755,7 @@ interface RDSService$ {
1768
1755
  options?: HttpHandlerOptions,
1769
1756
  ): Effect.Effect<
1770
1757
  DescribeDBClusterBacktracksCommandOutput,
1771
- Cause.TimeoutException | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
1758
+ Cause.TimeoutError | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
1772
1759
  >;
1773
1760
 
1774
1761
  /**
@@ -1779,7 +1766,7 @@ interface RDSService$ {
1779
1766
  options?: HttpHandlerOptions,
1780
1767
  ): Effect.Effect<
1781
1768
  DescribeDBClusterEndpointsCommandOutput,
1782
- Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
1769
+ Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
1783
1770
  >;
1784
1771
 
1785
1772
  /**
@@ -1790,7 +1777,7 @@ interface RDSService$ {
1790
1777
  options?: HttpHandlerOptions,
1791
1778
  ): Effect.Effect<
1792
1779
  DescribeDBClusterParameterGroupsCommandOutput,
1793
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
1780
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
1794
1781
  >;
1795
1782
 
1796
1783
  /**
@@ -1801,7 +1788,7 @@ interface RDSService$ {
1801
1788
  options?: HttpHandlerOptions,
1802
1789
  ): Effect.Effect<
1803
1790
  DescribeDBClusterParametersCommandOutput,
1804
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
1791
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
1805
1792
  >;
1806
1793
 
1807
1794
  /**
@@ -1812,7 +1799,7 @@ interface RDSService$ {
1812
1799
  options?: HttpHandlerOptions,
1813
1800
  ): Effect.Effect<
1814
1801
  DescribeDBClusterSnapshotAttributesCommandOutput,
1815
- Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
1802
+ Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError
1816
1803
  >;
1817
1804
 
1818
1805
  /**
@@ -1823,7 +1810,7 @@ interface RDSService$ {
1823
1810
  options?: HttpHandlerOptions,
1824
1811
  ): Effect.Effect<
1825
1812
  DescribeDBClusterSnapshotsCommandOutput,
1826
- Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
1813
+ Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError
1827
1814
  >;
1828
1815
 
1829
1816
  /**
@@ -1834,7 +1821,7 @@ interface RDSService$ {
1834
1821
  options?: HttpHandlerOptions,
1835
1822
  ): Effect.Effect<
1836
1823
  DescribeDBClustersCommandOutput,
1837
- Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
1824
+ Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
1838
1825
  >;
1839
1826
 
1840
1827
  /**
@@ -1845,7 +1832,7 @@ interface RDSService$ {
1845
1832
  options?: HttpHandlerOptions,
1846
1833
  ): Effect.Effect<
1847
1834
  DescribeDBEngineVersionsCommandOutput,
1848
- Cause.TimeoutException | SdkError
1835
+ Cause.TimeoutError | SdkError
1849
1836
  >;
1850
1837
 
1851
1838
  /**
@@ -1856,7 +1843,7 @@ interface RDSService$ {
1856
1843
  options?: HttpHandlerOptions,
1857
1844
  ): Effect.Effect<
1858
1845
  DescribeDBInstanceAutomatedBackupsCommandOutput,
1859
- Cause.TimeoutException | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
1846
+ Cause.TimeoutError | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
1860
1847
  >;
1861
1848
 
1862
1849
  /**
@@ -1867,7 +1854,7 @@ interface RDSService$ {
1867
1854
  options?: HttpHandlerOptions,
1868
1855
  ): Effect.Effect<
1869
1856
  DescribeDBInstancesCommandOutput,
1870
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
1857
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError
1871
1858
  >;
1872
1859
 
1873
1860
  /**
@@ -1878,7 +1865,7 @@ interface RDSService$ {
1878
1865
  options?: HttpHandlerOptions,
1879
1866
  ): Effect.Effect<
1880
1867
  DescribeDBLogFilesCommandOutput,
1881
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
1868
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
1882
1869
  >;
1883
1870
 
1884
1871
  /**
@@ -1889,7 +1876,7 @@ interface RDSService$ {
1889
1876
  options?: HttpHandlerOptions,
1890
1877
  ): Effect.Effect<
1891
1878
  DescribeDBMajorEngineVersionsCommandOutput,
1892
- Cause.TimeoutException | SdkError
1879
+ Cause.TimeoutError | SdkError
1893
1880
  >;
1894
1881
 
1895
1882
  /**
@@ -1900,7 +1887,7 @@ interface RDSService$ {
1900
1887
  options?: HttpHandlerOptions,
1901
1888
  ): Effect.Effect<
1902
1889
  DescribeDBParameterGroupsCommandOutput,
1903
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
1890
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
1904
1891
  >;
1905
1892
 
1906
1893
  /**
@@ -1911,7 +1898,7 @@ interface RDSService$ {
1911
1898
  options?: HttpHandlerOptions,
1912
1899
  ): Effect.Effect<
1913
1900
  DescribeDBParametersCommandOutput,
1914
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
1901
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
1915
1902
  >;
1916
1903
 
1917
1904
  /**
@@ -1922,7 +1909,7 @@ interface RDSService$ {
1922
1909
  options?: HttpHandlerOptions,
1923
1910
  ): Effect.Effect<
1924
1911
  DescribeDBProxiesCommandOutput,
1925
- Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError
1912
+ Cause.TimeoutError | SdkError | DBProxyNotFoundFaultError
1926
1913
  >;
1927
1914
 
1928
1915
  /**
@@ -1933,7 +1920,7 @@ interface RDSService$ {
1933
1920
  options?: HttpHandlerOptions,
1934
1921
  ): Effect.Effect<
1935
1922
  DescribeDBProxyEndpointsCommandOutput,
1936
- Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
1923
+ Cause.TimeoutError | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
1937
1924
  >;
1938
1925
 
1939
1926
  /**
@@ -1944,7 +1931,7 @@ interface RDSService$ {
1944
1931
  options?: HttpHandlerOptions,
1945
1932
  ): Effect.Effect<
1946
1933
  DescribeDBProxyTargetGroupsCommandOutput,
1947
- | Cause.TimeoutException
1934
+ | Cause.TimeoutError
1948
1935
  | SdkError
1949
1936
  | DBProxyNotFoundFaultError
1950
1937
  | DBProxyTargetGroupNotFoundFaultError
@@ -1959,7 +1946,7 @@ interface RDSService$ {
1959
1946
  options?: HttpHandlerOptions,
1960
1947
  ): Effect.Effect<
1961
1948
  DescribeDBProxyTargetsCommandOutput,
1962
- | Cause.TimeoutException
1949
+ | Cause.TimeoutError
1963
1950
  | SdkError
1964
1951
  | DBProxyNotFoundFaultError
1965
1952
  | DBProxyTargetGroupNotFoundFaultError
@@ -1975,7 +1962,7 @@ interface RDSService$ {
1975
1962
  options?: HttpHandlerOptions,
1976
1963
  ): Effect.Effect<
1977
1964
  DescribeDBRecommendationsCommandOutput,
1978
- Cause.TimeoutException | SdkError
1965
+ Cause.TimeoutError | SdkError
1979
1966
  >;
1980
1967
 
1981
1968
  /**
@@ -1986,7 +1973,7 @@ interface RDSService$ {
1986
1973
  options?: HttpHandlerOptions,
1987
1974
  ): Effect.Effect<
1988
1975
  DescribeDBSecurityGroupsCommandOutput,
1989
- Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError
1976
+ Cause.TimeoutError | SdkError | DBSecurityGroupNotFoundFaultError
1990
1977
  >;
1991
1978
 
1992
1979
  /**
@@ -1997,7 +1984,7 @@ interface RDSService$ {
1997
1984
  options?: HttpHandlerOptions,
1998
1985
  ): Effect.Effect<
1999
1986
  DescribeDBShardGroupsCommandOutput,
2000
- Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
1987
+ Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
2001
1988
  >;
2002
1989
 
2003
1990
  /**
@@ -2008,7 +1995,7 @@ interface RDSService$ {
2008
1995
  options?: HttpHandlerOptions,
2009
1996
  ): Effect.Effect<
2010
1997
  DescribeDBSnapshotAttributesCommandOutput,
2011
- Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
1998
+ Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
2012
1999
  >;
2013
2000
 
2014
2001
  /**
@@ -2019,7 +2006,7 @@ interface RDSService$ {
2019
2006
  options?: HttpHandlerOptions,
2020
2007
  ): Effect.Effect<
2021
2008
  DescribeDBSnapshotTenantDatabasesCommandOutput,
2022
- Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
2009
+ Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
2023
2010
  >;
2024
2011
 
2025
2012
  /**
@@ -2030,7 +2017,7 @@ interface RDSService$ {
2030
2017
  options?: HttpHandlerOptions,
2031
2018
  ): Effect.Effect<
2032
2019
  DescribeDBSnapshotsCommandOutput,
2033
- Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
2020
+ Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
2034
2021
  >;
2035
2022
 
2036
2023
  /**
@@ -2041,7 +2028,7 @@ interface RDSService$ {
2041
2028
  options?: HttpHandlerOptions,
2042
2029
  ): Effect.Effect<
2043
2030
  DescribeDBSubnetGroupsCommandOutput,
2044
- Cause.TimeoutException | SdkError | DBSubnetGroupNotFoundFaultError
2031
+ Cause.TimeoutError | SdkError | DBSubnetGroupNotFoundFaultError
2045
2032
  >;
2046
2033
 
2047
2034
  /**
@@ -2052,7 +2039,7 @@ interface RDSService$ {
2052
2039
  options?: HttpHandlerOptions,
2053
2040
  ): Effect.Effect<
2054
2041
  DescribeEngineDefaultClusterParametersCommandOutput,
2055
- Cause.TimeoutException | SdkError
2042
+ Cause.TimeoutError | SdkError
2056
2043
  >;
2057
2044
 
2058
2045
  /**
@@ -2063,7 +2050,7 @@ interface RDSService$ {
2063
2050
  options?: HttpHandlerOptions,
2064
2051
  ): Effect.Effect<
2065
2052
  DescribeEngineDefaultParametersCommandOutput,
2066
- Cause.TimeoutException | SdkError
2053
+ Cause.TimeoutError | SdkError
2067
2054
  >;
2068
2055
 
2069
2056
  /**
@@ -2074,7 +2061,7 @@ interface RDSService$ {
2074
2061
  options?: HttpHandlerOptions,
2075
2062
  ): Effect.Effect<
2076
2063
  DescribeEventCategoriesCommandOutput,
2077
- Cause.TimeoutException | SdkError
2064
+ Cause.TimeoutError | SdkError
2078
2065
  >;
2079
2066
 
2080
2067
  /**
@@ -2085,7 +2072,7 @@ interface RDSService$ {
2085
2072
  options?: HttpHandlerOptions,
2086
2073
  ): Effect.Effect<
2087
2074
  DescribeEventSubscriptionsCommandOutput,
2088
- Cause.TimeoutException | SdkError | SubscriptionNotFoundFaultError
2075
+ Cause.TimeoutError | SdkError | SubscriptionNotFoundFaultError
2089
2076
  >;
2090
2077
 
2091
2078
  /**
@@ -2096,7 +2083,7 @@ interface RDSService$ {
2096
2083
  options?: HttpHandlerOptions,
2097
2084
  ): Effect.Effect<
2098
2085
  DescribeEventsCommandOutput,
2099
- Cause.TimeoutException | SdkError
2086
+ Cause.TimeoutError | SdkError
2100
2087
  >;
2101
2088
 
2102
2089
  /**
@@ -2107,7 +2094,7 @@ interface RDSService$ {
2107
2094
  options?: HttpHandlerOptions,
2108
2095
  ): Effect.Effect<
2109
2096
  DescribeExportTasksCommandOutput,
2110
- Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError
2097
+ Cause.TimeoutError | SdkError | ExportTaskNotFoundFaultError
2111
2098
  >;
2112
2099
 
2113
2100
  /**
@@ -2118,7 +2105,7 @@ interface RDSService$ {
2118
2105
  options?: HttpHandlerOptions,
2119
2106
  ): Effect.Effect<
2120
2107
  DescribeGlobalClustersCommandOutput,
2121
- Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError
2108
+ Cause.TimeoutError | SdkError | GlobalClusterNotFoundFaultError
2122
2109
  >;
2123
2110
 
2124
2111
  /**
@@ -2129,7 +2116,7 @@ interface RDSService$ {
2129
2116
  options?: HttpHandlerOptions,
2130
2117
  ): Effect.Effect<
2131
2118
  DescribeIntegrationsCommandOutput,
2132
- Cause.TimeoutException | SdkError | IntegrationNotFoundFaultError
2119
+ Cause.TimeoutError | SdkError | IntegrationNotFoundFaultError
2133
2120
  >;
2134
2121
 
2135
2122
  /**
@@ -2140,7 +2127,7 @@ interface RDSService$ {
2140
2127
  options?: HttpHandlerOptions,
2141
2128
  ): Effect.Effect<
2142
2129
  DescribeOptionGroupOptionsCommandOutput,
2143
- Cause.TimeoutException | SdkError
2130
+ Cause.TimeoutError | SdkError
2144
2131
  >;
2145
2132
 
2146
2133
  /**
@@ -2151,7 +2138,7 @@ interface RDSService$ {
2151
2138
  options?: HttpHandlerOptions,
2152
2139
  ): Effect.Effect<
2153
2140
  DescribeOptionGroupsCommandOutput,
2154
- Cause.TimeoutException | SdkError | OptionGroupNotFoundFaultError
2141
+ Cause.TimeoutError | SdkError | OptionGroupNotFoundFaultError
2155
2142
  >;
2156
2143
 
2157
2144
  /**
@@ -2162,7 +2149,7 @@ interface RDSService$ {
2162
2149
  options?: HttpHandlerOptions,
2163
2150
  ): Effect.Effect<
2164
2151
  DescribeOrderableDBInstanceOptionsCommandOutput,
2165
- Cause.TimeoutException | SdkError
2152
+ Cause.TimeoutError | SdkError
2166
2153
  >;
2167
2154
 
2168
2155
  /**
@@ -2173,7 +2160,7 @@ interface RDSService$ {
2173
2160
  options?: HttpHandlerOptions,
2174
2161
  ): Effect.Effect<
2175
2162
  DescribePendingMaintenanceActionsCommandOutput,
2176
- Cause.TimeoutException | SdkError | ResourceNotFoundFaultError
2163
+ Cause.TimeoutError | SdkError | ResourceNotFoundFaultError
2177
2164
  >;
2178
2165
 
2179
2166
  /**
@@ -2184,7 +2171,7 @@ interface RDSService$ {
2184
2171
  options?: HttpHandlerOptions,
2185
2172
  ): Effect.Effect<
2186
2173
  DescribeReservedDBInstancesCommandOutput,
2187
- Cause.TimeoutException | SdkError | ReservedDBInstanceNotFoundFaultError
2174
+ Cause.TimeoutError | SdkError | ReservedDBInstanceNotFoundFaultError
2188
2175
  >;
2189
2176
 
2190
2177
  /**
@@ -2195,7 +2182,7 @@ interface RDSService$ {
2195
2182
  options?: HttpHandlerOptions,
2196
2183
  ): Effect.Effect<
2197
2184
  DescribeReservedDBInstancesOfferingsCommandOutput,
2198
- Cause.TimeoutException | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
2185
+ Cause.TimeoutError | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
2199
2186
  >;
2200
2187
 
2201
2188
  /**
@@ -2206,7 +2193,7 @@ interface RDSService$ {
2206
2193
  options?: HttpHandlerOptions,
2207
2194
  ): Effect.Effect<
2208
2195
  DescribeSourceRegionsCommandOutput,
2209
- Cause.TimeoutException | SdkError
2196
+ Cause.TimeoutError | SdkError
2210
2197
  >;
2211
2198
 
2212
2199
  /**
@@ -2217,7 +2204,7 @@ interface RDSService$ {
2217
2204
  options?: HttpHandlerOptions,
2218
2205
  ): Effect.Effect<
2219
2206
  DescribeTenantDatabasesCommandOutput,
2220
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
2207
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError
2221
2208
  >;
2222
2209
 
2223
2210
  /**
@@ -2228,7 +2215,7 @@ interface RDSService$ {
2228
2215
  options?: HttpHandlerOptions,
2229
2216
  ): Effect.Effect<
2230
2217
  DescribeValidDBInstanceModificationsCommandOutput,
2231
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
2218
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
2232
2219
  >;
2233
2220
 
2234
2221
  /**
@@ -2239,7 +2226,7 @@ interface RDSService$ {
2239
2226
  options?: HttpHandlerOptions,
2240
2227
  ): Effect.Effect<
2241
2228
  DisableHttpEndpointCommandOutput,
2242
- Cause.TimeoutException | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
2229
+ Cause.TimeoutError | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
2243
2230
  >;
2244
2231
 
2245
2232
  /**
@@ -2250,7 +2237,7 @@ interface RDSService$ {
2250
2237
  options?: HttpHandlerOptions,
2251
2238
  ): Effect.Effect<
2252
2239
  DownloadDBLogFilePortionCommandOutput,
2253
- | Cause.TimeoutException
2240
+ | Cause.TimeoutError
2254
2241
  | SdkError
2255
2242
  | DBInstanceNotFoundFaultError
2256
2243
  | DBInstanceNotReadyFaultError
@@ -2265,7 +2252,7 @@ interface RDSService$ {
2265
2252
  options?: HttpHandlerOptions,
2266
2253
  ): Effect.Effect<
2267
2254
  EnableHttpEndpointCommandOutput,
2268
- Cause.TimeoutException | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
2255
+ Cause.TimeoutError | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
2269
2256
  >;
2270
2257
 
2271
2258
  /**
@@ -2276,7 +2263,7 @@ interface RDSService$ {
2276
2263
  options?: HttpHandlerOptions,
2277
2264
  ): Effect.Effect<
2278
2265
  FailoverDBClusterCommandOutput,
2279
- | Cause.TimeoutException
2266
+ | Cause.TimeoutError
2280
2267
  | SdkError
2281
2268
  | DBClusterNotFoundFaultError
2282
2269
  | InvalidDBClusterStateFaultError
@@ -2291,7 +2278,7 @@ interface RDSService$ {
2291
2278
  options?: HttpHandlerOptions,
2292
2279
  ): Effect.Effect<
2293
2280
  FailoverGlobalClusterCommandOutput,
2294
- | Cause.TimeoutException
2281
+ | Cause.TimeoutError
2295
2282
  | SdkError
2296
2283
  | DBClusterNotFoundFaultError
2297
2284
  | GlobalClusterNotFoundFaultError
@@ -2307,7 +2294,7 @@ interface RDSService$ {
2307
2294
  options?: HttpHandlerOptions,
2308
2295
  ): Effect.Effect<
2309
2296
  ListTagsForResourceCommandOutput,
2310
- | Cause.TimeoutException
2297
+ | Cause.TimeoutError
2311
2298
  | SdkError
2312
2299
  | BlueGreenDeploymentNotFoundFaultError
2313
2300
  | DBClusterNotFoundFaultError
@@ -2330,7 +2317,7 @@ interface RDSService$ {
2330
2317
  options?: HttpHandlerOptions,
2331
2318
  ): Effect.Effect<
2332
2319
  ModifyActivityStreamCommandOutput,
2333
- | Cause.TimeoutException
2320
+ | Cause.TimeoutError
2334
2321
  | SdkError
2335
2322
  | DBInstanceNotFoundFaultError
2336
2323
  | InvalidDBInstanceStateFaultError
@@ -2345,7 +2332,7 @@ interface RDSService$ {
2345
2332
  options?: HttpHandlerOptions,
2346
2333
  ): Effect.Effect<
2347
2334
  ModifyCertificatesCommandOutput,
2348
- Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
2335
+ Cause.TimeoutError | SdkError | CertificateNotFoundFaultError
2349
2336
  >;
2350
2337
 
2351
2338
  /**
@@ -2356,7 +2343,7 @@ interface RDSService$ {
2356
2343
  options?: HttpHandlerOptions,
2357
2344
  ): Effect.Effect<
2358
2345
  ModifyCurrentDBClusterCapacityCommandOutput,
2359
- | Cause.TimeoutException
2346
+ | Cause.TimeoutError
2360
2347
  | SdkError
2361
2348
  | DBClusterNotFoundFaultError
2362
2349
  | InvalidDBClusterCapacityFaultError
@@ -2371,7 +2358,7 @@ interface RDSService$ {
2371
2358
  options?: HttpHandlerOptions,
2372
2359
  ): Effect.Effect<
2373
2360
  ModifyCustomDBEngineVersionCommandOutput,
2374
- | Cause.TimeoutException
2361
+ | Cause.TimeoutError
2375
2362
  | SdkError
2376
2363
  | CustomDBEngineVersionNotFoundFaultError
2377
2364
  | InvalidCustomDBEngineVersionStateFaultError
@@ -2385,7 +2372,7 @@ interface RDSService$ {
2385
2372
  options?: HttpHandlerOptions,
2386
2373
  ): Effect.Effect<
2387
2374
  ModifyDBClusterCommandOutput,
2388
- | Cause.TimeoutException
2375
+ | Cause.TimeoutError
2389
2376
  | SdkError
2390
2377
  | DBClusterAlreadyExistsFaultError
2391
2378
  | DBClusterNotFoundFaultError
@@ -2418,7 +2405,7 @@ interface RDSService$ {
2418
2405
  options?: HttpHandlerOptions,
2419
2406
  ): Effect.Effect<
2420
2407
  ModifyDBClusterEndpointCommandOutput,
2421
- | Cause.TimeoutException
2408
+ | Cause.TimeoutError
2422
2409
  | SdkError
2423
2410
  | DBClusterEndpointNotFoundFaultError
2424
2411
  | DBInstanceNotFoundFaultError
@@ -2435,7 +2422,7 @@ interface RDSService$ {
2435
2422
  options?: HttpHandlerOptions,
2436
2423
  ): Effect.Effect<
2437
2424
  ModifyDBClusterParameterGroupCommandOutput,
2438
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2425
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2439
2426
  >;
2440
2427
 
2441
2428
  /**
@@ -2446,7 +2433,7 @@ interface RDSService$ {
2446
2433
  options?: HttpHandlerOptions,
2447
2434
  ): Effect.Effect<
2448
2435
  ModifyDBClusterSnapshotAttributeCommandOutput,
2449
- | Cause.TimeoutException
2436
+ | Cause.TimeoutError
2450
2437
  | SdkError
2451
2438
  | DBClusterSnapshotNotFoundFaultError
2452
2439
  | InvalidDBClusterSnapshotStateFaultError
@@ -2461,7 +2448,7 @@ interface RDSService$ {
2461
2448
  options?: HttpHandlerOptions,
2462
2449
  ): Effect.Effect<
2463
2450
  ModifyDBInstanceCommandOutput,
2464
- | Cause.TimeoutException
2451
+ | Cause.TimeoutError
2465
2452
  | SdkError
2466
2453
  | AuthorizationNotFoundFaultError
2467
2454
  | BackupPolicyNotFoundFaultError
@@ -2495,7 +2482,7 @@ interface RDSService$ {
2495
2482
  options?: HttpHandlerOptions,
2496
2483
  ): Effect.Effect<
2497
2484
  ModifyDBParameterGroupCommandOutput,
2498
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2485
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2499
2486
  >;
2500
2487
 
2501
2488
  /**
@@ -2506,7 +2493,7 @@ interface RDSService$ {
2506
2493
  options?: HttpHandlerOptions,
2507
2494
  ): Effect.Effect<
2508
2495
  ModifyDBProxyCommandOutput,
2509
- | Cause.TimeoutException
2496
+ | Cause.TimeoutError
2510
2497
  | SdkError
2511
2498
  | DBProxyAlreadyExistsFaultError
2512
2499
  | DBProxyNotFoundFaultError
@@ -2521,7 +2508,7 @@ interface RDSService$ {
2521
2508
  options?: HttpHandlerOptions,
2522
2509
  ): Effect.Effect<
2523
2510
  ModifyDBProxyEndpointCommandOutput,
2524
- | Cause.TimeoutException
2511
+ | Cause.TimeoutError
2525
2512
  | SdkError
2526
2513
  | DBProxyEndpointAlreadyExistsFaultError
2527
2514
  | DBProxyEndpointNotFoundFaultError
@@ -2537,7 +2524,7 @@ interface RDSService$ {
2537
2524
  options?: HttpHandlerOptions,
2538
2525
  ): Effect.Effect<
2539
2526
  ModifyDBProxyTargetGroupCommandOutput,
2540
- | Cause.TimeoutException
2527
+ | Cause.TimeoutError
2541
2528
  | SdkError
2542
2529
  | DBProxyNotFoundFaultError
2543
2530
  | DBProxyTargetGroupNotFoundFaultError
@@ -2552,7 +2539,7 @@ interface RDSService$ {
2552
2539
  options?: HttpHandlerOptions,
2553
2540
  ): Effect.Effect<
2554
2541
  ModifyDBRecommendationCommandOutput,
2555
- Cause.TimeoutException | SdkError
2542
+ Cause.TimeoutError | SdkError
2556
2543
  >;
2557
2544
 
2558
2545
  /**
@@ -2563,7 +2550,7 @@ interface RDSService$ {
2563
2550
  options?: HttpHandlerOptions,
2564
2551
  ): Effect.Effect<
2565
2552
  ModifyDBShardGroupCommandOutput,
2566
- | Cause.TimeoutException
2553
+ | Cause.TimeoutError
2567
2554
  | SdkError
2568
2555
  | DBShardGroupAlreadyExistsFaultError
2569
2556
  | DBShardGroupNotFoundFaultError
@@ -2578,7 +2565,7 @@ interface RDSService$ {
2578
2565
  options?: HttpHandlerOptions,
2579
2566
  ): Effect.Effect<
2580
2567
  ModifyDBSnapshotCommandOutput,
2581
- | Cause.TimeoutException
2568
+ | Cause.TimeoutError
2582
2569
  | SdkError
2583
2570
  | DBSnapshotNotFoundFaultError
2584
2571
  | InvalidDBSnapshotStateFaultError
@@ -2593,7 +2580,7 @@ interface RDSService$ {
2593
2580
  options?: HttpHandlerOptions,
2594
2581
  ): Effect.Effect<
2595
2582
  ModifyDBSnapshotAttributeCommandOutput,
2596
- | Cause.TimeoutException
2583
+ | Cause.TimeoutError
2597
2584
  | SdkError
2598
2585
  | DBSnapshotNotFoundFaultError
2599
2586
  | InvalidDBSnapshotStateFaultError
@@ -2608,7 +2595,7 @@ interface RDSService$ {
2608
2595
  options?: HttpHandlerOptions,
2609
2596
  ): Effect.Effect<
2610
2597
  ModifyDBSubnetGroupCommandOutput,
2611
- | Cause.TimeoutException
2598
+ | Cause.TimeoutError
2612
2599
  | SdkError
2613
2600
  | DBSubnetGroupDoesNotCoverEnoughAZsError
2614
2601
  | DBSubnetGroupNotFoundFaultError
@@ -2626,7 +2613,7 @@ interface RDSService$ {
2626
2613
  options?: HttpHandlerOptions,
2627
2614
  ): Effect.Effect<
2628
2615
  ModifyEventSubscriptionCommandOutput,
2629
- | Cause.TimeoutException
2616
+ | Cause.TimeoutError
2630
2617
  | SdkError
2631
2618
  | EventSubscriptionQuotaExceededFaultError
2632
2619
  | SNSInvalidTopicFaultError
@@ -2644,7 +2631,7 @@ interface RDSService$ {
2644
2631
  options?: HttpHandlerOptions,
2645
2632
  ): Effect.Effect<
2646
2633
  ModifyGlobalClusterCommandOutput,
2647
- | Cause.TimeoutException
2634
+ | Cause.TimeoutError
2648
2635
  | SdkError
2649
2636
  | GlobalClusterAlreadyExistsFaultError
2650
2637
  | GlobalClusterNotFoundFaultError
@@ -2661,7 +2648,7 @@ interface RDSService$ {
2661
2648
  options?: HttpHandlerOptions,
2662
2649
  ): Effect.Effect<
2663
2650
  ModifyIntegrationCommandOutput,
2664
- | Cause.TimeoutException
2651
+ | Cause.TimeoutError
2665
2652
  | SdkError
2666
2653
  | IntegrationConflictOperationFaultError
2667
2654
  | IntegrationNotFoundFaultError
@@ -2676,7 +2663,7 @@ interface RDSService$ {
2676
2663
  options?: HttpHandlerOptions,
2677
2664
  ): Effect.Effect<
2678
2665
  ModifyOptionGroupCommandOutput,
2679
- Cause.TimeoutException | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
2666
+ Cause.TimeoutError | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
2680
2667
  >;
2681
2668
 
2682
2669
  /**
@@ -2687,7 +2674,7 @@ interface RDSService$ {
2687
2674
  options?: HttpHandlerOptions,
2688
2675
  ): Effect.Effect<
2689
2676
  ModifyTenantDatabaseCommandOutput,
2690
- | Cause.TimeoutException
2677
+ | Cause.TimeoutError
2691
2678
  | SdkError
2692
2679
  | DBInstanceNotFoundFaultError
2693
2680
  | InvalidDBInstanceStateFaultError
@@ -2704,7 +2691,7 @@ interface RDSService$ {
2704
2691
  options?: HttpHandlerOptions,
2705
2692
  ): Effect.Effect<
2706
2693
  PromoteReadReplicaCommandOutput,
2707
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
2694
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
2708
2695
  >;
2709
2696
 
2710
2697
  /**
@@ -2715,7 +2702,7 @@ interface RDSService$ {
2715
2702
  options?: HttpHandlerOptions,
2716
2703
  ): Effect.Effect<
2717
2704
  PromoteReadReplicaDBClusterCommandOutput,
2718
- Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
2705
+ Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
2719
2706
  >;
2720
2707
 
2721
2708
  /**
@@ -2726,7 +2713,7 @@ interface RDSService$ {
2726
2713
  options?: HttpHandlerOptions,
2727
2714
  ): Effect.Effect<
2728
2715
  PurchaseReservedDBInstancesOfferingCommandOutput,
2729
- | Cause.TimeoutException
2716
+ | Cause.TimeoutError
2730
2717
  | SdkError
2731
2718
  | ReservedDBInstanceAlreadyExistsFaultError
2732
2719
  | ReservedDBInstanceQuotaExceededFaultError
@@ -2741,7 +2728,7 @@ interface RDSService$ {
2741
2728
  options?: HttpHandlerOptions,
2742
2729
  ): Effect.Effect<
2743
2730
  RebootDBClusterCommandOutput,
2744
- | Cause.TimeoutException
2731
+ | Cause.TimeoutError
2745
2732
  | SdkError
2746
2733
  | DBClusterNotFoundFaultError
2747
2734
  | InvalidDBClusterStateFaultError
@@ -2756,7 +2743,7 @@ interface RDSService$ {
2756
2743
  options?: HttpHandlerOptions,
2757
2744
  ): Effect.Effect<
2758
2745
  RebootDBInstanceCommandOutput,
2759
- | Cause.TimeoutException
2746
+ | Cause.TimeoutError
2760
2747
  | SdkError
2761
2748
  | DBInstanceNotFoundFaultError
2762
2749
  | InvalidDBInstanceStateFaultError
@@ -2771,7 +2758,7 @@ interface RDSService$ {
2771
2758
  options?: HttpHandlerOptions,
2772
2759
  ): Effect.Effect<
2773
2760
  RebootDBShardGroupCommandOutput,
2774
- Cause.TimeoutException | SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
2761
+ Cause.TimeoutError | SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
2775
2762
  >;
2776
2763
 
2777
2764
  /**
@@ -2782,7 +2769,7 @@ interface RDSService$ {
2782
2769
  options?: HttpHandlerOptions,
2783
2770
  ): Effect.Effect<
2784
2771
  RegisterDBProxyTargetsCommandOutput,
2785
- | Cause.TimeoutException
2772
+ | Cause.TimeoutError
2786
2773
  | SdkError
2787
2774
  | DBClusterNotFoundFaultError
2788
2775
  | DBInstanceNotFoundFaultError
@@ -2803,7 +2790,7 @@ interface RDSService$ {
2803
2790
  options?: HttpHandlerOptions,
2804
2791
  ): Effect.Effect<
2805
2792
  RemoveFromGlobalClusterCommandOutput,
2806
- | Cause.TimeoutException
2793
+ | Cause.TimeoutError
2807
2794
  | SdkError
2808
2795
  | DBClusterNotFoundFaultError
2809
2796
  | GlobalClusterNotFoundFaultError
@@ -2819,7 +2806,7 @@ interface RDSService$ {
2819
2806
  options?: HttpHandlerOptions,
2820
2807
  ): Effect.Effect<
2821
2808
  RemoveRoleFromDBClusterCommandOutput,
2822
- | Cause.TimeoutException
2809
+ | Cause.TimeoutError
2823
2810
  | SdkError
2824
2811
  | DBClusterNotFoundFaultError
2825
2812
  | DBClusterRoleNotFoundFaultError
@@ -2834,7 +2821,7 @@ interface RDSService$ {
2834
2821
  options?: HttpHandlerOptions,
2835
2822
  ): Effect.Effect<
2836
2823
  RemoveRoleFromDBInstanceCommandOutput,
2837
- | Cause.TimeoutException
2824
+ | Cause.TimeoutError
2838
2825
  | SdkError
2839
2826
  | DBInstanceNotFoundFaultError
2840
2827
  | DBInstanceRoleNotFoundFaultError
@@ -2849,7 +2836,7 @@ interface RDSService$ {
2849
2836
  options?: HttpHandlerOptions,
2850
2837
  ): Effect.Effect<
2851
2838
  RemoveSourceIdentifierFromSubscriptionCommandOutput,
2852
- Cause.TimeoutException | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
2839
+ Cause.TimeoutError | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
2853
2840
  >;
2854
2841
 
2855
2842
  /**
@@ -2860,7 +2847,7 @@ interface RDSService$ {
2860
2847
  options?: HttpHandlerOptions,
2861
2848
  ): Effect.Effect<
2862
2849
  RemoveTagsFromResourceCommandOutput,
2863
- | Cause.TimeoutException
2850
+ | Cause.TimeoutError
2864
2851
  | SdkError
2865
2852
  | BlueGreenDeploymentNotFoundFaultError
2866
2853
  | DBClusterNotFoundFaultError
@@ -2886,7 +2873,7 @@ interface RDSService$ {
2886
2873
  options?: HttpHandlerOptions,
2887
2874
  ): Effect.Effect<
2888
2875
  ResetDBClusterParameterGroupCommandOutput,
2889
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2876
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2890
2877
  >;
2891
2878
 
2892
2879
  /**
@@ -2897,7 +2884,7 @@ interface RDSService$ {
2897
2884
  options?: HttpHandlerOptions,
2898
2885
  ): Effect.Effect<
2899
2886
  ResetDBParameterGroupCommandOutput,
2900
- Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2887
+ Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
2901
2888
  >;
2902
2889
 
2903
2890
  /**
@@ -2908,7 +2895,7 @@ interface RDSService$ {
2908
2895
  options?: HttpHandlerOptions,
2909
2896
  ): Effect.Effect<
2910
2897
  RestoreDBClusterFromS3CommandOutput,
2911
- | Cause.TimeoutException
2898
+ | Cause.TimeoutError
2912
2899
  | SdkError
2913
2900
  | DBClusterAlreadyExistsFaultError
2914
2901
  | DBClusterNotFoundFaultError
@@ -2936,7 +2923,7 @@ interface RDSService$ {
2936
2923
  options?: HttpHandlerOptions,
2937
2924
  ): Effect.Effect<
2938
2925
  RestoreDBClusterFromSnapshotCommandOutput,
2939
- | Cause.TimeoutException
2926
+ | Cause.TimeoutError
2940
2927
  | SdkError
2941
2928
  | DBClusterAlreadyExistsFaultError
2942
2929
  | DBClusterParameterGroupNotFoundFaultError
@@ -2971,7 +2958,7 @@ interface RDSService$ {
2971
2958
  options?: HttpHandlerOptions,
2972
2959
  ): Effect.Effect<
2973
2960
  RestoreDBClusterToPointInTimeCommandOutput,
2974
- | Cause.TimeoutException
2961
+ | Cause.TimeoutError
2975
2962
  | SdkError
2976
2963
  | DBClusterAlreadyExistsFaultError
2977
2964
  | DBClusterAutomatedBackupNotFoundFaultError
@@ -3006,7 +2993,7 @@ interface RDSService$ {
3006
2993
  options?: HttpHandlerOptions,
3007
2994
  ): Effect.Effect<
3008
2995
  RestoreDBInstanceFromDBSnapshotCommandOutput,
3009
- | Cause.TimeoutException
2996
+ | Cause.TimeoutError
3010
2997
  | SdkError
3011
2998
  | AuthorizationNotFoundFaultError
3012
2999
  | BackupPolicyNotFoundFaultError
@@ -3043,7 +3030,7 @@ interface RDSService$ {
3043
3030
  options?: HttpHandlerOptions,
3044
3031
  ): Effect.Effect<
3045
3032
  RestoreDBInstanceFromS3CommandOutput,
3046
- | Cause.TimeoutException
3033
+ | Cause.TimeoutError
3047
3034
  | SdkError
3048
3035
  | AuthorizationNotFoundFaultError
3049
3036
  | BackupPolicyNotFoundFaultError
@@ -3075,7 +3062,7 @@ interface RDSService$ {
3075
3062
  options?: HttpHandlerOptions,
3076
3063
  ): Effect.Effect<
3077
3064
  RestoreDBInstanceToPointInTimeCommandOutput,
3078
- | Cause.TimeoutException
3065
+ | Cause.TimeoutError
3079
3066
  | SdkError
3080
3067
  | AuthorizationNotFoundFaultError
3081
3068
  | BackupPolicyNotFoundFaultError
@@ -3113,7 +3100,7 @@ interface RDSService$ {
3113
3100
  options?: HttpHandlerOptions,
3114
3101
  ): Effect.Effect<
3115
3102
  RevokeDBSecurityGroupIngressCommandOutput,
3116
- | Cause.TimeoutException
3103
+ | Cause.TimeoutError
3117
3104
  | SdkError
3118
3105
  | AuthorizationNotFoundFaultError
3119
3106
  | DBSecurityGroupNotFoundFaultError
@@ -3128,7 +3115,7 @@ interface RDSService$ {
3128
3115
  options?: HttpHandlerOptions,
3129
3116
  ): Effect.Effect<
3130
3117
  StartActivityStreamCommandOutput,
3131
- | Cause.TimeoutException
3118
+ | Cause.TimeoutError
3132
3119
  | SdkError
3133
3120
  | DBClusterNotFoundFaultError
3134
3121
  | DBInstanceNotFoundFaultError
@@ -3146,7 +3133,7 @@ interface RDSService$ {
3146
3133
  options?: HttpHandlerOptions,
3147
3134
  ): Effect.Effect<
3148
3135
  StartDBClusterCommandOutput,
3149
- | Cause.TimeoutException
3136
+ | Cause.TimeoutError
3150
3137
  | SdkError
3151
3138
  | DBClusterNotFoundFaultError
3152
3139
  | InvalidDBClusterStateFaultError
@@ -3164,7 +3151,7 @@ interface RDSService$ {
3164
3151
  options?: HttpHandlerOptions,
3165
3152
  ): Effect.Effect<
3166
3153
  StartDBInstanceCommandOutput,
3167
- | Cause.TimeoutException
3154
+ | Cause.TimeoutError
3168
3155
  | SdkError
3169
3156
  | AuthorizationNotFoundFaultError
3170
3157
  | DBClusterNotFoundFaultError
@@ -3188,7 +3175,7 @@ interface RDSService$ {
3188
3175
  options?: HttpHandlerOptions,
3189
3176
  ): Effect.Effect<
3190
3177
  StartDBInstanceAutomatedBackupsReplicationCommandOutput,
3191
- | Cause.TimeoutException
3178
+ | Cause.TimeoutError
3192
3179
  | SdkError
3193
3180
  | DBInstanceAutomatedBackupQuotaExceededFaultError
3194
3181
  | DBInstanceNotFoundFaultError
@@ -3206,7 +3193,7 @@ interface RDSService$ {
3206
3193
  options?: HttpHandlerOptions,
3207
3194
  ): Effect.Effect<
3208
3195
  StartExportTaskCommandOutput,
3209
- | Cause.TimeoutException
3196
+ | Cause.TimeoutError
3210
3197
  | SdkError
3211
3198
  | DBClusterNotFoundFaultError
3212
3199
  | DBClusterSnapshotNotFoundFaultError
@@ -3228,7 +3215,7 @@ interface RDSService$ {
3228
3215
  options?: HttpHandlerOptions,
3229
3216
  ): Effect.Effect<
3230
3217
  StopActivityStreamCommandOutput,
3231
- | Cause.TimeoutException
3218
+ | Cause.TimeoutError
3232
3219
  | SdkError
3233
3220
  | DBClusterNotFoundFaultError
3234
3221
  | DBInstanceNotFoundFaultError
@@ -3245,7 +3232,7 @@ interface RDSService$ {
3245
3232
  options?: HttpHandlerOptions,
3246
3233
  ): Effect.Effect<
3247
3234
  StopDBClusterCommandOutput,
3248
- | Cause.TimeoutException
3235
+ | Cause.TimeoutError
3249
3236
  | SdkError
3250
3237
  | DBClusterNotFoundFaultError
3251
3238
  | InvalidDBClusterStateFaultError
@@ -3261,7 +3248,7 @@ interface RDSService$ {
3261
3248
  options?: HttpHandlerOptions,
3262
3249
  ): Effect.Effect<
3263
3250
  StopDBInstanceCommandOutput,
3264
- | Cause.TimeoutException
3251
+ | Cause.TimeoutError
3265
3252
  | SdkError
3266
3253
  | DBInstanceNotFoundFaultError
3267
3254
  | DBSnapshotAlreadyExistsFaultError
@@ -3278,7 +3265,7 @@ interface RDSService$ {
3278
3265
  options?: HttpHandlerOptions,
3279
3266
  ): Effect.Effect<
3280
3267
  StopDBInstanceAutomatedBackupsReplicationCommandOutput,
3281
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
3268
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
3282
3269
  >;
3283
3270
 
3284
3271
  /**
@@ -3289,10 +3276,7 @@ interface RDSService$ {
3289
3276
  options?: HttpHandlerOptions,
3290
3277
  ): Effect.Effect<
3291
3278
  SwitchoverBlueGreenDeploymentCommandOutput,
3292
- | Cause.TimeoutException
3293
- | SdkError
3294
- | BlueGreenDeploymentNotFoundFaultError
3295
- | InvalidBlueGreenDeploymentStateFaultError
3279
+ Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError | InvalidBlueGreenDeploymentStateFaultError
3296
3280
  >;
3297
3281
 
3298
3282
  /**
@@ -3303,7 +3287,7 @@ interface RDSService$ {
3303
3287
  options?: HttpHandlerOptions,
3304
3288
  ): Effect.Effect<
3305
3289
  SwitchoverGlobalClusterCommandOutput,
3306
- | Cause.TimeoutException
3290
+ | Cause.TimeoutError
3307
3291
  | SdkError
3308
3292
  | DBClusterNotFoundFaultError
3309
3293
  | GlobalClusterNotFoundFaultError
@@ -3319,7 +3303,7 @@ interface RDSService$ {
3319
3303
  options?: HttpHandlerOptions,
3320
3304
  ): Effect.Effect<
3321
3305
  SwitchoverReadReplicaCommandOutput,
3322
- Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
3306
+ Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
3323
3307
  >;
3324
3308
  }
3325
3309
 
@@ -3344,10 +3328,10 @@ export const makeRDSService = Effect.gen(function*() {
3344
3328
  * @since 1.0.0
3345
3329
  * @category models
3346
3330
  */
3347
- export class RDSService extends Effect.Tag("@effect-aws/client-rds/RDSService")<
3331
+ export class RDSService extends ServiceMap.Service<
3348
3332
  RDSService,
3349
3333
  RDSService$
3350
- >() {
3334
+ >()("@effect-aws/client-rds/RDSService") {
3351
3335
  static readonly defaultLayer = Layer.effect(this, makeRDSService).pipe(Layer.provide(Instance.layer));
3352
3336
  static readonly layer = (config: RDSService.Config) =>
3353
3337
  Layer.effect(this, makeRDSService).pipe(