@effect-aws/client-rds 1.10.9 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +3 -3
- package/dist/dts/RDSClientInstance.d.ts +4 -2
- package/dist/dts/RDSClientInstance.d.ts.map +1 -1
- package/dist/dts/RDSService.d.ts +168 -168
- package/dist/dts/RDSService.d.ts.map +1 -1
- package/dist/dts/RDSServiceConfig.d.ts +2 -1
- package/dist/dts/RDSServiceConfig.d.ts.map +1 -1
- package/dist/esm/RDSClientInstance.js +5 -3
- package/dist/esm/RDSClientInstance.js.map +1 -1
- package/dist/esm/RDSService.js +4 -2
- package/dist/esm/RDSService.js.map +1 -1
- package/dist/esm/RDSServiceConfig.js +7 -6
- package/dist/esm/RDSServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/RDSClientInstance.ts +6 -4
- package/src/RDSService.ts +169 -183
- package/src/RDSServiceConfig.ts +8 -7
- package/dist/cjs/Errors.d.ts +0 -153
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -152
- package/dist/cjs/Errors.js.map +0 -1
- package/dist/cjs/RDSClientInstance.d.ts +0 -24
- package/dist/cjs/RDSClientInstance.d.ts.map +0 -1
- package/dist/cjs/RDSClientInstance.js +0 -50
- package/dist/cjs/RDSClientInstance.js.map +0 -1
- package/dist/cjs/RDSService.d.ts +0 -698
- package/dist/cjs/RDSService.d.ts.map +0 -1
- package/dist/cjs/RDSService.js +0 -222
- package/dist/cjs/RDSService.js.map +0 -1
- package/dist/cjs/RDSServiceConfig.d.ts +0 -25
- package/dist/cjs/RDSServiceConfig.d.ts.map +0 -1
- package/dist/cjs/RDSServiceConfig.js +0 -35
- package/dist/cjs/RDSServiceConfig.js.map +0 -1
- package/dist/cjs/index.d.ts +0 -44
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -56
- package/dist/cjs/index.js.map +0 -1
package/src/RDSService.ts
CHANGED
|
@@ -496,8 +496,10 @@ import {
|
|
|
496
496
|
} from "@aws-sdk/client-rds";
|
|
497
497
|
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
498
498
|
import { Service } from "@effect-aws/commons";
|
|
499
|
-
import type
|
|
500
|
-
import
|
|
499
|
+
import type * as Cause from "effect/Cause";
|
|
500
|
+
import * as Effect from "effect/Effect";
|
|
501
|
+
import * as Layer from "effect/Layer";
|
|
502
|
+
import * as ServiceMap from "effect/ServiceMap";
|
|
501
503
|
import type {
|
|
502
504
|
AuthorizationAlreadyExistsFaultError,
|
|
503
505
|
AuthorizationNotFoundFaultError,
|
|
@@ -828,7 +830,7 @@ interface RDSService$ {
|
|
|
828
830
|
options?: HttpHandlerOptions,
|
|
829
831
|
): Effect.Effect<
|
|
830
832
|
AddRoleToDBClusterCommandOutput,
|
|
831
|
-
| Cause.
|
|
833
|
+
| Cause.TimeoutError
|
|
832
834
|
| SdkError
|
|
833
835
|
| DBClusterNotFoundFaultError
|
|
834
836
|
| DBClusterRoleAlreadyExistsFaultError
|
|
@@ -844,7 +846,7 @@ interface RDSService$ {
|
|
|
844
846
|
options?: HttpHandlerOptions,
|
|
845
847
|
): Effect.Effect<
|
|
846
848
|
AddRoleToDBInstanceCommandOutput,
|
|
847
|
-
| Cause.
|
|
849
|
+
| Cause.TimeoutError
|
|
848
850
|
| SdkError
|
|
849
851
|
| DBInstanceNotFoundFaultError
|
|
850
852
|
| DBInstanceRoleAlreadyExistsFaultError
|
|
@@ -860,7 +862,7 @@ interface RDSService$ {
|
|
|
860
862
|
options?: HttpHandlerOptions,
|
|
861
863
|
): Effect.Effect<
|
|
862
864
|
AddSourceIdentifierToSubscriptionCommandOutput,
|
|
863
|
-
Cause.
|
|
865
|
+
Cause.TimeoutError | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
864
866
|
>;
|
|
865
867
|
|
|
866
868
|
/**
|
|
@@ -871,7 +873,7 @@ interface RDSService$ {
|
|
|
871
873
|
options?: HttpHandlerOptions,
|
|
872
874
|
): Effect.Effect<
|
|
873
875
|
AddTagsToResourceCommandOutput,
|
|
874
|
-
| Cause.
|
|
876
|
+
| Cause.TimeoutError
|
|
875
877
|
| SdkError
|
|
876
878
|
| BlueGreenDeploymentNotFoundFaultError
|
|
877
879
|
| DBClusterNotFoundFaultError
|
|
@@ -897,7 +899,7 @@ interface RDSService$ {
|
|
|
897
899
|
options?: HttpHandlerOptions,
|
|
898
900
|
): Effect.Effect<
|
|
899
901
|
ApplyPendingMaintenanceActionCommandOutput,
|
|
900
|
-
| Cause.
|
|
902
|
+
| Cause.TimeoutError
|
|
901
903
|
| SdkError
|
|
902
904
|
| InvalidDBClusterStateFaultError
|
|
903
905
|
| InvalidDBInstanceStateFaultError
|
|
@@ -912,7 +914,7 @@ interface RDSService$ {
|
|
|
912
914
|
options?: HttpHandlerOptions,
|
|
913
915
|
): Effect.Effect<
|
|
914
916
|
AuthorizeDBSecurityGroupIngressCommandOutput,
|
|
915
|
-
| Cause.
|
|
917
|
+
| Cause.TimeoutError
|
|
916
918
|
| SdkError
|
|
917
919
|
| AuthorizationAlreadyExistsFaultError
|
|
918
920
|
| AuthorizationQuotaExceededFaultError
|
|
@@ -928,7 +930,7 @@ interface RDSService$ {
|
|
|
928
930
|
options?: HttpHandlerOptions,
|
|
929
931
|
): Effect.Effect<
|
|
930
932
|
BacktrackDBClusterCommandOutput,
|
|
931
|
-
Cause.
|
|
933
|
+
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
932
934
|
>;
|
|
933
935
|
|
|
934
936
|
/**
|
|
@@ -939,7 +941,7 @@ interface RDSService$ {
|
|
|
939
941
|
options?: HttpHandlerOptions,
|
|
940
942
|
): Effect.Effect<
|
|
941
943
|
CancelExportTaskCommandOutput,
|
|
942
|
-
Cause.
|
|
944
|
+
Cause.TimeoutError | SdkError | ExportTaskNotFoundFaultError | InvalidExportTaskStateFaultError
|
|
943
945
|
>;
|
|
944
946
|
|
|
945
947
|
/**
|
|
@@ -950,7 +952,7 @@ interface RDSService$ {
|
|
|
950
952
|
options?: HttpHandlerOptions,
|
|
951
953
|
): Effect.Effect<
|
|
952
954
|
CopyDBClusterParameterGroupCommandOutput,
|
|
953
|
-
| Cause.
|
|
955
|
+
| Cause.TimeoutError
|
|
954
956
|
| SdkError
|
|
955
957
|
| DBParameterGroupAlreadyExistsFaultError
|
|
956
958
|
| DBParameterGroupNotFoundFaultError
|
|
@@ -965,7 +967,7 @@ interface RDSService$ {
|
|
|
965
967
|
options?: HttpHandlerOptions,
|
|
966
968
|
): Effect.Effect<
|
|
967
969
|
CopyDBClusterSnapshotCommandOutput,
|
|
968
|
-
| Cause.
|
|
970
|
+
| Cause.TimeoutError
|
|
969
971
|
| SdkError
|
|
970
972
|
| DBClusterSnapshotAlreadyExistsFaultError
|
|
971
973
|
| DBClusterSnapshotNotFoundFaultError
|
|
@@ -983,7 +985,7 @@ interface RDSService$ {
|
|
|
983
985
|
options?: HttpHandlerOptions,
|
|
984
986
|
): Effect.Effect<
|
|
985
987
|
CopyDBParameterGroupCommandOutput,
|
|
986
|
-
| Cause.
|
|
988
|
+
| Cause.TimeoutError
|
|
987
989
|
| SdkError
|
|
988
990
|
| DBParameterGroupAlreadyExistsFaultError
|
|
989
991
|
| DBParameterGroupNotFoundFaultError
|
|
@@ -998,7 +1000,7 @@ interface RDSService$ {
|
|
|
998
1000
|
options?: HttpHandlerOptions,
|
|
999
1001
|
): Effect.Effect<
|
|
1000
1002
|
CopyDBSnapshotCommandOutput,
|
|
1001
|
-
| Cause.
|
|
1003
|
+
| Cause.TimeoutError
|
|
1002
1004
|
| SdkError
|
|
1003
1005
|
| CustomAvailabilityZoneNotFoundFaultError
|
|
1004
1006
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -1016,7 +1018,7 @@ interface RDSService$ {
|
|
|
1016
1018
|
options?: HttpHandlerOptions,
|
|
1017
1019
|
): Effect.Effect<
|
|
1018
1020
|
CopyOptionGroupCommandOutput,
|
|
1019
|
-
| Cause.
|
|
1021
|
+
| Cause.TimeoutError
|
|
1020
1022
|
| SdkError
|
|
1021
1023
|
| OptionGroupAlreadyExistsFaultError
|
|
1022
1024
|
| OptionGroupNotFoundFaultError
|
|
@@ -1031,7 +1033,7 @@ interface RDSService$ {
|
|
|
1031
1033
|
options?: HttpHandlerOptions,
|
|
1032
1034
|
): Effect.Effect<
|
|
1033
1035
|
CreateBlueGreenDeploymentCommandOutput,
|
|
1034
|
-
| Cause.
|
|
1036
|
+
| Cause.TimeoutError
|
|
1035
1037
|
| SdkError
|
|
1036
1038
|
| BlueGreenDeploymentAlreadyExistsFaultError
|
|
1037
1039
|
| DBClusterNotFoundFaultError
|
|
@@ -1055,7 +1057,7 @@ interface RDSService$ {
|
|
|
1055
1057
|
options?: HttpHandlerOptions,
|
|
1056
1058
|
): Effect.Effect<
|
|
1057
1059
|
CreateCustomDBEngineVersionCommandOutput,
|
|
1058
|
-
| Cause.
|
|
1060
|
+
| Cause.TimeoutError
|
|
1059
1061
|
| SdkError
|
|
1060
1062
|
| CreateCustomDBEngineVersionFaultError
|
|
1061
1063
|
| CustomDBEngineVersionAlreadyExistsFaultError
|
|
@@ -1074,7 +1076,7 @@ interface RDSService$ {
|
|
|
1074
1076
|
options?: HttpHandlerOptions,
|
|
1075
1077
|
): Effect.Effect<
|
|
1076
1078
|
CreateDBClusterCommandOutput,
|
|
1077
|
-
| Cause.
|
|
1079
|
+
| Cause.TimeoutError
|
|
1078
1080
|
| SdkError
|
|
1079
1081
|
| DBClusterAlreadyExistsFaultError
|
|
1080
1082
|
| DBClusterNotFoundFaultError
|
|
@@ -1110,7 +1112,7 @@ interface RDSService$ {
|
|
|
1110
1112
|
options?: HttpHandlerOptions,
|
|
1111
1113
|
): Effect.Effect<
|
|
1112
1114
|
CreateDBClusterEndpointCommandOutput,
|
|
1113
|
-
| Cause.
|
|
1115
|
+
| Cause.TimeoutError
|
|
1114
1116
|
| SdkError
|
|
1115
1117
|
| DBClusterEndpointAlreadyExistsFaultError
|
|
1116
1118
|
| DBClusterEndpointQuotaExceededFaultError
|
|
@@ -1128,10 +1130,7 @@ interface RDSService$ {
|
|
|
1128
1130
|
options?: HttpHandlerOptions,
|
|
1129
1131
|
): Effect.Effect<
|
|
1130
1132
|
CreateDBClusterParameterGroupCommandOutput,
|
|
1131
|
-
|
|
|
1132
|
-
| SdkError
|
|
1133
|
-
| DBParameterGroupAlreadyExistsFaultError
|
|
1134
|
-
| DBParameterGroupQuotaExceededFaultError
|
|
1133
|
+
Cause.TimeoutError | SdkError | DBParameterGroupAlreadyExistsFaultError | DBParameterGroupQuotaExceededFaultError
|
|
1135
1134
|
>;
|
|
1136
1135
|
|
|
1137
1136
|
/**
|
|
@@ -1142,7 +1141,7 @@ interface RDSService$ {
|
|
|
1142
1141
|
options?: HttpHandlerOptions,
|
|
1143
1142
|
): Effect.Effect<
|
|
1144
1143
|
CreateDBClusterSnapshotCommandOutput,
|
|
1145
|
-
| Cause.
|
|
1144
|
+
| Cause.TimeoutError
|
|
1146
1145
|
| SdkError
|
|
1147
1146
|
| DBClusterNotFoundFaultError
|
|
1148
1147
|
| DBClusterSnapshotAlreadyExistsFaultError
|
|
@@ -1159,7 +1158,7 @@ interface RDSService$ {
|
|
|
1159
1158
|
options?: HttpHandlerOptions,
|
|
1160
1159
|
): Effect.Effect<
|
|
1161
1160
|
CreateDBInstanceCommandOutput,
|
|
1162
|
-
| Cause.
|
|
1161
|
+
| Cause.TimeoutError
|
|
1163
1162
|
| SdkError
|
|
1164
1163
|
| AuthorizationNotFoundFaultError
|
|
1165
1164
|
| BackupPolicyNotFoundFaultError
|
|
@@ -1194,7 +1193,7 @@ interface RDSService$ {
|
|
|
1194
1193
|
options?: HttpHandlerOptions,
|
|
1195
1194
|
): Effect.Effect<
|
|
1196
1195
|
CreateDBInstanceReadReplicaCommandOutput,
|
|
1197
|
-
| Cause.
|
|
1196
|
+
| Cause.TimeoutError
|
|
1198
1197
|
| SdkError
|
|
1199
1198
|
| CertificateNotFoundFaultError
|
|
1200
1199
|
| DBClusterNotFoundFaultError
|
|
@@ -1231,10 +1230,7 @@ interface RDSService$ {
|
|
|
1231
1230
|
options?: HttpHandlerOptions,
|
|
1232
1231
|
): Effect.Effect<
|
|
1233
1232
|
CreateDBParameterGroupCommandOutput,
|
|
1234
|
-
|
|
|
1235
|
-
| SdkError
|
|
1236
|
-
| DBParameterGroupAlreadyExistsFaultError
|
|
1237
|
-
| DBParameterGroupQuotaExceededFaultError
|
|
1233
|
+
Cause.TimeoutError | SdkError | DBParameterGroupAlreadyExistsFaultError | DBParameterGroupQuotaExceededFaultError
|
|
1238
1234
|
>;
|
|
1239
1235
|
|
|
1240
1236
|
/**
|
|
@@ -1245,11 +1241,7 @@ interface RDSService$ {
|
|
|
1245
1241
|
options?: HttpHandlerOptions,
|
|
1246
1242
|
): Effect.Effect<
|
|
1247
1243
|
CreateDBProxyCommandOutput,
|
|
1248
|
-
|
|
|
1249
|
-
| SdkError
|
|
1250
|
-
| DBProxyAlreadyExistsFaultError
|
|
1251
|
-
| DBProxyQuotaExceededFaultError
|
|
1252
|
-
| InvalidSubnetError
|
|
1244
|
+
Cause.TimeoutError | SdkError | DBProxyAlreadyExistsFaultError | DBProxyQuotaExceededFaultError | InvalidSubnetError
|
|
1253
1245
|
>;
|
|
1254
1246
|
|
|
1255
1247
|
/**
|
|
@@ -1260,7 +1252,7 @@ interface RDSService$ {
|
|
|
1260
1252
|
options?: HttpHandlerOptions,
|
|
1261
1253
|
): Effect.Effect<
|
|
1262
1254
|
CreateDBProxyEndpointCommandOutput,
|
|
1263
|
-
| Cause.
|
|
1255
|
+
| Cause.TimeoutError
|
|
1264
1256
|
| SdkError
|
|
1265
1257
|
| DBProxyEndpointAlreadyExistsFaultError
|
|
1266
1258
|
| DBProxyEndpointQuotaExceededFaultError
|
|
@@ -1277,7 +1269,7 @@ interface RDSService$ {
|
|
|
1277
1269
|
options?: HttpHandlerOptions,
|
|
1278
1270
|
): Effect.Effect<
|
|
1279
1271
|
CreateDBSecurityGroupCommandOutput,
|
|
1280
|
-
| Cause.
|
|
1272
|
+
| Cause.TimeoutError
|
|
1281
1273
|
| SdkError
|
|
1282
1274
|
| DBSecurityGroupAlreadyExistsFaultError
|
|
1283
1275
|
| DBSecurityGroupNotSupportedFaultError
|
|
@@ -1292,7 +1284,7 @@ interface RDSService$ {
|
|
|
1292
1284
|
options?: HttpHandlerOptions,
|
|
1293
1285
|
): Effect.Effect<
|
|
1294
1286
|
CreateDBShardGroupCommandOutput,
|
|
1295
|
-
| Cause.
|
|
1287
|
+
| Cause.TimeoutError
|
|
1296
1288
|
| SdkError
|
|
1297
1289
|
| DBClusterNotFoundFaultError
|
|
1298
1290
|
| DBShardGroupAlreadyExistsFaultError
|
|
@@ -1311,7 +1303,7 @@ interface RDSService$ {
|
|
|
1311
1303
|
options?: HttpHandlerOptions,
|
|
1312
1304
|
): Effect.Effect<
|
|
1313
1305
|
CreateDBSnapshotCommandOutput,
|
|
1314
|
-
| Cause.
|
|
1306
|
+
| Cause.TimeoutError
|
|
1315
1307
|
| SdkError
|
|
1316
1308
|
| DBInstanceNotFoundFaultError
|
|
1317
1309
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -1327,7 +1319,7 @@ interface RDSService$ {
|
|
|
1327
1319
|
options?: HttpHandlerOptions,
|
|
1328
1320
|
): Effect.Effect<
|
|
1329
1321
|
CreateDBSubnetGroupCommandOutput,
|
|
1330
|
-
| Cause.
|
|
1322
|
+
| Cause.TimeoutError
|
|
1331
1323
|
| SdkError
|
|
1332
1324
|
| DBSubnetGroupAlreadyExistsFaultError
|
|
1333
1325
|
| DBSubnetGroupDoesNotCoverEnoughAZsError
|
|
@@ -1344,7 +1336,7 @@ interface RDSService$ {
|
|
|
1344
1336
|
options?: HttpHandlerOptions,
|
|
1345
1337
|
): Effect.Effect<
|
|
1346
1338
|
CreateEventSubscriptionCommandOutput,
|
|
1347
|
-
| Cause.
|
|
1339
|
+
| Cause.TimeoutError
|
|
1348
1340
|
| SdkError
|
|
1349
1341
|
| EventSubscriptionQuotaExceededFaultError
|
|
1350
1342
|
| SNSInvalidTopicFaultError
|
|
@@ -1363,7 +1355,7 @@ interface RDSService$ {
|
|
|
1363
1355
|
options?: HttpHandlerOptions,
|
|
1364
1356
|
): Effect.Effect<
|
|
1365
1357
|
CreateGlobalClusterCommandOutput,
|
|
1366
|
-
| Cause.
|
|
1358
|
+
| Cause.TimeoutError
|
|
1367
1359
|
| SdkError
|
|
1368
1360
|
| DBClusterNotFoundFaultError
|
|
1369
1361
|
| GlobalClusterAlreadyExistsFaultError
|
|
@@ -1381,7 +1373,7 @@ interface RDSService$ {
|
|
|
1381
1373
|
options?: HttpHandlerOptions,
|
|
1382
1374
|
): Effect.Effect<
|
|
1383
1375
|
CreateIntegrationCommandOutput,
|
|
1384
|
-
| Cause.
|
|
1376
|
+
| Cause.TimeoutError
|
|
1385
1377
|
| SdkError
|
|
1386
1378
|
| DBClusterNotFoundFaultError
|
|
1387
1379
|
| DBInstanceNotFoundFaultError
|
|
@@ -1399,7 +1391,7 @@ interface RDSService$ {
|
|
|
1399
1391
|
options?: HttpHandlerOptions,
|
|
1400
1392
|
): Effect.Effect<
|
|
1401
1393
|
CreateOptionGroupCommandOutput,
|
|
1402
|
-
Cause.
|
|
1394
|
+
Cause.TimeoutError | SdkError | OptionGroupAlreadyExistsFaultError | OptionGroupQuotaExceededFaultError
|
|
1403
1395
|
>;
|
|
1404
1396
|
|
|
1405
1397
|
/**
|
|
@@ -1410,7 +1402,7 @@ interface RDSService$ {
|
|
|
1410
1402
|
options?: HttpHandlerOptions,
|
|
1411
1403
|
): Effect.Effect<
|
|
1412
1404
|
CreateTenantDatabaseCommandOutput,
|
|
1413
|
-
| Cause.
|
|
1405
|
+
| Cause.TimeoutError
|
|
1414
1406
|
| SdkError
|
|
1415
1407
|
| DBInstanceNotFoundFaultError
|
|
1416
1408
|
| InvalidDBInstanceStateFaultError
|
|
@@ -1427,10 +1419,7 @@ interface RDSService$ {
|
|
|
1427
1419
|
options?: HttpHandlerOptions,
|
|
1428
1420
|
): Effect.Effect<
|
|
1429
1421
|
DeleteBlueGreenDeploymentCommandOutput,
|
|
1430
|
-
|
|
|
1431
|
-
| SdkError
|
|
1432
|
-
| BlueGreenDeploymentNotFoundFaultError
|
|
1433
|
-
| InvalidBlueGreenDeploymentStateFaultError
|
|
1422
|
+
Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError | InvalidBlueGreenDeploymentStateFaultError
|
|
1434
1423
|
>;
|
|
1435
1424
|
|
|
1436
1425
|
/**
|
|
@@ -1441,7 +1430,7 @@ interface RDSService$ {
|
|
|
1441
1430
|
options?: HttpHandlerOptions,
|
|
1442
1431
|
): Effect.Effect<
|
|
1443
1432
|
DeleteCustomDBEngineVersionCommandOutput,
|
|
1444
|
-
| Cause.
|
|
1433
|
+
| Cause.TimeoutError
|
|
1445
1434
|
| SdkError
|
|
1446
1435
|
| CustomDBEngineVersionNotFoundFaultError
|
|
1447
1436
|
| InvalidCustomDBEngineVersionStateFaultError
|
|
@@ -1455,7 +1444,7 @@ interface RDSService$ {
|
|
|
1455
1444
|
options?: HttpHandlerOptions,
|
|
1456
1445
|
): Effect.Effect<
|
|
1457
1446
|
DeleteDBClusterCommandOutput,
|
|
1458
|
-
| Cause.
|
|
1447
|
+
| Cause.TimeoutError
|
|
1459
1448
|
| SdkError
|
|
1460
1449
|
| DBClusterAutomatedBackupQuotaExceededFaultError
|
|
1461
1450
|
| DBClusterNotFoundFaultError
|
|
@@ -1475,7 +1464,7 @@ interface RDSService$ {
|
|
|
1475
1464
|
options?: HttpHandlerOptions,
|
|
1476
1465
|
): Effect.Effect<
|
|
1477
1466
|
DeleteDBClusterAutomatedBackupCommandOutput,
|
|
1478
|
-
| Cause.
|
|
1467
|
+
| Cause.TimeoutError
|
|
1479
1468
|
| SdkError
|
|
1480
1469
|
| DBClusterAutomatedBackupNotFoundFaultError
|
|
1481
1470
|
| InvalidDBClusterAutomatedBackupStateFaultError
|
|
@@ -1489,7 +1478,7 @@ interface RDSService$ {
|
|
|
1489
1478
|
options?: HttpHandlerOptions,
|
|
1490
1479
|
): Effect.Effect<
|
|
1491
1480
|
DeleteDBClusterEndpointCommandOutput,
|
|
1492
|
-
| Cause.
|
|
1481
|
+
| Cause.TimeoutError
|
|
1493
1482
|
| SdkError
|
|
1494
1483
|
| DBClusterEndpointNotFoundFaultError
|
|
1495
1484
|
| InvalidDBClusterEndpointStateFaultError
|
|
@@ -1504,7 +1493,7 @@ interface RDSService$ {
|
|
|
1504
1493
|
options?: HttpHandlerOptions,
|
|
1505
1494
|
): Effect.Effect<
|
|
1506
1495
|
DeleteDBClusterParameterGroupCommandOutput,
|
|
1507
|
-
Cause.
|
|
1496
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1508
1497
|
>;
|
|
1509
1498
|
|
|
1510
1499
|
/**
|
|
@@ -1515,7 +1504,7 @@ interface RDSService$ {
|
|
|
1515
1504
|
options?: HttpHandlerOptions,
|
|
1516
1505
|
): Effect.Effect<
|
|
1517
1506
|
DeleteDBClusterSnapshotCommandOutput,
|
|
1518
|
-
Cause.
|
|
1507
|
+
Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError | InvalidDBClusterSnapshotStateFaultError
|
|
1519
1508
|
>;
|
|
1520
1509
|
|
|
1521
1510
|
/**
|
|
@@ -1526,7 +1515,7 @@ interface RDSService$ {
|
|
|
1526
1515
|
options?: HttpHandlerOptions,
|
|
1527
1516
|
): Effect.Effect<
|
|
1528
1517
|
DeleteDBInstanceCommandOutput,
|
|
1529
|
-
| Cause.
|
|
1518
|
+
| Cause.TimeoutError
|
|
1530
1519
|
| SdkError
|
|
1531
1520
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
1532
1521
|
| DBInstanceNotFoundFaultError
|
|
@@ -1545,7 +1534,7 @@ interface RDSService$ {
|
|
|
1545
1534
|
options?: HttpHandlerOptions,
|
|
1546
1535
|
): Effect.Effect<
|
|
1547
1536
|
DeleteDBInstanceAutomatedBackupCommandOutput,
|
|
1548
|
-
| Cause.
|
|
1537
|
+
| Cause.TimeoutError
|
|
1549
1538
|
| SdkError
|
|
1550
1539
|
| DBInstanceAutomatedBackupNotFoundFaultError
|
|
1551
1540
|
| InvalidDBInstanceAutomatedBackupStateFaultError
|
|
@@ -1559,7 +1548,7 @@ interface RDSService$ {
|
|
|
1559
1548
|
options?: HttpHandlerOptions,
|
|
1560
1549
|
): Effect.Effect<
|
|
1561
1550
|
DeleteDBParameterGroupCommandOutput,
|
|
1562
|
-
Cause.
|
|
1551
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
1563
1552
|
>;
|
|
1564
1553
|
|
|
1565
1554
|
/**
|
|
@@ -1570,7 +1559,7 @@ interface RDSService$ {
|
|
|
1570
1559
|
options?: HttpHandlerOptions,
|
|
1571
1560
|
): Effect.Effect<
|
|
1572
1561
|
DeleteDBProxyCommandOutput,
|
|
1573
|
-
Cause.
|
|
1562
|
+
Cause.TimeoutError | SdkError | DBProxyNotFoundFaultError | InvalidDBProxyStateFaultError
|
|
1574
1563
|
>;
|
|
1575
1564
|
|
|
1576
1565
|
/**
|
|
@@ -1581,7 +1570,7 @@ interface RDSService$ {
|
|
|
1581
1570
|
options?: HttpHandlerOptions,
|
|
1582
1571
|
): Effect.Effect<
|
|
1583
1572
|
DeleteDBProxyEndpointCommandOutput,
|
|
1584
|
-
Cause.
|
|
1573
|
+
Cause.TimeoutError | SdkError | DBProxyEndpointNotFoundFaultError | InvalidDBProxyEndpointStateFaultError
|
|
1585
1574
|
>;
|
|
1586
1575
|
|
|
1587
1576
|
/**
|
|
@@ -1592,7 +1581,7 @@ interface RDSService$ {
|
|
|
1592
1581
|
options?: HttpHandlerOptions,
|
|
1593
1582
|
): Effect.Effect<
|
|
1594
1583
|
DeleteDBSecurityGroupCommandOutput,
|
|
1595
|
-
Cause.
|
|
1584
|
+
Cause.TimeoutError | SdkError | DBSecurityGroupNotFoundFaultError | InvalidDBSecurityGroupStateFaultError
|
|
1596
1585
|
>;
|
|
1597
1586
|
|
|
1598
1587
|
/**
|
|
@@ -1603,7 +1592,7 @@ interface RDSService$ {
|
|
|
1603
1592
|
options?: HttpHandlerOptions,
|
|
1604
1593
|
): Effect.Effect<
|
|
1605
1594
|
DeleteDBShardGroupCommandOutput,
|
|
1606
|
-
| Cause.
|
|
1595
|
+
| Cause.TimeoutError
|
|
1607
1596
|
| SdkError
|
|
1608
1597
|
| DBShardGroupNotFoundFaultError
|
|
1609
1598
|
| InvalidDBClusterStateFaultError
|
|
@@ -1618,7 +1607,7 @@ interface RDSService$ {
|
|
|
1618
1607
|
options?: HttpHandlerOptions,
|
|
1619
1608
|
): Effect.Effect<
|
|
1620
1609
|
DeleteDBSnapshotCommandOutput,
|
|
1621
|
-
Cause.
|
|
1610
|
+
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError | InvalidDBSnapshotStateFaultError
|
|
1622
1611
|
>;
|
|
1623
1612
|
|
|
1624
1613
|
/**
|
|
@@ -1629,7 +1618,7 @@ interface RDSService$ {
|
|
|
1629
1618
|
options?: HttpHandlerOptions,
|
|
1630
1619
|
): Effect.Effect<
|
|
1631
1620
|
DeleteDBSubnetGroupCommandOutput,
|
|
1632
|
-
| Cause.
|
|
1621
|
+
| Cause.TimeoutError
|
|
1633
1622
|
| SdkError
|
|
1634
1623
|
| DBSubnetGroupNotFoundFaultError
|
|
1635
1624
|
| InvalidDBSubnetGroupStateFaultError
|
|
@@ -1644,7 +1633,7 @@ interface RDSService$ {
|
|
|
1644
1633
|
options?: HttpHandlerOptions,
|
|
1645
1634
|
): Effect.Effect<
|
|
1646
1635
|
DeleteEventSubscriptionCommandOutput,
|
|
1647
|
-
Cause.
|
|
1636
|
+
Cause.TimeoutError | SdkError | InvalidEventSubscriptionStateFaultError | SubscriptionNotFoundFaultError
|
|
1648
1637
|
>;
|
|
1649
1638
|
|
|
1650
1639
|
/**
|
|
@@ -1655,7 +1644,7 @@ interface RDSService$ {
|
|
|
1655
1644
|
options?: HttpHandlerOptions,
|
|
1656
1645
|
): Effect.Effect<
|
|
1657
1646
|
DeleteGlobalClusterCommandOutput,
|
|
1658
|
-
Cause.
|
|
1647
|
+
Cause.TimeoutError | SdkError | GlobalClusterNotFoundFaultError | InvalidGlobalClusterStateFaultError
|
|
1659
1648
|
>;
|
|
1660
1649
|
|
|
1661
1650
|
/**
|
|
@@ -1666,7 +1655,7 @@ interface RDSService$ {
|
|
|
1666
1655
|
options?: HttpHandlerOptions,
|
|
1667
1656
|
): Effect.Effect<
|
|
1668
1657
|
DeleteIntegrationCommandOutput,
|
|
1669
|
-
| Cause.
|
|
1658
|
+
| Cause.TimeoutError
|
|
1670
1659
|
| SdkError
|
|
1671
1660
|
| IntegrationConflictOperationFaultError
|
|
1672
1661
|
| IntegrationNotFoundFaultError
|
|
@@ -1681,7 +1670,7 @@ interface RDSService$ {
|
|
|
1681
1670
|
options?: HttpHandlerOptions,
|
|
1682
1671
|
): Effect.Effect<
|
|
1683
1672
|
DeleteOptionGroupCommandOutput,
|
|
1684
|
-
Cause.
|
|
1673
|
+
Cause.TimeoutError | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
1685
1674
|
>;
|
|
1686
1675
|
|
|
1687
1676
|
/**
|
|
@@ -1692,7 +1681,7 @@ interface RDSService$ {
|
|
|
1692
1681
|
options?: HttpHandlerOptions,
|
|
1693
1682
|
): Effect.Effect<
|
|
1694
1683
|
DeleteTenantDatabaseCommandOutput,
|
|
1695
|
-
| Cause.
|
|
1684
|
+
| Cause.TimeoutError
|
|
1696
1685
|
| SdkError
|
|
1697
1686
|
| DBInstanceNotFoundFaultError
|
|
1698
1687
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -1708,7 +1697,7 @@ interface RDSService$ {
|
|
|
1708
1697
|
options?: HttpHandlerOptions,
|
|
1709
1698
|
): Effect.Effect<
|
|
1710
1699
|
DeregisterDBProxyTargetsCommandOutput,
|
|
1711
|
-
| Cause.
|
|
1700
|
+
| Cause.TimeoutError
|
|
1712
1701
|
| SdkError
|
|
1713
1702
|
| DBProxyNotFoundFaultError
|
|
1714
1703
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1724,7 +1713,7 @@ interface RDSService$ {
|
|
|
1724
1713
|
options?: HttpHandlerOptions,
|
|
1725
1714
|
): Effect.Effect<
|
|
1726
1715
|
DescribeAccountAttributesCommandOutput,
|
|
1727
|
-
Cause.
|
|
1716
|
+
Cause.TimeoutError | SdkError
|
|
1728
1717
|
>;
|
|
1729
1718
|
|
|
1730
1719
|
/**
|
|
@@ -1735,7 +1724,7 @@ interface RDSService$ {
|
|
|
1735
1724
|
options?: HttpHandlerOptions,
|
|
1736
1725
|
): Effect.Effect<
|
|
1737
1726
|
DescribeBlueGreenDeploymentsCommandOutput,
|
|
1738
|
-
Cause.
|
|
1727
|
+
Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1739
1728
|
>;
|
|
1740
1729
|
|
|
1741
1730
|
/**
|
|
@@ -1746,7 +1735,7 @@ interface RDSService$ {
|
|
|
1746
1735
|
options?: HttpHandlerOptions,
|
|
1747
1736
|
): Effect.Effect<
|
|
1748
1737
|
DescribeCertificatesCommandOutput,
|
|
1749
|
-
Cause.
|
|
1738
|
+
Cause.TimeoutError | SdkError | CertificateNotFoundFaultError
|
|
1750
1739
|
>;
|
|
1751
1740
|
|
|
1752
1741
|
/**
|
|
@@ -1757,7 +1746,7 @@ interface RDSService$ {
|
|
|
1757
1746
|
options?: HttpHandlerOptions,
|
|
1758
1747
|
): Effect.Effect<
|
|
1759
1748
|
DescribeDBClusterAutomatedBackupsCommandOutput,
|
|
1760
|
-
Cause.
|
|
1749
|
+
Cause.TimeoutError | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1761
1750
|
>;
|
|
1762
1751
|
|
|
1763
1752
|
/**
|
|
@@ -1768,7 +1757,7 @@ interface RDSService$ {
|
|
|
1768
1757
|
options?: HttpHandlerOptions,
|
|
1769
1758
|
): Effect.Effect<
|
|
1770
1759
|
DescribeDBClusterBacktracksCommandOutput,
|
|
1771
|
-
Cause.
|
|
1760
|
+
Cause.TimeoutError | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1772
1761
|
>;
|
|
1773
1762
|
|
|
1774
1763
|
/**
|
|
@@ -1779,7 +1768,7 @@ interface RDSService$ {
|
|
|
1779
1768
|
options?: HttpHandlerOptions,
|
|
1780
1769
|
): Effect.Effect<
|
|
1781
1770
|
DescribeDBClusterEndpointsCommandOutput,
|
|
1782
|
-
Cause.
|
|
1771
|
+
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
|
|
1783
1772
|
>;
|
|
1784
1773
|
|
|
1785
1774
|
/**
|
|
@@ -1790,7 +1779,7 @@ interface RDSService$ {
|
|
|
1790
1779
|
options?: HttpHandlerOptions,
|
|
1791
1780
|
): Effect.Effect<
|
|
1792
1781
|
DescribeDBClusterParameterGroupsCommandOutput,
|
|
1793
|
-
Cause.
|
|
1782
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1794
1783
|
>;
|
|
1795
1784
|
|
|
1796
1785
|
/**
|
|
@@ -1801,7 +1790,7 @@ interface RDSService$ {
|
|
|
1801
1790
|
options?: HttpHandlerOptions,
|
|
1802
1791
|
): Effect.Effect<
|
|
1803
1792
|
DescribeDBClusterParametersCommandOutput,
|
|
1804
|
-
Cause.
|
|
1793
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1805
1794
|
>;
|
|
1806
1795
|
|
|
1807
1796
|
/**
|
|
@@ -1812,7 +1801,7 @@ interface RDSService$ {
|
|
|
1812
1801
|
options?: HttpHandlerOptions,
|
|
1813
1802
|
): Effect.Effect<
|
|
1814
1803
|
DescribeDBClusterSnapshotAttributesCommandOutput,
|
|
1815
|
-
Cause.
|
|
1804
|
+
Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1816
1805
|
>;
|
|
1817
1806
|
|
|
1818
1807
|
/**
|
|
@@ -1823,7 +1812,7 @@ interface RDSService$ {
|
|
|
1823
1812
|
options?: HttpHandlerOptions,
|
|
1824
1813
|
): Effect.Effect<
|
|
1825
1814
|
DescribeDBClusterSnapshotsCommandOutput,
|
|
1826
|
-
Cause.
|
|
1815
|
+
Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1827
1816
|
>;
|
|
1828
1817
|
|
|
1829
1818
|
/**
|
|
@@ -1834,7 +1823,7 @@ interface RDSService$ {
|
|
|
1834
1823
|
options?: HttpHandlerOptions,
|
|
1835
1824
|
): Effect.Effect<
|
|
1836
1825
|
DescribeDBClustersCommandOutput,
|
|
1837
|
-
Cause.
|
|
1826
|
+
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
|
|
1838
1827
|
>;
|
|
1839
1828
|
|
|
1840
1829
|
/**
|
|
@@ -1845,7 +1834,7 @@ interface RDSService$ {
|
|
|
1845
1834
|
options?: HttpHandlerOptions,
|
|
1846
1835
|
): Effect.Effect<
|
|
1847
1836
|
DescribeDBEngineVersionsCommandOutput,
|
|
1848
|
-
Cause.
|
|
1837
|
+
Cause.TimeoutError | SdkError
|
|
1849
1838
|
>;
|
|
1850
1839
|
|
|
1851
1840
|
/**
|
|
@@ -1856,7 +1845,7 @@ interface RDSService$ {
|
|
|
1856
1845
|
options?: HttpHandlerOptions,
|
|
1857
1846
|
): Effect.Effect<
|
|
1858
1847
|
DescribeDBInstanceAutomatedBackupsCommandOutput,
|
|
1859
|
-
Cause.
|
|
1848
|
+
Cause.TimeoutError | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1860
1849
|
>;
|
|
1861
1850
|
|
|
1862
1851
|
/**
|
|
@@ -1867,7 +1856,7 @@ interface RDSService$ {
|
|
|
1867
1856
|
options?: HttpHandlerOptions,
|
|
1868
1857
|
): Effect.Effect<
|
|
1869
1858
|
DescribeDBInstancesCommandOutput,
|
|
1870
|
-
Cause.
|
|
1859
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError
|
|
1871
1860
|
>;
|
|
1872
1861
|
|
|
1873
1862
|
/**
|
|
@@ -1878,7 +1867,7 @@ interface RDSService$ {
|
|
|
1878
1867
|
options?: HttpHandlerOptions,
|
|
1879
1868
|
): Effect.Effect<
|
|
1880
1869
|
DescribeDBLogFilesCommandOutput,
|
|
1881
|
-
Cause.
|
|
1870
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1882
1871
|
>;
|
|
1883
1872
|
|
|
1884
1873
|
/**
|
|
@@ -1889,7 +1878,7 @@ interface RDSService$ {
|
|
|
1889
1878
|
options?: HttpHandlerOptions,
|
|
1890
1879
|
): Effect.Effect<
|
|
1891
1880
|
DescribeDBMajorEngineVersionsCommandOutput,
|
|
1892
|
-
Cause.
|
|
1881
|
+
Cause.TimeoutError | SdkError
|
|
1893
1882
|
>;
|
|
1894
1883
|
|
|
1895
1884
|
/**
|
|
@@ -1900,7 +1889,7 @@ interface RDSService$ {
|
|
|
1900
1889
|
options?: HttpHandlerOptions,
|
|
1901
1890
|
): Effect.Effect<
|
|
1902
1891
|
DescribeDBParameterGroupsCommandOutput,
|
|
1903
|
-
Cause.
|
|
1892
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1904
1893
|
>;
|
|
1905
1894
|
|
|
1906
1895
|
/**
|
|
@@ -1911,7 +1900,7 @@ interface RDSService$ {
|
|
|
1911
1900
|
options?: HttpHandlerOptions,
|
|
1912
1901
|
): Effect.Effect<
|
|
1913
1902
|
DescribeDBParametersCommandOutput,
|
|
1914
|
-
Cause.
|
|
1903
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1915
1904
|
>;
|
|
1916
1905
|
|
|
1917
1906
|
/**
|
|
@@ -1922,7 +1911,7 @@ interface RDSService$ {
|
|
|
1922
1911
|
options?: HttpHandlerOptions,
|
|
1923
1912
|
): Effect.Effect<
|
|
1924
1913
|
DescribeDBProxiesCommandOutput,
|
|
1925
|
-
Cause.
|
|
1914
|
+
Cause.TimeoutError | SdkError | DBProxyNotFoundFaultError
|
|
1926
1915
|
>;
|
|
1927
1916
|
|
|
1928
1917
|
/**
|
|
@@ -1933,7 +1922,7 @@ interface RDSService$ {
|
|
|
1933
1922
|
options?: HttpHandlerOptions,
|
|
1934
1923
|
): Effect.Effect<
|
|
1935
1924
|
DescribeDBProxyEndpointsCommandOutput,
|
|
1936
|
-
Cause.
|
|
1925
|
+
Cause.TimeoutError | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1937
1926
|
>;
|
|
1938
1927
|
|
|
1939
1928
|
/**
|
|
@@ -1944,7 +1933,7 @@ interface RDSService$ {
|
|
|
1944
1933
|
options?: HttpHandlerOptions,
|
|
1945
1934
|
): Effect.Effect<
|
|
1946
1935
|
DescribeDBProxyTargetGroupsCommandOutput,
|
|
1947
|
-
| Cause.
|
|
1936
|
+
| Cause.TimeoutError
|
|
1948
1937
|
| SdkError
|
|
1949
1938
|
| DBProxyNotFoundFaultError
|
|
1950
1939
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1959,7 +1948,7 @@ interface RDSService$ {
|
|
|
1959
1948
|
options?: HttpHandlerOptions,
|
|
1960
1949
|
): Effect.Effect<
|
|
1961
1950
|
DescribeDBProxyTargetsCommandOutput,
|
|
1962
|
-
| Cause.
|
|
1951
|
+
| Cause.TimeoutError
|
|
1963
1952
|
| SdkError
|
|
1964
1953
|
| DBProxyNotFoundFaultError
|
|
1965
1954
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -1975,7 +1964,7 @@ interface RDSService$ {
|
|
|
1975
1964
|
options?: HttpHandlerOptions,
|
|
1976
1965
|
): Effect.Effect<
|
|
1977
1966
|
DescribeDBRecommendationsCommandOutput,
|
|
1978
|
-
Cause.
|
|
1967
|
+
Cause.TimeoutError | SdkError
|
|
1979
1968
|
>;
|
|
1980
1969
|
|
|
1981
1970
|
/**
|
|
@@ -1986,7 +1975,7 @@ interface RDSService$ {
|
|
|
1986
1975
|
options?: HttpHandlerOptions,
|
|
1987
1976
|
): Effect.Effect<
|
|
1988
1977
|
DescribeDBSecurityGroupsCommandOutput,
|
|
1989
|
-
Cause.
|
|
1978
|
+
Cause.TimeoutError | SdkError | DBSecurityGroupNotFoundFaultError
|
|
1990
1979
|
>;
|
|
1991
1980
|
|
|
1992
1981
|
/**
|
|
@@ -1997,7 +1986,7 @@ interface RDSService$ {
|
|
|
1997
1986
|
options?: HttpHandlerOptions,
|
|
1998
1987
|
): Effect.Effect<
|
|
1999
1988
|
DescribeDBShardGroupsCommandOutput,
|
|
2000
|
-
Cause.
|
|
1989
|
+
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError | DBShardGroupNotFoundFaultError
|
|
2001
1990
|
>;
|
|
2002
1991
|
|
|
2003
1992
|
/**
|
|
@@ -2008,7 +1997,7 @@ interface RDSService$ {
|
|
|
2008
1997
|
options?: HttpHandlerOptions,
|
|
2009
1998
|
): Effect.Effect<
|
|
2010
1999
|
DescribeDBSnapshotAttributesCommandOutput,
|
|
2011
|
-
Cause.
|
|
2000
|
+
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
|
|
2012
2001
|
>;
|
|
2013
2002
|
|
|
2014
2003
|
/**
|
|
@@ -2019,7 +2008,7 @@ interface RDSService$ {
|
|
|
2019
2008
|
options?: HttpHandlerOptions,
|
|
2020
2009
|
): Effect.Effect<
|
|
2021
2010
|
DescribeDBSnapshotTenantDatabasesCommandOutput,
|
|
2022
|
-
Cause.
|
|
2011
|
+
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
|
|
2023
2012
|
>;
|
|
2024
2013
|
|
|
2025
2014
|
/**
|
|
@@ -2030,7 +2019,7 @@ interface RDSService$ {
|
|
|
2030
2019
|
options?: HttpHandlerOptions,
|
|
2031
2020
|
): Effect.Effect<
|
|
2032
2021
|
DescribeDBSnapshotsCommandOutput,
|
|
2033
|
-
Cause.
|
|
2022
|
+
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
|
|
2034
2023
|
>;
|
|
2035
2024
|
|
|
2036
2025
|
/**
|
|
@@ -2041,7 +2030,7 @@ interface RDSService$ {
|
|
|
2041
2030
|
options?: HttpHandlerOptions,
|
|
2042
2031
|
): Effect.Effect<
|
|
2043
2032
|
DescribeDBSubnetGroupsCommandOutput,
|
|
2044
|
-
Cause.
|
|
2033
|
+
Cause.TimeoutError | SdkError | DBSubnetGroupNotFoundFaultError
|
|
2045
2034
|
>;
|
|
2046
2035
|
|
|
2047
2036
|
/**
|
|
@@ -2052,7 +2041,7 @@ interface RDSService$ {
|
|
|
2052
2041
|
options?: HttpHandlerOptions,
|
|
2053
2042
|
): Effect.Effect<
|
|
2054
2043
|
DescribeEngineDefaultClusterParametersCommandOutput,
|
|
2055
|
-
Cause.
|
|
2044
|
+
Cause.TimeoutError | SdkError
|
|
2056
2045
|
>;
|
|
2057
2046
|
|
|
2058
2047
|
/**
|
|
@@ -2063,7 +2052,7 @@ interface RDSService$ {
|
|
|
2063
2052
|
options?: HttpHandlerOptions,
|
|
2064
2053
|
): Effect.Effect<
|
|
2065
2054
|
DescribeEngineDefaultParametersCommandOutput,
|
|
2066
|
-
Cause.
|
|
2055
|
+
Cause.TimeoutError | SdkError
|
|
2067
2056
|
>;
|
|
2068
2057
|
|
|
2069
2058
|
/**
|
|
@@ -2074,7 +2063,7 @@ interface RDSService$ {
|
|
|
2074
2063
|
options?: HttpHandlerOptions,
|
|
2075
2064
|
): Effect.Effect<
|
|
2076
2065
|
DescribeEventCategoriesCommandOutput,
|
|
2077
|
-
Cause.
|
|
2066
|
+
Cause.TimeoutError | SdkError
|
|
2078
2067
|
>;
|
|
2079
2068
|
|
|
2080
2069
|
/**
|
|
@@ -2085,7 +2074,7 @@ interface RDSService$ {
|
|
|
2085
2074
|
options?: HttpHandlerOptions,
|
|
2086
2075
|
): Effect.Effect<
|
|
2087
2076
|
DescribeEventSubscriptionsCommandOutput,
|
|
2088
|
-
Cause.
|
|
2077
|
+
Cause.TimeoutError | SdkError | SubscriptionNotFoundFaultError
|
|
2089
2078
|
>;
|
|
2090
2079
|
|
|
2091
2080
|
/**
|
|
@@ -2096,7 +2085,7 @@ interface RDSService$ {
|
|
|
2096
2085
|
options?: HttpHandlerOptions,
|
|
2097
2086
|
): Effect.Effect<
|
|
2098
2087
|
DescribeEventsCommandOutput,
|
|
2099
|
-
Cause.
|
|
2088
|
+
Cause.TimeoutError | SdkError
|
|
2100
2089
|
>;
|
|
2101
2090
|
|
|
2102
2091
|
/**
|
|
@@ -2107,7 +2096,7 @@ interface RDSService$ {
|
|
|
2107
2096
|
options?: HttpHandlerOptions,
|
|
2108
2097
|
): Effect.Effect<
|
|
2109
2098
|
DescribeExportTasksCommandOutput,
|
|
2110
|
-
Cause.
|
|
2099
|
+
Cause.TimeoutError | SdkError | ExportTaskNotFoundFaultError
|
|
2111
2100
|
>;
|
|
2112
2101
|
|
|
2113
2102
|
/**
|
|
@@ -2118,7 +2107,7 @@ interface RDSService$ {
|
|
|
2118
2107
|
options?: HttpHandlerOptions,
|
|
2119
2108
|
): Effect.Effect<
|
|
2120
2109
|
DescribeGlobalClustersCommandOutput,
|
|
2121
|
-
Cause.
|
|
2110
|
+
Cause.TimeoutError | SdkError | GlobalClusterNotFoundFaultError
|
|
2122
2111
|
>;
|
|
2123
2112
|
|
|
2124
2113
|
/**
|
|
@@ -2129,7 +2118,7 @@ interface RDSService$ {
|
|
|
2129
2118
|
options?: HttpHandlerOptions,
|
|
2130
2119
|
): Effect.Effect<
|
|
2131
2120
|
DescribeIntegrationsCommandOutput,
|
|
2132
|
-
Cause.
|
|
2121
|
+
Cause.TimeoutError | SdkError | IntegrationNotFoundFaultError
|
|
2133
2122
|
>;
|
|
2134
2123
|
|
|
2135
2124
|
/**
|
|
@@ -2140,7 +2129,7 @@ interface RDSService$ {
|
|
|
2140
2129
|
options?: HttpHandlerOptions,
|
|
2141
2130
|
): Effect.Effect<
|
|
2142
2131
|
DescribeOptionGroupOptionsCommandOutput,
|
|
2143
|
-
Cause.
|
|
2132
|
+
Cause.TimeoutError | SdkError
|
|
2144
2133
|
>;
|
|
2145
2134
|
|
|
2146
2135
|
/**
|
|
@@ -2151,7 +2140,7 @@ interface RDSService$ {
|
|
|
2151
2140
|
options?: HttpHandlerOptions,
|
|
2152
2141
|
): Effect.Effect<
|
|
2153
2142
|
DescribeOptionGroupsCommandOutput,
|
|
2154
|
-
Cause.
|
|
2143
|
+
Cause.TimeoutError | SdkError | OptionGroupNotFoundFaultError
|
|
2155
2144
|
>;
|
|
2156
2145
|
|
|
2157
2146
|
/**
|
|
@@ -2162,7 +2151,7 @@ interface RDSService$ {
|
|
|
2162
2151
|
options?: HttpHandlerOptions,
|
|
2163
2152
|
): Effect.Effect<
|
|
2164
2153
|
DescribeOrderableDBInstanceOptionsCommandOutput,
|
|
2165
|
-
Cause.
|
|
2154
|
+
Cause.TimeoutError | SdkError
|
|
2166
2155
|
>;
|
|
2167
2156
|
|
|
2168
2157
|
/**
|
|
@@ -2173,7 +2162,7 @@ interface RDSService$ {
|
|
|
2173
2162
|
options?: HttpHandlerOptions,
|
|
2174
2163
|
): Effect.Effect<
|
|
2175
2164
|
DescribePendingMaintenanceActionsCommandOutput,
|
|
2176
|
-
Cause.
|
|
2165
|
+
Cause.TimeoutError | SdkError | ResourceNotFoundFaultError
|
|
2177
2166
|
>;
|
|
2178
2167
|
|
|
2179
2168
|
/**
|
|
@@ -2184,7 +2173,7 @@ interface RDSService$ {
|
|
|
2184
2173
|
options?: HttpHandlerOptions,
|
|
2185
2174
|
): Effect.Effect<
|
|
2186
2175
|
DescribeReservedDBInstancesCommandOutput,
|
|
2187
|
-
Cause.
|
|
2176
|
+
Cause.TimeoutError | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2188
2177
|
>;
|
|
2189
2178
|
|
|
2190
2179
|
/**
|
|
@@ -2195,7 +2184,7 @@ interface RDSService$ {
|
|
|
2195
2184
|
options?: HttpHandlerOptions,
|
|
2196
2185
|
): Effect.Effect<
|
|
2197
2186
|
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
2198
|
-
Cause.
|
|
2187
|
+
Cause.TimeoutError | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2199
2188
|
>;
|
|
2200
2189
|
|
|
2201
2190
|
/**
|
|
@@ -2206,7 +2195,7 @@ interface RDSService$ {
|
|
|
2206
2195
|
options?: HttpHandlerOptions,
|
|
2207
2196
|
): Effect.Effect<
|
|
2208
2197
|
DescribeSourceRegionsCommandOutput,
|
|
2209
|
-
Cause.
|
|
2198
|
+
Cause.TimeoutError | SdkError
|
|
2210
2199
|
>;
|
|
2211
2200
|
|
|
2212
2201
|
/**
|
|
@@ -2217,7 +2206,7 @@ interface RDSService$ {
|
|
|
2217
2206
|
options?: HttpHandlerOptions,
|
|
2218
2207
|
): Effect.Effect<
|
|
2219
2208
|
DescribeTenantDatabasesCommandOutput,
|
|
2220
|
-
Cause.
|
|
2209
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError
|
|
2221
2210
|
>;
|
|
2222
2211
|
|
|
2223
2212
|
/**
|
|
@@ -2228,7 +2217,7 @@ interface RDSService$ {
|
|
|
2228
2217
|
options?: HttpHandlerOptions,
|
|
2229
2218
|
): Effect.Effect<
|
|
2230
2219
|
DescribeValidDBInstanceModificationsCommandOutput,
|
|
2231
|
-
Cause.
|
|
2220
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2232
2221
|
>;
|
|
2233
2222
|
|
|
2234
2223
|
/**
|
|
@@ -2239,7 +2228,7 @@ interface RDSService$ {
|
|
|
2239
2228
|
options?: HttpHandlerOptions,
|
|
2240
2229
|
): Effect.Effect<
|
|
2241
2230
|
DisableHttpEndpointCommandOutput,
|
|
2242
|
-
Cause.
|
|
2231
|
+
Cause.TimeoutError | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2243
2232
|
>;
|
|
2244
2233
|
|
|
2245
2234
|
/**
|
|
@@ -2250,7 +2239,7 @@ interface RDSService$ {
|
|
|
2250
2239
|
options?: HttpHandlerOptions,
|
|
2251
2240
|
): Effect.Effect<
|
|
2252
2241
|
DownloadDBLogFilePortionCommandOutput,
|
|
2253
|
-
| Cause.
|
|
2242
|
+
| Cause.TimeoutError
|
|
2254
2243
|
| SdkError
|
|
2255
2244
|
| DBInstanceNotFoundFaultError
|
|
2256
2245
|
| DBInstanceNotReadyFaultError
|
|
@@ -2265,7 +2254,7 @@ interface RDSService$ {
|
|
|
2265
2254
|
options?: HttpHandlerOptions,
|
|
2266
2255
|
): Effect.Effect<
|
|
2267
2256
|
EnableHttpEndpointCommandOutput,
|
|
2268
|
-
Cause.
|
|
2257
|
+
Cause.TimeoutError | SdkError | InvalidResourceStateFaultError | ResourceNotFoundFaultError
|
|
2269
2258
|
>;
|
|
2270
2259
|
|
|
2271
2260
|
/**
|
|
@@ -2276,7 +2265,7 @@ interface RDSService$ {
|
|
|
2276
2265
|
options?: HttpHandlerOptions,
|
|
2277
2266
|
): Effect.Effect<
|
|
2278
2267
|
FailoverDBClusterCommandOutput,
|
|
2279
|
-
| Cause.
|
|
2268
|
+
| Cause.TimeoutError
|
|
2280
2269
|
| SdkError
|
|
2281
2270
|
| DBClusterNotFoundFaultError
|
|
2282
2271
|
| InvalidDBClusterStateFaultError
|
|
@@ -2291,7 +2280,7 @@ interface RDSService$ {
|
|
|
2291
2280
|
options?: HttpHandlerOptions,
|
|
2292
2281
|
): Effect.Effect<
|
|
2293
2282
|
FailoverGlobalClusterCommandOutput,
|
|
2294
|
-
| Cause.
|
|
2283
|
+
| Cause.TimeoutError
|
|
2295
2284
|
| SdkError
|
|
2296
2285
|
| DBClusterNotFoundFaultError
|
|
2297
2286
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2307,7 +2296,7 @@ interface RDSService$ {
|
|
|
2307
2296
|
options?: HttpHandlerOptions,
|
|
2308
2297
|
): Effect.Effect<
|
|
2309
2298
|
ListTagsForResourceCommandOutput,
|
|
2310
|
-
| Cause.
|
|
2299
|
+
| Cause.TimeoutError
|
|
2311
2300
|
| SdkError
|
|
2312
2301
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2313
2302
|
| DBClusterNotFoundFaultError
|
|
@@ -2330,7 +2319,7 @@ interface RDSService$ {
|
|
|
2330
2319
|
options?: HttpHandlerOptions,
|
|
2331
2320
|
): Effect.Effect<
|
|
2332
2321
|
ModifyActivityStreamCommandOutput,
|
|
2333
|
-
| Cause.
|
|
2322
|
+
| Cause.TimeoutError
|
|
2334
2323
|
| SdkError
|
|
2335
2324
|
| DBInstanceNotFoundFaultError
|
|
2336
2325
|
| InvalidDBInstanceStateFaultError
|
|
@@ -2345,7 +2334,7 @@ interface RDSService$ {
|
|
|
2345
2334
|
options?: HttpHandlerOptions,
|
|
2346
2335
|
): Effect.Effect<
|
|
2347
2336
|
ModifyCertificatesCommandOutput,
|
|
2348
|
-
Cause.
|
|
2337
|
+
Cause.TimeoutError | SdkError | CertificateNotFoundFaultError
|
|
2349
2338
|
>;
|
|
2350
2339
|
|
|
2351
2340
|
/**
|
|
@@ -2356,7 +2345,7 @@ interface RDSService$ {
|
|
|
2356
2345
|
options?: HttpHandlerOptions,
|
|
2357
2346
|
): Effect.Effect<
|
|
2358
2347
|
ModifyCurrentDBClusterCapacityCommandOutput,
|
|
2359
|
-
| Cause.
|
|
2348
|
+
| Cause.TimeoutError
|
|
2360
2349
|
| SdkError
|
|
2361
2350
|
| DBClusterNotFoundFaultError
|
|
2362
2351
|
| InvalidDBClusterCapacityFaultError
|
|
@@ -2371,7 +2360,7 @@ interface RDSService$ {
|
|
|
2371
2360
|
options?: HttpHandlerOptions,
|
|
2372
2361
|
): Effect.Effect<
|
|
2373
2362
|
ModifyCustomDBEngineVersionCommandOutput,
|
|
2374
|
-
| Cause.
|
|
2363
|
+
| Cause.TimeoutError
|
|
2375
2364
|
| SdkError
|
|
2376
2365
|
| CustomDBEngineVersionNotFoundFaultError
|
|
2377
2366
|
| InvalidCustomDBEngineVersionStateFaultError
|
|
@@ -2385,7 +2374,7 @@ interface RDSService$ {
|
|
|
2385
2374
|
options?: HttpHandlerOptions,
|
|
2386
2375
|
): Effect.Effect<
|
|
2387
2376
|
ModifyDBClusterCommandOutput,
|
|
2388
|
-
| Cause.
|
|
2377
|
+
| Cause.TimeoutError
|
|
2389
2378
|
| SdkError
|
|
2390
2379
|
| DBClusterAlreadyExistsFaultError
|
|
2391
2380
|
| DBClusterNotFoundFaultError
|
|
@@ -2418,7 +2407,7 @@ interface RDSService$ {
|
|
|
2418
2407
|
options?: HttpHandlerOptions,
|
|
2419
2408
|
): Effect.Effect<
|
|
2420
2409
|
ModifyDBClusterEndpointCommandOutput,
|
|
2421
|
-
| Cause.
|
|
2410
|
+
| Cause.TimeoutError
|
|
2422
2411
|
| SdkError
|
|
2423
2412
|
| DBClusterEndpointNotFoundFaultError
|
|
2424
2413
|
| DBInstanceNotFoundFaultError
|
|
@@ -2435,7 +2424,7 @@ interface RDSService$ {
|
|
|
2435
2424
|
options?: HttpHandlerOptions,
|
|
2436
2425
|
): Effect.Effect<
|
|
2437
2426
|
ModifyDBClusterParameterGroupCommandOutput,
|
|
2438
|
-
Cause.
|
|
2427
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2439
2428
|
>;
|
|
2440
2429
|
|
|
2441
2430
|
/**
|
|
@@ -2446,7 +2435,7 @@ interface RDSService$ {
|
|
|
2446
2435
|
options?: HttpHandlerOptions,
|
|
2447
2436
|
): Effect.Effect<
|
|
2448
2437
|
ModifyDBClusterSnapshotAttributeCommandOutput,
|
|
2449
|
-
| Cause.
|
|
2438
|
+
| Cause.TimeoutError
|
|
2450
2439
|
| SdkError
|
|
2451
2440
|
| DBClusterSnapshotNotFoundFaultError
|
|
2452
2441
|
| InvalidDBClusterSnapshotStateFaultError
|
|
@@ -2461,7 +2450,7 @@ interface RDSService$ {
|
|
|
2461
2450
|
options?: HttpHandlerOptions,
|
|
2462
2451
|
): Effect.Effect<
|
|
2463
2452
|
ModifyDBInstanceCommandOutput,
|
|
2464
|
-
| Cause.
|
|
2453
|
+
| Cause.TimeoutError
|
|
2465
2454
|
| SdkError
|
|
2466
2455
|
| AuthorizationNotFoundFaultError
|
|
2467
2456
|
| BackupPolicyNotFoundFaultError
|
|
@@ -2495,7 +2484,7 @@ interface RDSService$ {
|
|
|
2495
2484
|
options?: HttpHandlerOptions,
|
|
2496
2485
|
): Effect.Effect<
|
|
2497
2486
|
ModifyDBParameterGroupCommandOutput,
|
|
2498
|
-
Cause.
|
|
2487
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2499
2488
|
>;
|
|
2500
2489
|
|
|
2501
2490
|
/**
|
|
@@ -2506,7 +2495,7 @@ interface RDSService$ {
|
|
|
2506
2495
|
options?: HttpHandlerOptions,
|
|
2507
2496
|
): Effect.Effect<
|
|
2508
2497
|
ModifyDBProxyCommandOutput,
|
|
2509
|
-
| Cause.
|
|
2498
|
+
| Cause.TimeoutError
|
|
2510
2499
|
| SdkError
|
|
2511
2500
|
| DBProxyAlreadyExistsFaultError
|
|
2512
2501
|
| DBProxyNotFoundFaultError
|
|
@@ -2521,7 +2510,7 @@ interface RDSService$ {
|
|
|
2521
2510
|
options?: HttpHandlerOptions,
|
|
2522
2511
|
): Effect.Effect<
|
|
2523
2512
|
ModifyDBProxyEndpointCommandOutput,
|
|
2524
|
-
| Cause.
|
|
2513
|
+
| Cause.TimeoutError
|
|
2525
2514
|
| SdkError
|
|
2526
2515
|
| DBProxyEndpointAlreadyExistsFaultError
|
|
2527
2516
|
| DBProxyEndpointNotFoundFaultError
|
|
@@ -2537,7 +2526,7 @@ interface RDSService$ {
|
|
|
2537
2526
|
options?: HttpHandlerOptions,
|
|
2538
2527
|
): Effect.Effect<
|
|
2539
2528
|
ModifyDBProxyTargetGroupCommandOutput,
|
|
2540
|
-
| Cause.
|
|
2529
|
+
| Cause.TimeoutError
|
|
2541
2530
|
| SdkError
|
|
2542
2531
|
| DBProxyNotFoundFaultError
|
|
2543
2532
|
| DBProxyTargetGroupNotFoundFaultError
|
|
@@ -2552,7 +2541,7 @@ interface RDSService$ {
|
|
|
2552
2541
|
options?: HttpHandlerOptions,
|
|
2553
2542
|
): Effect.Effect<
|
|
2554
2543
|
ModifyDBRecommendationCommandOutput,
|
|
2555
|
-
Cause.
|
|
2544
|
+
Cause.TimeoutError | SdkError
|
|
2556
2545
|
>;
|
|
2557
2546
|
|
|
2558
2547
|
/**
|
|
@@ -2563,7 +2552,7 @@ interface RDSService$ {
|
|
|
2563
2552
|
options?: HttpHandlerOptions,
|
|
2564
2553
|
): Effect.Effect<
|
|
2565
2554
|
ModifyDBShardGroupCommandOutput,
|
|
2566
|
-
| Cause.
|
|
2555
|
+
| Cause.TimeoutError
|
|
2567
2556
|
| SdkError
|
|
2568
2557
|
| DBShardGroupAlreadyExistsFaultError
|
|
2569
2558
|
| DBShardGroupNotFoundFaultError
|
|
@@ -2578,7 +2567,7 @@ interface RDSService$ {
|
|
|
2578
2567
|
options?: HttpHandlerOptions,
|
|
2579
2568
|
): Effect.Effect<
|
|
2580
2569
|
ModifyDBSnapshotCommandOutput,
|
|
2581
|
-
| Cause.
|
|
2570
|
+
| Cause.TimeoutError
|
|
2582
2571
|
| SdkError
|
|
2583
2572
|
| DBSnapshotNotFoundFaultError
|
|
2584
2573
|
| InvalidDBSnapshotStateFaultError
|
|
@@ -2593,7 +2582,7 @@ interface RDSService$ {
|
|
|
2593
2582
|
options?: HttpHandlerOptions,
|
|
2594
2583
|
): Effect.Effect<
|
|
2595
2584
|
ModifyDBSnapshotAttributeCommandOutput,
|
|
2596
|
-
| Cause.
|
|
2585
|
+
| Cause.TimeoutError
|
|
2597
2586
|
| SdkError
|
|
2598
2587
|
| DBSnapshotNotFoundFaultError
|
|
2599
2588
|
| InvalidDBSnapshotStateFaultError
|
|
@@ -2608,7 +2597,7 @@ interface RDSService$ {
|
|
|
2608
2597
|
options?: HttpHandlerOptions,
|
|
2609
2598
|
): Effect.Effect<
|
|
2610
2599
|
ModifyDBSubnetGroupCommandOutput,
|
|
2611
|
-
| Cause.
|
|
2600
|
+
| Cause.TimeoutError
|
|
2612
2601
|
| SdkError
|
|
2613
2602
|
| DBSubnetGroupDoesNotCoverEnoughAZsError
|
|
2614
2603
|
| DBSubnetGroupNotFoundFaultError
|
|
@@ -2626,7 +2615,7 @@ interface RDSService$ {
|
|
|
2626
2615
|
options?: HttpHandlerOptions,
|
|
2627
2616
|
): Effect.Effect<
|
|
2628
2617
|
ModifyEventSubscriptionCommandOutput,
|
|
2629
|
-
| Cause.
|
|
2618
|
+
| Cause.TimeoutError
|
|
2630
2619
|
| SdkError
|
|
2631
2620
|
| EventSubscriptionQuotaExceededFaultError
|
|
2632
2621
|
| SNSInvalidTopicFaultError
|
|
@@ -2644,7 +2633,7 @@ interface RDSService$ {
|
|
|
2644
2633
|
options?: HttpHandlerOptions,
|
|
2645
2634
|
): Effect.Effect<
|
|
2646
2635
|
ModifyGlobalClusterCommandOutput,
|
|
2647
|
-
| Cause.
|
|
2636
|
+
| Cause.TimeoutError
|
|
2648
2637
|
| SdkError
|
|
2649
2638
|
| GlobalClusterAlreadyExistsFaultError
|
|
2650
2639
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2661,7 +2650,7 @@ interface RDSService$ {
|
|
|
2661
2650
|
options?: HttpHandlerOptions,
|
|
2662
2651
|
): Effect.Effect<
|
|
2663
2652
|
ModifyIntegrationCommandOutput,
|
|
2664
|
-
| Cause.
|
|
2653
|
+
| Cause.TimeoutError
|
|
2665
2654
|
| SdkError
|
|
2666
2655
|
| IntegrationConflictOperationFaultError
|
|
2667
2656
|
| IntegrationNotFoundFaultError
|
|
@@ -2676,7 +2665,7 @@ interface RDSService$ {
|
|
|
2676
2665
|
options?: HttpHandlerOptions,
|
|
2677
2666
|
): Effect.Effect<
|
|
2678
2667
|
ModifyOptionGroupCommandOutput,
|
|
2679
|
-
Cause.
|
|
2668
|
+
Cause.TimeoutError | SdkError | InvalidOptionGroupStateFaultError | OptionGroupNotFoundFaultError
|
|
2680
2669
|
>;
|
|
2681
2670
|
|
|
2682
2671
|
/**
|
|
@@ -2687,7 +2676,7 @@ interface RDSService$ {
|
|
|
2687
2676
|
options?: HttpHandlerOptions,
|
|
2688
2677
|
): Effect.Effect<
|
|
2689
2678
|
ModifyTenantDatabaseCommandOutput,
|
|
2690
|
-
| Cause.
|
|
2679
|
+
| Cause.TimeoutError
|
|
2691
2680
|
| SdkError
|
|
2692
2681
|
| DBInstanceNotFoundFaultError
|
|
2693
2682
|
| InvalidDBInstanceStateFaultError
|
|
@@ -2704,7 +2693,7 @@ interface RDSService$ {
|
|
|
2704
2693
|
options?: HttpHandlerOptions,
|
|
2705
2694
|
): Effect.Effect<
|
|
2706
2695
|
PromoteReadReplicaCommandOutput,
|
|
2707
|
-
Cause.
|
|
2696
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
2708
2697
|
>;
|
|
2709
2698
|
|
|
2710
2699
|
/**
|
|
@@ -2715,7 +2704,7 @@ interface RDSService$ {
|
|
|
2715
2704
|
options?: HttpHandlerOptions,
|
|
2716
2705
|
): Effect.Effect<
|
|
2717
2706
|
PromoteReadReplicaDBClusterCommandOutput,
|
|
2718
|
-
Cause.
|
|
2707
|
+
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError | InvalidDBClusterStateFaultError
|
|
2719
2708
|
>;
|
|
2720
2709
|
|
|
2721
2710
|
/**
|
|
@@ -2726,7 +2715,7 @@ interface RDSService$ {
|
|
|
2726
2715
|
options?: HttpHandlerOptions,
|
|
2727
2716
|
): Effect.Effect<
|
|
2728
2717
|
PurchaseReservedDBInstancesOfferingCommandOutput,
|
|
2729
|
-
| Cause.
|
|
2718
|
+
| Cause.TimeoutError
|
|
2730
2719
|
| SdkError
|
|
2731
2720
|
| ReservedDBInstanceAlreadyExistsFaultError
|
|
2732
2721
|
| ReservedDBInstanceQuotaExceededFaultError
|
|
@@ -2741,7 +2730,7 @@ interface RDSService$ {
|
|
|
2741
2730
|
options?: HttpHandlerOptions,
|
|
2742
2731
|
): Effect.Effect<
|
|
2743
2732
|
RebootDBClusterCommandOutput,
|
|
2744
|
-
| Cause.
|
|
2733
|
+
| Cause.TimeoutError
|
|
2745
2734
|
| SdkError
|
|
2746
2735
|
| DBClusterNotFoundFaultError
|
|
2747
2736
|
| InvalidDBClusterStateFaultError
|
|
@@ -2756,7 +2745,7 @@ interface RDSService$ {
|
|
|
2756
2745
|
options?: HttpHandlerOptions,
|
|
2757
2746
|
): Effect.Effect<
|
|
2758
2747
|
RebootDBInstanceCommandOutput,
|
|
2759
|
-
| Cause.
|
|
2748
|
+
| Cause.TimeoutError
|
|
2760
2749
|
| SdkError
|
|
2761
2750
|
| DBInstanceNotFoundFaultError
|
|
2762
2751
|
| InvalidDBInstanceStateFaultError
|
|
@@ -2771,7 +2760,7 @@ interface RDSService$ {
|
|
|
2771
2760
|
options?: HttpHandlerOptions,
|
|
2772
2761
|
): Effect.Effect<
|
|
2773
2762
|
RebootDBShardGroupCommandOutput,
|
|
2774
|
-
Cause.
|
|
2763
|
+
Cause.TimeoutError | SdkError | DBShardGroupNotFoundFaultError | InvalidDBShardGroupStateFaultError
|
|
2775
2764
|
>;
|
|
2776
2765
|
|
|
2777
2766
|
/**
|
|
@@ -2782,7 +2771,7 @@ interface RDSService$ {
|
|
|
2782
2771
|
options?: HttpHandlerOptions,
|
|
2783
2772
|
): Effect.Effect<
|
|
2784
2773
|
RegisterDBProxyTargetsCommandOutput,
|
|
2785
|
-
| Cause.
|
|
2774
|
+
| Cause.TimeoutError
|
|
2786
2775
|
| SdkError
|
|
2787
2776
|
| DBClusterNotFoundFaultError
|
|
2788
2777
|
| DBInstanceNotFoundFaultError
|
|
@@ -2803,7 +2792,7 @@ interface RDSService$ {
|
|
|
2803
2792
|
options?: HttpHandlerOptions,
|
|
2804
2793
|
): Effect.Effect<
|
|
2805
2794
|
RemoveFromGlobalClusterCommandOutput,
|
|
2806
|
-
| Cause.
|
|
2795
|
+
| Cause.TimeoutError
|
|
2807
2796
|
| SdkError
|
|
2808
2797
|
| DBClusterNotFoundFaultError
|
|
2809
2798
|
| GlobalClusterNotFoundFaultError
|
|
@@ -2819,7 +2808,7 @@ interface RDSService$ {
|
|
|
2819
2808
|
options?: HttpHandlerOptions,
|
|
2820
2809
|
): Effect.Effect<
|
|
2821
2810
|
RemoveRoleFromDBClusterCommandOutput,
|
|
2822
|
-
| Cause.
|
|
2811
|
+
| Cause.TimeoutError
|
|
2823
2812
|
| SdkError
|
|
2824
2813
|
| DBClusterNotFoundFaultError
|
|
2825
2814
|
| DBClusterRoleNotFoundFaultError
|
|
@@ -2834,7 +2823,7 @@ interface RDSService$ {
|
|
|
2834
2823
|
options?: HttpHandlerOptions,
|
|
2835
2824
|
): Effect.Effect<
|
|
2836
2825
|
RemoveRoleFromDBInstanceCommandOutput,
|
|
2837
|
-
| Cause.
|
|
2826
|
+
| Cause.TimeoutError
|
|
2838
2827
|
| SdkError
|
|
2839
2828
|
| DBInstanceNotFoundFaultError
|
|
2840
2829
|
| DBInstanceRoleNotFoundFaultError
|
|
@@ -2849,7 +2838,7 @@ interface RDSService$ {
|
|
|
2849
2838
|
options?: HttpHandlerOptions,
|
|
2850
2839
|
): Effect.Effect<
|
|
2851
2840
|
RemoveSourceIdentifierFromSubscriptionCommandOutput,
|
|
2852
|
-
Cause.
|
|
2841
|
+
Cause.TimeoutError | SdkError | SourceNotFoundFaultError | SubscriptionNotFoundFaultError
|
|
2853
2842
|
>;
|
|
2854
2843
|
|
|
2855
2844
|
/**
|
|
@@ -2860,7 +2849,7 @@ interface RDSService$ {
|
|
|
2860
2849
|
options?: HttpHandlerOptions,
|
|
2861
2850
|
): Effect.Effect<
|
|
2862
2851
|
RemoveTagsFromResourceCommandOutput,
|
|
2863
|
-
| Cause.
|
|
2852
|
+
| Cause.TimeoutError
|
|
2864
2853
|
| SdkError
|
|
2865
2854
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2866
2855
|
| DBClusterNotFoundFaultError
|
|
@@ -2886,7 +2875,7 @@ interface RDSService$ {
|
|
|
2886
2875
|
options?: HttpHandlerOptions,
|
|
2887
2876
|
): Effect.Effect<
|
|
2888
2877
|
ResetDBClusterParameterGroupCommandOutput,
|
|
2889
|
-
Cause.
|
|
2878
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2890
2879
|
>;
|
|
2891
2880
|
|
|
2892
2881
|
/**
|
|
@@ -2897,7 +2886,7 @@ interface RDSService$ {
|
|
|
2897
2886
|
options?: HttpHandlerOptions,
|
|
2898
2887
|
): Effect.Effect<
|
|
2899
2888
|
ResetDBParameterGroupCommandOutput,
|
|
2900
|
-
Cause.
|
|
2889
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError | InvalidDBParameterGroupStateFaultError
|
|
2901
2890
|
>;
|
|
2902
2891
|
|
|
2903
2892
|
/**
|
|
@@ -2908,7 +2897,7 @@ interface RDSService$ {
|
|
|
2908
2897
|
options?: HttpHandlerOptions,
|
|
2909
2898
|
): Effect.Effect<
|
|
2910
2899
|
RestoreDBClusterFromS3CommandOutput,
|
|
2911
|
-
| Cause.
|
|
2900
|
+
| Cause.TimeoutError
|
|
2912
2901
|
| SdkError
|
|
2913
2902
|
| DBClusterAlreadyExistsFaultError
|
|
2914
2903
|
| DBClusterNotFoundFaultError
|
|
@@ -2936,7 +2925,7 @@ interface RDSService$ {
|
|
|
2936
2925
|
options?: HttpHandlerOptions,
|
|
2937
2926
|
): Effect.Effect<
|
|
2938
2927
|
RestoreDBClusterFromSnapshotCommandOutput,
|
|
2939
|
-
| Cause.
|
|
2928
|
+
| Cause.TimeoutError
|
|
2940
2929
|
| SdkError
|
|
2941
2930
|
| DBClusterAlreadyExistsFaultError
|
|
2942
2931
|
| DBClusterParameterGroupNotFoundFaultError
|
|
@@ -2971,7 +2960,7 @@ interface RDSService$ {
|
|
|
2971
2960
|
options?: HttpHandlerOptions,
|
|
2972
2961
|
): Effect.Effect<
|
|
2973
2962
|
RestoreDBClusterToPointInTimeCommandOutput,
|
|
2974
|
-
| Cause.
|
|
2963
|
+
| Cause.TimeoutError
|
|
2975
2964
|
| SdkError
|
|
2976
2965
|
| DBClusterAlreadyExistsFaultError
|
|
2977
2966
|
| DBClusterAutomatedBackupNotFoundFaultError
|
|
@@ -3006,7 +2995,7 @@ interface RDSService$ {
|
|
|
3006
2995
|
options?: HttpHandlerOptions,
|
|
3007
2996
|
): Effect.Effect<
|
|
3008
2997
|
RestoreDBInstanceFromDBSnapshotCommandOutput,
|
|
3009
|
-
| Cause.
|
|
2998
|
+
| Cause.TimeoutError
|
|
3010
2999
|
| SdkError
|
|
3011
3000
|
| AuthorizationNotFoundFaultError
|
|
3012
3001
|
| BackupPolicyNotFoundFaultError
|
|
@@ -3043,7 +3032,7 @@ interface RDSService$ {
|
|
|
3043
3032
|
options?: HttpHandlerOptions,
|
|
3044
3033
|
): Effect.Effect<
|
|
3045
3034
|
RestoreDBInstanceFromS3CommandOutput,
|
|
3046
|
-
| Cause.
|
|
3035
|
+
| Cause.TimeoutError
|
|
3047
3036
|
| SdkError
|
|
3048
3037
|
| AuthorizationNotFoundFaultError
|
|
3049
3038
|
| BackupPolicyNotFoundFaultError
|
|
@@ -3075,7 +3064,7 @@ interface RDSService$ {
|
|
|
3075
3064
|
options?: HttpHandlerOptions,
|
|
3076
3065
|
): Effect.Effect<
|
|
3077
3066
|
RestoreDBInstanceToPointInTimeCommandOutput,
|
|
3078
|
-
| Cause.
|
|
3067
|
+
| Cause.TimeoutError
|
|
3079
3068
|
| SdkError
|
|
3080
3069
|
| AuthorizationNotFoundFaultError
|
|
3081
3070
|
| BackupPolicyNotFoundFaultError
|
|
@@ -3113,7 +3102,7 @@ interface RDSService$ {
|
|
|
3113
3102
|
options?: HttpHandlerOptions,
|
|
3114
3103
|
): Effect.Effect<
|
|
3115
3104
|
RevokeDBSecurityGroupIngressCommandOutput,
|
|
3116
|
-
| Cause.
|
|
3105
|
+
| Cause.TimeoutError
|
|
3117
3106
|
| SdkError
|
|
3118
3107
|
| AuthorizationNotFoundFaultError
|
|
3119
3108
|
| DBSecurityGroupNotFoundFaultError
|
|
@@ -3128,7 +3117,7 @@ interface RDSService$ {
|
|
|
3128
3117
|
options?: HttpHandlerOptions,
|
|
3129
3118
|
): Effect.Effect<
|
|
3130
3119
|
StartActivityStreamCommandOutput,
|
|
3131
|
-
| Cause.
|
|
3120
|
+
| Cause.TimeoutError
|
|
3132
3121
|
| SdkError
|
|
3133
3122
|
| DBClusterNotFoundFaultError
|
|
3134
3123
|
| DBInstanceNotFoundFaultError
|
|
@@ -3146,7 +3135,7 @@ interface RDSService$ {
|
|
|
3146
3135
|
options?: HttpHandlerOptions,
|
|
3147
3136
|
): Effect.Effect<
|
|
3148
3137
|
StartDBClusterCommandOutput,
|
|
3149
|
-
| Cause.
|
|
3138
|
+
| Cause.TimeoutError
|
|
3150
3139
|
| SdkError
|
|
3151
3140
|
| DBClusterNotFoundFaultError
|
|
3152
3141
|
| InvalidDBClusterStateFaultError
|
|
@@ -3164,7 +3153,7 @@ interface RDSService$ {
|
|
|
3164
3153
|
options?: HttpHandlerOptions,
|
|
3165
3154
|
): Effect.Effect<
|
|
3166
3155
|
StartDBInstanceCommandOutput,
|
|
3167
|
-
| Cause.
|
|
3156
|
+
| Cause.TimeoutError
|
|
3168
3157
|
| SdkError
|
|
3169
3158
|
| AuthorizationNotFoundFaultError
|
|
3170
3159
|
| DBClusterNotFoundFaultError
|
|
@@ -3188,7 +3177,7 @@ interface RDSService$ {
|
|
|
3188
3177
|
options?: HttpHandlerOptions,
|
|
3189
3178
|
): Effect.Effect<
|
|
3190
3179
|
StartDBInstanceAutomatedBackupsReplicationCommandOutput,
|
|
3191
|
-
| Cause.
|
|
3180
|
+
| Cause.TimeoutError
|
|
3192
3181
|
| SdkError
|
|
3193
3182
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
3194
3183
|
| DBInstanceNotFoundFaultError
|
|
@@ -3206,7 +3195,7 @@ interface RDSService$ {
|
|
|
3206
3195
|
options?: HttpHandlerOptions,
|
|
3207
3196
|
): Effect.Effect<
|
|
3208
3197
|
StartExportTaskCommandOutput,
|
|
3209
|
-
| Cause.
|
|
3198
|
+
| Cause.TimeoutError
|
|
3210
3199
|
| SdkError
|
|
3211
3200
|
| DBClusterNotFoundFaultError
|
|
3212
3201
|
| DBClusterSnapshotNotFoundFaultError
|
|
@@ -3228,7 +3217,7 @@ interface RDSService$ {
|
|
|
3228
3217
|
options?: HttpHandlerOptions,
|
|
3229
3218
|
): Effect.Effect<
|
|
3230
3219
|
StopActivityStreamCommandOutput,
|
|
3231
|
-
| Cause.
|
|
3220
|
+
| Cause.TimeoutError
|
|
3232
3221
|
| SdkError
|
|
3233
3222
|
| DBClusterNotFoundFaultError
|
|
3234
3223
|
| DBInstanceNotFoundFaultError
|
|
@@ -3245,7 +3234,7 @@ interface RDSService$ {
|
|
|
3245
3234
|
options?: HttpHandlerOptions,
|
|
3246
3235
|
): Effect.Effect<
|
|
3247
3236
|
StopDBClusterCommandOutput,
|
|
3248
|
-
| Cause.
|
|
3237
|
+
| Cause.TimeoutError
|
|
3249
3238
|
| SdkError
|
|
3250
3239
|
| DBClusterNotFoundFaultError
|
|
3251
3240
|
| InvalidDBClusterStateFaultError
|
|
@@ -3261,7 +3250,7 @@ interface RDSService$ {
|
|
|
3261
3250
|
options?: HttpHandlerOptions,
|
|
3262
3251
|
): Effect.Effect<
|
|
3263
3252
|
StopDBInstanceCommandOutput,
|
|
3264
|
-
| Cause.
|
|
3253
|
+
| Cause.TimeoutError
|
|
3265
3254
|
| SdkError
|
|
3266
3255
|
| DBInstanceNotFoundFaultError
|
|
3267
3256
|
| DBSnapshotAlreadyExistsFaultError
|
|
@@ -3278,7 +3267,7 @@ interface RDSService$ {
|
|
|
3278
3267
|
options?: HttpHandlerOptions,
|
|
3279
3268
|
): Effect.Effect<
|
|
3280
3269
|
StopDBInstanceAutomatedBackupsReplicationCommandOutput,
|
|
3281
|
-
Cause.
|
|
3270
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3282
3271
|
>;
|
|
3283
3272
|
|
|
3284
3273
|
/**
|
|
@@ -3289,10 +3278,7 @@ interface RDSService$ {
|
|
|
3289
3278
|
options?: HttpHandlerOptions,
|
|
3290
3279
|
): Effect.Effect<
|
|
3291
3280
|
SwitchoverBlueGreenDeploymentCommandOutput,
|
|
3292
|
-
|
|
|
3293
|
-
| SdkError
|
|
3294
|
-
| BlueGreenDeploymentNotFoundFaultError
|
|
3295
|
-
| InvalidBlueGreenDeploymentStateFaultError
|
|
3281
|
+
Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError | InvalidBlueGreenDeploymentStateFaultError
|
|
3296
3282
|
>;
|
|
3297
3283
|
|
|
3298
3284
|
/**
|
|
@@ -3303,7 +3289,7 @@ interface RDSService$ {
|
|
|
3303
3289
|
options?: HttpHandlerOptions,
|
|
3304
3290
|
): Effect.Effect<
|
|
3305
3291
|
SwitchoverGlobalClusterCommandOutput,
|
|
3306
|
-
| Cause.
|
|
3292
|
+
| Cause.TimeoutError
|
|
3307
3293
|
| SdkError
|
|
3308
3294
|
| DBClusterNotFoundFaultError
|
|
3309
3295
|
| GlobalClusterNotFoundFaultError
|
|
@@ -3319,7 +3305,7 @@ interface RDSService$ {
|
|
|
3319
3305
|
options?: HttpHandlerOptions,
|
|
3320
3306
|
): Effect.Effect<
|
|
3321
3307
|
SwitchoverReadReplicaCommandOutput,
|
|
3322
|
-
Cause.
|
|
3308
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | InvalidDBInstanceStateFaultError
|
|
3323
3309
|
>;
|
|
3324
3310
|
}
|
|
3325
3311
|
|
|
@@ -3344,10 +3330,10 @@ export const makeRDSService = Effect.gen(function*() {
|
|
|
3344
3330
|
* @since 1.0.0
|
|
3345
3331
|
* @category models
|
|
3346
3332
|
*/
|
|
3347
|
-
export class RDSService extends
|
|
3333
|
+
export class RDSService extends ServiceMap.Service<
|
|
3348
3334
|
RDSService,
|
|
3349
3335
|
RDSService$
|
|
3350
|
-
>() {
|
|
3336
|
+
>()("@effect-aws/client-rds/RDSService") {
|
|
3351
3337
|
static readonly defaultLayer = Layer.effect(this, makeRDSService).pipe(Layer.provide(Instance.layer));
|
|
3352
3338
|
static readonly layer = (config: RDSService.Config) =>
|
|
3353
3339
|
Layer.effect(this, makeRDSService).pipe(
|