@effect-aws/client-iam 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.
Files changed (38) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -3
  3. package/dist/dts/IAMClientInstance.d.ts +4 -2
  4. package/dist/dts/IAMClientInstance.d.ts.map +1 -1
  5. package/dist/dts/IAMService.d.ts +181 -181
  6. package/dist/dts/IAMService.d.ts.map +1 -1
  7. package/dist/dts/IAMServiceConfig.d.ts +2 -1
  8. package/dist/dts/IAMServiceConfig.d.ts.map +1 -1
  9. package/dist/esm/IAMClientInstance.js +5 -3
  10. package/dist/esm/IAMClientInstance.js.map +1 -1
  11. package/dist/esm/IAMService.js +4 -2
  12. package/dist/esm/IAMService.js.map +1 -1
  13. package/dist/esm/IAMServiceConfig.js +7 -6
  14. package/dist/esm/IAMServiceConfig.js.map +1 -1
  15. package/package.json +8 -14
  16. package/src/IAMClientInstance.ts +6 -4
  17. package/src/IAMService.ts +182 -195
  18. package/src/IAMServiceConfig.ts +8 -7
  19. package/dist/cjs/Errors.d.ts +0 -42
  20. package/dist/cjs/Errors.d.ts.map +0 -1
  21. package/dist/cjs/Errors.js +0 -41
  22. package/dist/cjs/Errors.js.map +0 -1
  23. package/dist/cjs/IAMClientInstance.d.ts +0 -24
  24. package/dist/cjs/IAMClientInstance.d.ts.map +0 -1
  25. package/dist/cjs/IAMClientInstance.js +0 -50
  26. package/dist/cjs/IAMClientInstance.js.map +0 -1
  27. package/dist/cjs/IAMService.d.ts +0 -750
  28. package/dist/cjs/IAMService.d.ts.map +0 -1
  29. package/dist/cjs/IAMService.js +0 -235
  30. package/dist/cjs/IAMService.js.map +0 -1
  31. package/dist/cjs/IAMServiceConfig.d.ts +0 -25
  32. package/dist/cjs/IAMServiceConfig.d.ts.map +0 -1
  33. package/dist/cjs/IAMServiceConfig.js +0 -35
  34. package/dist/cjs/IAMServiceConfig.js.map +0 -1
  35. package/dist/cjs/index.d.ts +0 -44
  36. package/dist/cjs/index.d.ts.map +0 -1
  37. package/dist/cjs/index.js +0 -56
  38. package/dist/cjs/index.js.map +0 -1
package/src/IAMService.ts CHANGED
@@ -535,8 +535,10 @@ import {
535
535
  } from "@aws-sdk/client-iam";
536
536
  import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
537
537
  import { Service } from "@effect-aws/commons";
538
- import type { Cause } from "effect";
539
- import { Effect, Layer } from "effect";
538
+ import type * as Cause from "effect/Cause";
539
+ import * as Effect from "effect/Effect";
540
+ import * as Layer from "effect/Layer";
541
+ import * as ServiceMap from "effect/ServiceMap";
540
542
  import type {
541
543
  AccountNotManagementOrDelegatedAdministratorError,
542
544
  CallerIsNotManagementAccountError,
@@ -769,7 +771,7 @@ interface IAMService$ {
769
771
  options?: HttpHandlerOptions,
770
772
  ): Effect.Effect<
771
773
  AcceptDelegationRequestCommandOutput,
772
- Cause.TimeoutException | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
774
+ Cause.TimeoutError | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
773
775
  >;
774
776
 
775
777
  /**
@@ -780,7 +782,7 @@ interface IAMService$ {
780
782
  options?: HttpHandlerOptions,
781
783
  ): Effect.Effect<
782
784
  AddClientIDToOpenIDConnectProviderCommandOutput,
783
- | Cause.TimeoutException
785
+ | Cause.TimeoutError
784
786
  | SdkError
785
787
  | ConcurrentModificationError
786
788
  | InvalidInputError
@@ -797,7 +799,7 @@ interface IAMService$ {
797
799
  options?: HttpHandlerOptions,
798
800
  ): Effect.Effect<
799
801
  AddRoleToInstanceProfileCommandOutput,
800
- | Cause.TimeoutException
802
+ | Cause.TimeoutError
801
803
  | SdkError
802
804
  | EntityAlreadyExistsError
803
805
  | LimitExceededError
@@ -814,7 +816,7 @@ interface IAMService$ {
814
816
  options?: HttpHandlerOptions,
815
817
  ): Effect.Effect<
816
818
  AddUserToGroupCommandOutput,
817
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
819
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
818
820
  >;
819
821
 
820
822
  /**
@@ -825,7 +827,7 @@ interface IAMService$ {
825
827
  options?: HttpHandlerOptions,
826
828
  ): Effect.Effect<
827
829
  AssociateDelegationRequestCommandOutput,
828
- | Cause.TimeoutException
830
+ | Cause.TimeoutError
829
831
  | SdkError
830
832
  | ConcurrentModificationError
831
833
  | InvalidInputError
@@ -841,7 +843,7 @@ interface IAMService$ {
841
843
  options?: HttpHandlerOptions,
842
844
  ): Effect.Effect<
843
845
  AttachGroupPolicyCommandOutput,
844
- | Cause.TimeoutException
846
+ | Cause.TimeoutError
845
847
  | SdkError
846
848
  | InvalidInputError
847
849
  | LimitExceededError
@@ -858,7 +860,7 @@ interface IAMService$ {
858
860
  options?: HttpHandlerOptions,
859
861
  ): Effect.Effect<
860
862
  AttachRolePolicyCommandOutput,
861
- | Cause.TimeoutException
863
+ | Cause.TimeoutError
862
864
  | SdkError
863
865
  | InvalidInputError
864
866
  | LimitExceededError
@@ -876,7 +878,7 @@ interface IAMService$ {
876
878
  options?: HttpHandlerOptions,
877
879
  ): Effect.Effect<
878
880
  AttachUserPolicyCommandOutput,
879
- | Cause.TimeoutException
881
+ | Cause.TimeoutError
880
882
  | SdkError
881
883
  | InvalidInputError
882
884
  | LimitExceededError
@@ -893,7 +895,7 @@ interface IAMService$ {
893
895
  options?: HttpHandlerOptions,
894
896
  ): Effect.Effect<
895
897
  ChangePasswordCommandOutput,
896
- | Cause.TimeoutException
898
+ | Cause.TimeoutError
897
899
  | SdkError
898
900
  | EntityTemporarilyUnmodifiableError
899
901
  | InvalidUserTypeError
@@ -911,7 +913,7 @@ interface IAMService$ {
911
913
  options?: HttpHandlerOptions,
912
914
  ): Effect.Effect<
913
915
  CreateAccessKeyCommandOutput,
914
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
916
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
915
917
  >;
916
918
 
917
919
  /**
@@ -922,7 +924,7 @@ interface IAMService$ {
922
924
  options?: HttpHandlerOptions,
923
925
  ): Effect.Effect<
924
926
  CreateAccountAliasCommandOutput,
925
- | Cause.TimeoutException
927
+ | Cause.TimeoutError
926
928
  | SdkError
927
929
  | ConcurrentModificationError
928
930
  | EntityAlreadyExistsError
@@ -938,7 +940,7 @@ interface IAMService$ {
938
940
  options?: HttpHandlerOptions,
939
941
  ): Effect.Effect<
940
942
  CreateDelegationRequestCommandOutput,
941
- | Cause.TimeoutException
943
+ | Cause.TimeoutError
942
944
  | SdkError
943
945
  | ConcurrentModificationError
944
946
  | EntityAlreadyExistsError
@@ -955,7 +957,7 @@ interface IAMService$ {
955
957
  options?: HttpHandlerOptions,
956
958
  ): Effect.Effect<
957
959
  CreateGroupCommandOutput,
958
- | Cause.TimeoutException
960
+ | Cause.TimeoutError
959
961
  | SdkError
960
962
  | EntityAlreadyExistsError
961
963
  | LimitExceededError
@@ -971,7 +973,7 @@ interface IAMService$ {
971
973
  options?: HttpHandlerOptions,
972
974
  ): Effect.Effect<
973
975
  CreateInstanceProfileCommandOutput,
974
- | Cause.TimeoutException
976
+ | Cause.TimeoutError
975
977
  | SdkError
976
978
  | ConcurrentModificationError
977
979
  | EntityAlreadyExistsError
@@ -988,7 +990,7 @@ interface IAMService$ {
988
990
  options?: HttpHandlerOptions,
989
991
  ): Effect.Effect<
990
992
  CreateLoginProfileCommandOutput,
991
- | Cause.TimeoutException
993
+ | Cause.TimeoutError
992
994
  | SdkError
993
995
  | EntityAlreadyExistsError
994
996
  | LimitExceededError
@@ -1005,7 +1007,7 @@ interface IAMService$ {
1005
1007
  options?: HttpHandlerOptions,
1006
1008
  ): Effect.Effect<
1007
1009
  CreateOpenIDConnectProviderCommandOutput,
1008
- | Cause.TimeoutException
1010
+ | Cause.TimeoutError
1009
1011
  | SdkError
1010
1012
  | ConcurrentModificationError
1011
1013
  | EntityAlreadyExistsError
@@ -1023,7 +1025,7 @@ interface IAMService$ {
1023
1025
  options?: HttpHandlerOptions,
1024
1026
  ): Effect.Effect<
1025
1027
  CreatePolicyCommandOutput,
1026
- | Cause.TimeoutException
1028
+ | Cause.TimeoutError
1027
1029
  | SdkError
1028
1030
  | ConcurrentModificationError
1029
1031
  | EntityAlreadyExistsError
@@ -1041,7 +1043,7 @@ interface IAMService$ {
1041
1043
  options?: HttpHandlerOptions,
1042
1044
  ): Effect.Effect<
1043
1045
  CreatePolicyVersionCommandOutput,
1044
- | Cause.TimeoutException
1046
+ | Cause.TimeoutError
1045
1047
  | SdkError
1046
1048
  | InvalidInputError
1047
1049
  | LimitExceededError
@@ -1058,7 +1060,7 @@ interface IAMService$ {
1058
1060
  options?: HttpHandlerOptions,
1059
1061
  ): Effect.Effect<
1060
1062
  CreateRoleCommandOutput,
1061
- | Cause.TimeoutException
1063
+ | Cause.TimeoutError
1062
1064
  | SdkError
1063
1065
  | ConcurrentModificationError
1064
1066
  | EntityAlreadyExistsError
@@ -1076,7 +1078,7 @@ interface IAMService$ {
1076
1078
  options?: HttpHandlerOptions,
1077
1079
  ): Effect.Effect<
1078
1080
  CreateSAMLProviderCommandOutput,
1079
- | Cause.TimeoutException
1081
+ | Cause.TimeoutError
1080
1082
  | SdkError
1081
1083
  | ConcurrentModificationError
1082
1084
  | EntityAlreadyExistsError
@@ -1093,7 +1095,7 @@ interface IAMService$ {
1093
1095
  options?: HttpHandlerOptions,
1094
1096
  ): Effect.Effect<
1095
1097
  CreateServiceLinkedRoleCommandOutput,
1096
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1098
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1097
1099
  >;
1098
1100
 
1099
1101
  /**
@@ -1104,7 +1106,7 @@ interface IAMService$ {
1104
1106
  options?: HttpHandlerOptions,
1105
1107
  ): Effect.Effect<
1106
1108
  CreateServiceSpecificCredentialCommandOutput,
1107
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError
1109
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError
1108
1110
  >;
1109
1111
 
1110
1112
  /**
@@ -1115,7 +1117,7 @@ interface IAMService$ {
1115
1117
  options?: HttpHandlerOptions,
1116
1118
  ): Effect.Effect<
1117
1119
  CreateUserCommandOutput,
1118
- | Cause.TimeoutException
1120
+ | Cause.TimeoutError
1119
1121
  | SdkError
1120
1122
  | ConcurrentModificationError
1121
1123
  | EntityAlreadyExistsError
@@ -1133,7 +1135,7 @@ interface IAMService$ {
1133
1135
  options?: HttpHandlerOptions,
1134
1136
  ): Effect.Effect<
1135
1137
  CreateVirtualMFADeviceCommandOutput,
1136
- | Cause.TimeoutException
1138
+ | Cause.TimeoutError
1137
1139
  | SdkError
1138
1140
  | ConcurrentModificationError
1139
1141
  | EntityAlreadyExistsError
@@ -1150,7 +1152,7 @@ interface IAMService$ {
1150
1152
  options?: HttpHandlerOptions,
1151
1153
  ): Effect.Effect<
1152
1154
  DeactivateMFADeviceCommandOutput,
1153
- | Cause.TimeoutException
1155
+ | Cause.TimeoutError
1154
1156
  | SdkError
1155
1157
  | ConcurrentModificationError
1156
1158
  | EntityTemporarilyUnmodifiableError
@@ -1167,7 +1169,7 @@ interface IAMService$ {
1167
1169
  options?: HttpHandlerOptions,
1168
1170
  ): Effect.Effect<
1169
1171
  DeleteAccessKeyCommandOutput,
1170
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1172
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1171
1173
  >;
1172
1174
 
1173
1175
  /**
@@ -1178,7 +1180,7 @@ interface IAMService$ {
1178
1180
  options?: HttpHandlerOptions,
1179
1181
  ): Effect.Effect<
1180
1182
  DeleteAccountAliasCommandOutput,
1181
- | Cause.TimeoutException
1183
+ | Cause.TimeoutError
1182
1184
  | SdkError
1183
1185
  | ConcurrentModificationError
1184
1186
  | LimitExceededError
@@ -1194,7 +1196,7 @@ interface IAMService$ {
1194
1196
  options?: HttpHandlerOptions,
1195
1197
  ): Effect.Effect<
1196
1198
  DeleteAccountPasswordPolicyCommandOutput,
1197
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1199
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1198
1200
  >;
1199
1201
 
1200
1202
  /**
@@ -1205,12 +1207,7 @@ interface IAMService$ {
1205
1207
  options?: HttpHandlerOptions,
1206
1208
  ): Effect.Effect<
1207
1209
  DeleteGroupCommandOutput,
1208
- | Cause.TimeoutException
1209
- | SdkError
1210
- | DeleteConflictError
1211
- | LimitExceededError
1212
- | NoSuchEntityError
1213
- | ServiceFailureError
1210
+ Cause.TimeoutError | SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1214
1211
  >;
1215
1212
 
1216
1213
  /**
@@ -1221,7 +1218,7 @@ interface IAMService$ {
1221
1218
  options?: HttpHandlerOptions,
1222
1219
  ): Effect.Effect<
1223
1220
  DeleteGroupPolicyCommandOutput,
1224
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1221
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1225
1222
  >;
1226
1223
 
1227
1224
  /**
@@ -1232,12 +1229,7 @@ interface IAMService$ {
1232
1229
  options?: HttpHandlerOptions,
1233
1230
  ): Effect.Effect<
1234
1231
  DeleteInstanceProfileCommandOutput,
1235
- | Cause.TimeoutException
1236
- | SdkError
1237
- | DeleteConflictError
1238
- | LimitExceededError
1239
- | NoSuchEntityError
1240
- | ServiceFailureError
1232
+ Cause.TimeoutError | SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1241
1233
  >;
1242
1234
 
1243
1235
  /**
@@ -1248,7 +1240,7 @@ interface IAMService$ {
1248
1240
  options?: HttpHandlerOptions,
1249
1241
  ): Effect.Effect<
1250
1242
  DeleteLoginProfileCommandOutput,
1251
- | Cause.TimeoutException
1243
+ | Cause.TimeoutError
1252
1244
  | SdkError
1253
1245
  | EntityTemporarilyUnmodifiableError
1254
1246
  | LimitExceededError
@@ -1264,7 +1256,7 @@ interface IAMService$ {
1264
1256
  options?: HttpHandlerOptions,
1265
1257
  ): Effect.Effect<
1266
1258
  DeleteOpenIDConnectProviderCommandOutput,
1267
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1259
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1268
1260
  >;
1269
1261
 
1270
1262
  /**
@@ -1275,7 +1267,7 @@ interface IAMService$ {
1275
1267
  options?: HttpHandlerOptions,
1276
1268
  ): Effect.Effect<
1277
1269
  DeletePolicyCommandOutput,
1278
- | Cause.TimeoutException
1270
+ | Cause.TimeoutError
1279
1271
  | SdkError
1280
1272
  | DeleteConflictError
1281
1273
  | InvalidInputError
@@ -1292,7 +1284,7 @@ interface IAMService$ {
1292
1284
  options?: HttpHandlerOptions,
1293
1285
  ): Effect.Effect<
1294
1286
  DeletePolicyVersionCommandOutput,
1295
- | Cause.TimeoutException
1287
+ | Cause.TimeoutError
1296
1288
  | SdkError
1297
1289
  | DeleteConflictError
1298
1290
  | InvalidInputError
@@ -1309,7 +1301,7 @@ interface IAMService$ {
1309
1301
  options?: HttpHandlerOptions,
1310
1302
  ): Effect.Effect<
1311
1303
  DeleteRoleCommandOutput,
1312
- | Cause.TimeoutException
1304
+ | Cause.TimeoutError
1313
1305
  | SdkError
1314
1306
  | ConcurrentModificationError
1315
1307
  | DeleteConflictError
@@ -1327,7 +1319,7 @@ interface IAMService$ {
1327
1319
  options?: HttpHandlerOptions,
1328
1320
  ): Effect.Effect<
1329
1321
  DeleteRolePermissionsBoundaryCommandOutput,
1330
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
1322
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
1331
1323
  >;
1332
1324
 
1333
1325
  /**
@@ -1338,7 +1330,7 @@ interface IAMService$ {
1338
1330
  options?: HttpHandlerOptions,
1339
1331
  ): Effect.Effect<
1340
1332
  DeleteRolePolicyCommandOutput,
1341
- | Cause.TimeoutException
1333
+ | Cause.TimeoutError
1342
1334
  | SdkError
1343
1335
  | LimitExceededError
1344
1336
  | NoSuchEntityError
@@ -1354,7 +1346,7 @@ interface IAMService$ {
1354
1346
  options?: HttpHandlerOptions,
1355
1347
  ): Effect.Effect<
1356
1348
  DeleteSAMLProviderCommandOutput,
1357
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1349
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1358
1350
  >;
1359
1351
 
1360
1352
  /**
@@ -1365,7 +1357,7 @@ interface IAMService$ {
1365
1357
  options?: HttpHandlerOptions,
1366
1358
  ): Effect.Effect<
1367
1359
  DeleteSSHPublicKeyCommandOutput,
1368
- Cause.TimeoutException | SdkError | NoSuchEntityError
1360
+ Cause.TimeoutError | SdkError | NoSuchEntityError
1369
1361
  >;
1370
1362
 
1371
1363
  /**
@@ -1376,12 +1368,7 @@ interface IAMService$ {
1376
1368
  options?: HttpHandlerOptions,
1377
1369
  ): Effect.Effect<
1378
1370
  DeleteServerCertificateCommandOutput,
1379
- | Cause.TimeoutException
1380
- | SdkError
1381
- | DeleteConflictError
1382
- | LimitExceededError
1383
- | NoSuchEntityError
1384
- | ServiceFailureError
1371
+ Cause.TimeoutError | SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1385
1372
  >;
1386
1373
 
1387
1374
  /**
@@ -1392,7 +1379,7 @@ interface IAMService$ {
1392
1379
  options?: HttpHandlerOptions,
1393
1380
  ): Effect.Effect<
1394
1381
  DeleteServiceLinkedRoleCommandOutput,
1395
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1382
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1396
1383
  >;
1397
1384
 
1398
1385
  /**
@@ -1403,7 +1390,7 @@ interface IAMService$ {
1403
1390
  options?: HttpHandlerOptions,
1404
1391
  ): Effect.Effect<
1405
1392
  DeleteServiceSpecificCredentialCommandOutput,
1406
- Cause.TimeoutException | SdkError | NoSuchEntityError
1393
+ Cause.TimeoutError | SdkError | NoSuchEntityError
1407
1394
  >;
1408
1395
 
1409
1396
  /**
@@ -1414,7 +1401,7 @@ interface IAMService$ {
1414
1401
  options?: HttpHandlerOptions,
1415
1402
  ): Effect.Effect<
1416
1403
  DeleteSigningCertificateCommandOutput,
1417
- | Cause.TimeoutException
1404
+ | Cause.TimeoutError
1418
1405
  | SdkError
1419
1406
  | ConcurrentModificationError
1420
1407
  | LimitExceededError
@@ -1430,7 +1417,7 @@ interface IAMService$ {
1430
1417
  options?: HttpHandlerOptions,
1431
1418
  ): Effect.Effect<
1432
1419
  DeleteUserCommandOutput,
1433
- | Cause.TimeoutException
1420
+ | Cause.TimeoutError
1434
1421
  | SdkError
1435
1422
  | ConcurrentModificationError
1436
1423
  | DeleteConflictError
@@ -1447,7 +1434,7 @@ interface IAMService$ {
1447
1434
  options?: HttpHandlerOptions,
1448
1435
  ): Effect.Effect<
1449
1436
  DeleteUserPermissionsBoundaryCommandOutput,
1450
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1437
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1451
1438
  >;
1452
1439
 
1453
1440
  /**
@@ -1458,7 +1445,7 @@ interface IAMService$ {
1458
1445
  options?: HttpHandlerOptions,
1459
1446
  ): Effect.Effect<
1460
1447
  DeleteUserPolicyCommandOutput,
1461
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1448
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1462
1449
  >;
1463
1450
 
1464
1451
  /**
@@ -1469,7 +1456,7 @@ interface IAMService$ {
1469
1456
  options?: HttpHandlerOptions,
1470
1457
  ): Effect.Effect<
1471
1458
  DeleteVirtualMFADeviceCommandOutput,
1472
- | Cause.TimeoutException
1459
+ | Cause.TimeoutError
1473
1460
  | SdkError
1474
1461
  | ConcurrentModificationError
1475
1462
  | DeleteConflictError
@@ -1486,7 +1473,7 @@ interface IAMService$ {
1486
1473
  options?: HttpHandlerOptions,
1487
1474
  ): Effect.Effect<
1488
1475
  DetachGroupPolicyCommandOutput,
1489
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1476
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1490
1477
  >;
1491
1478
 
1492
1479
  /**
@@ -1497,7 +1484,7 @@ interface IAMService$ {
1497
1484
  options?: HttpHandlerOptions,
1498
1485
  ): Effect.Effect<
1499
1486
  DetachRolePolicyCommandOutput,
1500
- | Cause.TimeoutException
1487
+ | Cause.TimeoutError
1501
1488
  | SdkError
1502
1489
  | InvalidInputError
1503
1490
  | LimitExceededError
@@ -1514,7 +1501,7 @@ interface IAMService$ {
1514
1501
  options?: HttpHandlerOptions,
1515
1502
  ): Effect.Effect<
1516
1503
  DetachUserPolicyCommandOutput,
1517
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1504
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
1518
1505
  >;
1519
1506
 
1520
1507
  /**
@@ -1525,7 +1512,7 @@ interface IAMService$ {
1525
1512
  options?: HttpHandlerOptions,
1526
1513
  ): Effect.Effect<
1527
1514
  DisableOrganizationsRootCredentialsManagementCommandOutput,
1528
- | Cause.TimeoutException
1515
+ | Cause.TimeoutError
1529
1516
  | SdkError
1530
1517
  | AccountNotManagementOrDelegatedAdministratorError
1531
1518
  | OrganizationNotFoundError
@@ -1541,7 +1528,7 @@ interface IAMService$ {
1541
1528
  options?: HttpHandlerOptions,
1542
1529
  ): Effect.Effect<
1543
1530
  DisableOrganizationsRootSessionsCommandOutput,
1544
- | Cause.TimeoutException
1531
+ | Cause.TimeoutError
1545
1532
  | SdkError
1546
1533
  | AccountNotManagementOrDelegatedAdministratorError
1547
1534
  | OrganizationNotFoundError
@@ -1557,7 +1544,7 @@ interface IAMService$ {
1557
1544
  options?: HttpHandlerOptions,
1558
1545
  ): Effect.Effect<
1559
1546
  DisableOutboundWebIdentityFederationCommandOutput,
1560
- Cause.TimeoutException | SdkError | FeatureDisabledError
1547
+ Cause.TimeoutError | SdkError | FeatureDisabledError
1561
1548
  >;
1562
1549
 
1563
1550
  /**
@@ -1568,7 +1555,7 @@ interface IAMService$ {
1568
1555
  options?: HttpHandlerOptions,
1569
1556
  ): Effect.Effect<
1570
1557
  EnableMFADeviceCommandOutput,
1571
- | Cause.TimeoutException
1558
+ | Cause.TimeoutError
1572
1559
  | SdkError
1573
1560
  | ConcurrentModificationError
1574
1561
  | EntityAlreadyExistsError
@@ -1587,7 +1574,7 @@ interface IAMService$ {
1587
1574
  options?: HttpHandlerOptions,
1588
1575
  ): Effect.Effect<
1589
1576
  EnableOrganizationsRootCredentialsManagementCommandOutput,
1590
- | Cause.TimeoutException
1577
+ | Cause.TimeoutError
1591
1578
  | SdkError
1592
1579
  | AccountNotManagementOrDelegatedAdministratorError
1593
1580
  | CallerIsNotManagementAccountError
@@ -1604,7 +1591,7 @@ interface IAMService$ {
1604
1591
  options?: HttpHandlerOptions,
1605
1592
  ): Effect.Effect<
1606
1593
  EnableOrganizationsRootSessionsCommandOutput,
1607
- | Cause.TimeoutException
1594
+ | Cause.TimeoutError
1608
1595
  | SdkError
1609
1596
  | AccountNotManagementOrDelegatedAdministratorError
1610
1597
  | CallerIsNotManagementAccountError
@@ -1621,7 +1608,7 @@ interface IAMService$ {
1621
1608
  options?: HttpHandlerOptions,
1622
1609
  ): Effect.Effect<
1623
1610
  EnableOutboundWebIdentityFederationCommandOutput,
1624
- Cause.TimeoutException | SdkError | FeatureEnabledError
1611
+ Cause.TimeoutError | SdkError | FeatureEnabledError
1625
1612
  >;
1626
1613
 
1627
1614
  /**
@@ -1632,7 +1619,7 @@ interface IAMService$ {
1632
1619
  options?: HttpHandlerOptions,
1633
1620
  ): Effect.Effect<
1634
1621
  GenerateCredentialReportCommandOutput,
1635
- Cause.TimeoutException | SdkError | LimitExceededError | ServiceFailureError
1622
+ Cause.TimeoutError | SdkError | LimitExceededError | ServiceFailureError
1636
1623
  >;
1637
1624
 
1638
1625
  /**
@@ -1643,7 +1630,7 @@ interface IAMService$ {
1643
1630
  options?: HttpHandlerOptions,
1644
1631
  ): Effect.Effect<
1645
1632
  GenerateOrganizationsAccessReportCommandOutput,
1646
- Cause.TimeoutException | SdkError | ReportGenerationLimitExceededError
1633
+ Cause.TimeoutError | SdkError | ReportGenerationLimitExceededError
1647
1634
  >;
1648
1635
 
1649
1636
  /**
@@ -1654,7 +1641,7 @@ interface IAMService$ {
1654
1641
  options?: HttpHandlerOptions,
1655
1642
  ): Effect.Effect<
1656
1643
  GenerateServiceLastAccessedDetailsCommandOutput,
1657
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
1644
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
1658
1645
  >;
1659
1646
 
1660
1647
  /**
@@ -1665,7 +1652,7 @@ interface IAMService$ {
1665
1652
  options?: HttpHandlerOptions,
1666
1653
  ): Effect.Effect<
1667
1654
  GetAccessKeyLastUsedCommandOutput,
1668
- Cause.TimeoutException | SdkError
1655
+ Cause.TimeoutError | SdkError
1669
1656
  >;
1670
1657
 
1671
1658
  /**
@@ -1676,7 +1663,7 @@ interface IAMService$ {
1676
1663
  options?: HttpHandlerOptions,
1677
1664
  ): Effect.Effect<
1678
1665
  GetAccountAuthorizationDetailsCommandOutput,
1679
- Cause.TimeoutException | SdkError | ServiceFailureError
1666
+ Cause.TimeoutError | SdkError | ServiceFailureError
1680
1667
  >;
1681
1668
 
1682
1669
  /**
@@ -1687,7 +1674,7 @@ interface IAMService$ {
1687
1674
  options?: HttpHandlerOptions,
1688
1675
  ): Effect.Effect<
1689
1676
  GetAccountPasswordPolicyCommandOutput,
1690
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1677
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1691
1678
  >;
1692
1679
 
1693
1680
  /**
@@ -1698,7 +1685,7 @@ interface IAMService$ {
1698
1685
  options?: HttpHandlerOptions,
1699
1686
  ): Effect.Effect<
1700
1687
  GetAccountSummaryCommandOutput,
1701
- Cause.TimeoutException | SdkError | ServiceFailureError
1688
+ Cause.TimeoutError | SdkError | ServiceFailureError
1702
1689
  >;
1703
1690
 
1704
1691
  /**
@@ -1709,7 +1696,7 @@ interface IAMService$ {
1709
1696
  options?: HttpHandlerOptions,
1710
1697
  ): Effect.Effect<
1711
1698
  GetContextKeysForCustomPolicyCommandOutput,
1712
- Cause.TimeoutException | SdkError | InvalidInputError
1699
+ Cause.TimeoutError | SdkError | InvalidInputError
1713
1700
  >;
1714
1701
 
1715
1702
  /**
@@ -1720,7 +1707,7 @@ interface IAMService$ {
1720
1707
  options?: HttpHandlerOptions,
1721
1708
  ): Effect.Effect<
1722
1709
  GetContextKeysForPrincipalPolicyCommandOutput,
1723
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
1710
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
1724
1711
  >;
1725
1712
 
1726
1713
  /**
@@ -1731,7 +1718,7 @@ interface IAMService$ {
1731
1718
  options?: HttpHandlerOptions,
1732
1719
  ): Effect.Effect<
1733
1720
  GetCredentialReportCommandOutput,
1734
- | Cause.TimeoutException
1721
+ | Cause.TimeoutError
1735
1722
  | SdkError
1736
1723
  | CredentialReportExpiredError
1737
1724
  | CredentialReportNotPresentError
@@ -1747,7 +1734,7 @@ interface IAMService$ {
1747
1734
  options?: HttpHandlerOptions,
1748
1735
  ): Effect.Effect<
1749
1736
  GetDelegationRequestCommandOutput,
1750
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1737
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1751
1738
  >;
1752
1739
 
1753
1740
  /**
@@ -1758,7 +1745,7 @@ interface IAMService$ {
1758
1745
  options?: HttpHandlerOptions,
1759
1746
  ): Effect.Effect<
1760
1747
  GetGroupCommandOutput,
1761
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1748
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1762
1749
  >;
1763
1750
 
1764
1751
  /**
@@ -1769,7 +1756,7 @@ interface IAMService$ {
1769
1756
  options?: HttpHandlerOptions,
1770
1757
  ): Effect.Effect<
1771
1758
  GetGroupPolicyCommandOutput,
1772
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1759
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1773
1760
  >;
1774
1761
 
1775
1762
  /**
@@ -1780,7 +1767,7 @@ interface IAMService$ {
1780
1767
  options?: HttpHandlerOptions,
1781
1768
  ): Effect.Effect<
1782
1769
  GetHumanReadableSummaryCommandOutput,
1783
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1770
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1784
1771
  >;
1785
1772
 
1786
1773
  /**
@@ -1791,7 +1778,7 @@ interface IAMService$ {
1791
1778
  options?: HttpHandlerOptions,
1792
1779
  ): Effect.Effect<
1793
1780
  GetInstanceProfileCommandOutput,
1794
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1781
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1795
1782
  >;
1796
1783
 
1797
1784
  /**
@@ -1802,7 +1789,7 @@ interface IAMService$ {
1802
1789
  options?: HttpHandlerOptions,
1803
1790
  ): Effect.Effect<
1804
1791
  GetLoginProfileCommandOutput,
1805
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1792
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1806
1793
  >;
1807
1794
 
1808
1795
  /**
@@ -1813,7 +1800,7 @@ interface IAMService$ {
1813
1800
  options?: HttpHandlerOptions,
1814
1801
  ): Effect.Effect<
1815
1802
  GetMFADeviceCommandOutput,
1816
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1803
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1817
1804
  >;
1818
1805
 
1819
1806
  /**
@@ -1824,7 +1811,7 @@ interface IAMService$ {
1824
1811
  options?: HttpHandlerOptions,
1825
1812
  ): Effect.Effect<
1826
1813
  GetOpenIDConnectProviderCommandOutput,
1827
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1814
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1828
1815
  >;
1829
1816
 
1830
1817
  /**
@@ -1835,7 +1822,7 @@ interface IAMService$ {
1835
1822
  options?: HttpHandlerOptions,
1836
1823
  ): Effect.Effect<
1837
1824
  GetOrganizationsAccessReportCommandOutput,
1838
- Cause.TimeoutException | SdkError | NoSuchEntityError
1825
+ Cause.TimeoutError | SdkError | NoSuchEntityError
1839
1826
  >;
1840
1827
 
1841
1828
  /**
@@ -1846,7 +1833,7 @@ interface IAMService$ {
1846
1833
  options?: HttpHandlerOptions,
1847
1834
  ): Effect.Effect<
1848
1835
  GetOutboundWebIdentityFederationInfoCommandOutput,
1849
- Cause.TimeoutException | SdkError | FeatureDisabledError
1836
+ Cause.TimeoutError | SdkError | FeatureDisabledError
1850
1837
  >;
1851
1838
 
1852
1839
  /**
@@ -1857,7 +1844,7 @@ interface IAMService$ {
1857
1844
  options?: HttpHandlerOptions,
1858
1845
  ): Effect.Effect<
1859
1846
  GetPolicyCommandOutput,
1860
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1847
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1861
1848
  >;
1862
1849
 
1863
1850
  /**
@@ -1868,7 +1855,7 @@ interface IAMService$ {
1868
1855
  options?: HttpHandlerOptions,
1869
1856
  ): Effect.Effect<
1870
1857
  GetPolicyVersionCommandOutput,
1871
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1858
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1872
1859
  >;
1873
1860
 
1874
1861
  /**
@@ -1879,7 +1866,7 @@ interface IAMService$ {
1879
1866
  options?: HttpHandlerOptions,
1880
1867
  ): Effect.Effect<
1881
1868
  GetRoleCommandOutput,
1882
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1869
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1883
1870
  >;
1884
1871
 
1885
1872
  /**
@@ -1890,7 +1877,7 @@ interface IAMService$ {
1890
1877
  options?: HttpHandlerOptions,
1891
1878
  ): Effect.Effect<
1892
1879
  GetRolePolicyCommandOutput,
1893
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1880
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1894
1881
  >;
1895
1882
 
1896
1883
  /**
@@ -1901,7 +1888,7 @@ interface IAMService$ {
1901
1888
  options?: HttpHandlerOptions,
1902
1889
  ): Effect.Effect<
1903
1890
  GetSAMLProviderCommandOutput,
1904
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1891
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1905
1892
  >;
1906
1893
 
1907
1894
  /**
@@ -1912,7 +1899,7 @@ interface IAMService$ {
1912
1899
  options?: HttpHandlerOptions,
1913
1900
  ): Effect.Effect<
1914
1901
  GetSSHPublicKeyCommandOutput,
1915
- Cause.TimeoutException | SdkError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError
1902
+ Cause.TimeoutError | SdkError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError
1916
1903
  >;
1917
1904
 
1918
1905
  /**
@@ -1923,7 +1910,7 @@ interface IAMService$ {
1923
1910
  options?: HttpHandlerOptions,
1924
1911
  ): Effect.Effect<
1925
1912
  GetServerCertificateCommandOutput,
1926
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1913
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1927
1914
  >;
1928
1915
 
1929
1916
  /**
@@ -1934,7 +1921,7 @@ interface IAMService$ {
1934
1921
  options?: HttpHandlerOptions,
1935
1922
  ): Effect.Effect<
1936
1923
  GetServiceLastAccessedDetailsCommandOutput,
1937
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
1924
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
1938
1925
  >;
1939
1926
 
1940
1927
  /**
@@ -1945,7 +1932,7 @@ interface IAMService$ {
1945
1932
  options?: HttpHandlerOptions,
1946
1933
  ): Effect.Effect<
1947
1934
  GetServiceLastAccessedDetailsWithEntitiesCommandOutput,
1948
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
1935
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
1949
1936
  >;
1950
1937
 
1951
1938
  /**
@@ -1956,7 +1943,7 @@ interface IAMService$ {
1956
1943
  options?: HttpHandlerOptions,
1957
1944
  ): Effect.Effect<
1958
1945
  GetServiceLinkedRoleDeletionStatusCommandOutput,
1959
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1946
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
1960
1947
  >;
1961
1948
 
1962
1949
  /**
@@ -1967,7 +1954,7 @@ interface IAMService$ {
1967
1954
  options?: HttpHandlerOptions,
1968
1955
  ): Effect.Effect<
1969
1956
  GetUserCommandOutput,
1970
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1957
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1971
1958
  >;
1972
1959
 
1973
1960
  /**
@@ -1978,7 +1965,7 @@ interface IAMService$ {
1978
1965
  options?: HttpHandlerOptions,
1979
1966
  ): Effect.Effect<
1980
1967
  GetUserPolicyCommandOutput,
1981
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1968
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1982
1969
  >;
1983
1970
 
1984
1971
  /**
@@ -1989,7 +1976,7 @@ interface IAMService$ {
1989
1976
  options?: HttpHandlerOptions,
1990
1977
  ): Effect.Effect<
1991
1978
  ListAccessKeysCommandOutput,
1992
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
1979
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
1993
1980
  >;
1994
1981
 
1995
1982
  /**
@@ -2000,7 +1987,7 @@ interface IAMService$ {
2000
1987
  options?: HttpHandlerOptions,
2001
1988
  ): Effect.Effect<
2002
1989
  ListAccountAliasesCommandOutput,
2003
- Cause.TimeoutException | SdkError | ServiceFailureError
1990
+ Cause.TimeoutError | SdkError | ServiceFailureError
2004
1991
  >;
2005
1992
 
2006
1993
  /**
@@ -2011,7 +1998,7 @@ interface IAMService$ {
2011
1998
  options?: HttpHandlerOptions,
2012
1999
  ): Effect.Effect<
2013
2000
  ListAttachedGroupPoliciesCommandOutput,
2014
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2001
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2015
2002
  >;
2016
2003
 
2017
2004
  /**
@@ -2022,7 +2009,7 @@ interface IAMService$ {
2022
2009
  options?: HttpHandlerOptions,
2023
2010
  ): Effect.Effect<
2024
2011
  ListAttachedRolePoliciesCommandOutput,
2025
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2012
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2026
2013
  >;
2027
2014
 
2028
2015
  /**
@@ -2033,7 +2020,7 @@ interface IAMService$ {
2033
2020
  options?: HttpHandlerOptions,
2034
2021
  ): Effect.Effect<
2035
2022
  ListAttachedUserPoliciesCommandOutput,
2036
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2023
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2037
2024
  >;
2038
2025
 
2039
2026
  /**
@@ -2044,7 +2031,7 @@ interface IAMService$ {
2044
2031
  options?: HttpHandlerOptions,
2045
2032
  ): Effect.Effect<
2046
2033
  ListDelegationRequestsCommandOutput,
2047
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2034
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2048
2035
  >;
2049
2036
 
2050
2037
  /**
@@ -2055,7 +2042,7 @@ interface IAMService$ {
2055
2042
  options?: HttpHandlerOptions,
2056
2043
  ): Effect.Effect<
2057
2044
  ListEntitiesForPolicyCommandOutput,
2058
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2045
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2059
2046
  >;
2060
2047
 
2061
2048
  /**
@@ -2066,7 +2053,7 @@ interface IAMService$ {
2066
2053
  options?: HttpHandlerOptions,
2067
2054
  ): Effect.Effect<
2068
2055
  ListGroupPoliciesCommandOutput,
2069
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2056
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2070
2057
  >;
2071
2058
 
2072
2059
  /**
@@ -2077,7 +2064,7 @@ interface IAMService$ {
2077
2064
  options?: HttpHandlerOptions,
2078
2065
  ): Effect.Effect<
2079
2066
  ListGroupsCommandOutput,
2080
- Cause.TimeoutException | SdkError | ServiceFailureError
2067
+ Cause.TimeoutError | SdkError | ServiceFailureError
2081
2068
  >;
2082
2069
 
2083
2070
  /**
@@ -2088,7 +2075,7 @@ interface IAMService$ {
2088
2075
  options?: HttpHandlerOptions,
2089
2076
  ): Effect.Effect<
2090
2077
  ListGroupsForUserCommandOutput,
2091
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2078
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2092
2079
  >;
2093
2080
 
2094
2081
  /**
@@ -2099,7 +2086,7 @@ interface IAMService$ {
2099
2086
  options?: HttpHandlerOptions,
2100
2087
  ): Effect.Effect<
2101
2088
  ListInstanceProfileTagsCommandOutput,
2102
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2089
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2103
2090
  >;
2104
2091
 
2105
2092
  /**
@@ -2110,7 +2097,7 @@ interface IAMService$ {
2110
2097
  options?: HttpHandlerOptions,
2111
2098
  ): Effect.Effect<
2112
2099
  ListInstanceProfilesCommandOutput,
2113
- Cause.TimeoutException | SdkError | ServiceFailureError
2100
+ Cause.TimeoutError | SdkError | ServiceFailureError
2114
2101
  >;
2115
2102
 
2116
2103
  /**
@@ -2121,7 +2108,7 @@ interface IAMService$ {
2121
2108
  options?: HttpHandlerOptions,
2122
2109
  ): Effect.Effect<
2123
2110
  ListInstanceProfilesForRoleCommandOutput,
2124
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2111
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2125
2112
  >;
2126
2113
 
2127
2114
  /**
@@ -2132,7 +2119,7 @@ interface IAMService$ {
2132
2119
  options?: HttpHandlerOptions,
2133
2120
  ): Effect.Effect<
2134
2121
  ListMFADeviceTagsCommandOutput,
2135
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2122
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2136
2123
  >;
2137
2124
 
2138
2125
  /**
@@ -2143,7 +2130,7 @@ interface IAMService$ {
2143
2130
  options?: HttpHandlerOptions,
2144
2131
  ): Effect.Effect<
2145
2132
  ListMFADevicesCommandOutput,
2146
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2133
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2147
2134
  >;
2148
2135
 
2149
2136
  /**
@@ -2154,7 +2141,7 @@ interface IAMService$ {
2154
2141
  options?: HttpHandlerOptions,
2155
2142
  ): Effect.Effect<
2156
2143
  ListOpenIDConnectProviderTagsCommandOutput,
2157
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2144
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2158
2145
  >;
2159
2146
 
2160
2147
  /**
@@ -2165,7 +2152,7 @@ interface IAMService$ {
2165
2152
  options?: HttpHandlerOptions,
2166
2153
  ): Effect.Effect<
2167
2154
  ListOpenIDConnectProvidersCommandOutput,
2168
- Cause.TimeoutException | SdkError | ServiceFailureError
2155
+ Cause.TimeoutError | SdkError | ServiceFailureError
2169
2156
  >;
2170
2157
 
2171
2158
  /**
@@ -2176,7 +2163,7 @@ interface IAMService$ {
2176
2163
  options?: HttpHandlerOptions,
2177
2164
  ): Effect.Effect<
2178
2165
  ListOrganizationsFeaturesCommandOutput,
2179
- | Cause.TimeoutException
2166
+ | Cause.TimeoutError
2180
2167
  | SdkError
2181
2168
  | AccountNotManagementOrDelegatedAdministratorError
2182
2169
  | OrganizationNotFoundError
@@ -2192,7 +2179,7 @@ interface IAMService$ {
2192
2179
  options?: HttpHandlerOptions,
2193
2180
  ): Effect.Effect<
2194
2181
  ListPoliciesCommandOutput,
2195
- Cause.TimeoutException | SdkError | ServiceFailureError
2182
+ Cause.TimeoutError | SdkError | ServiceFailureError
2196
2183
  >;
2197
2184
 
2198
2185
  /**
@@ -2203,7 +2190,7 @@ interface IAMService$ {
2203
2190
  options?: HttpHandlerOptions,
2204
2191
  ): Effect.Effect<
2205
2192
  ListPoliciesGrantingServiceAccessCommandOutput,
2206
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
2193
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
2207
2194
  >;
2208
2195
 
2209
2196
  /**
@@ -2214,7 +2201,7 @@ interface IAMService$ {
2214
2201
  options?: HttpHandlerOptions,
2215
2202
  ): Effect.Effect<
2216
2203
  ListPolicyTagsCommandOutput,
2217
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2204
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2218
2205
  >;
2219
2206
 
2220
2207
  /**
@@ -2225,7 +2212,7 @@ interface IAMService$ {
2225
2212
  options?: HttpHandlerOptions,
2226
2213
  ): Effect.Effect<
2227
2214
  ListPolicyVersionsCommandOutput,
2228
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2215
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2229
2216
  >;
2230
2217
 
2231
2218
  /**
@@ -2236,7 +2223,7 @@ interface IAMService$ {
2236
2223
  options?: HttpHandlerOptions,
2237
2224
  ): Effect.Effect<
2238
2225
  ListRolePoliciesCommandOutput,
2239
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2226
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2240
2227
  >;
2241
2228
 
2242
2229
  /**
@@ -2247,7 +2234,7 @@ interface IAMService$ {
2247
2234
  options?: HttpHandlerOptions,
2248
2235
  ): Effect.Effect<
2249
2236
  ListRoleTagsCommandOutput,
2250
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2237
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2251
2238
  >;
2252
2239
 
2253
2240
  /**
@@ -2258,7 +2245,7 @@ interface IAMService$ {
2258
2245
  options?: HttpHandlerOptions,
2259
2246
  ): Effect.Effect<
2260
2247
  ListRolesCommandOutput,
2261
- Cause.TimeoutException | SdkError | ServiceFailureError
2248
+ Cause.TimeoutError | SdkError | ServiceFailureError
2262
2249
  >;
2263
2250
 
2264
2251
  /**
@@ -2269,7 +2256,7 @@ interface IAMService$ {
2269
2256
  options?: HttpHandlerOptions,
2270
2257
  ): Effect.Effect<
2271
2258
  ListSAMLProviderTagsCommandOutput,
2272
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2259
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
2273
2260
  >;
2274
2261
 
2275
2262
  /**
@@ -2280,7 +2267,7 @@ interface IAMService$ {
2280
2267
  options?: HttpHandlerOptions,
2281
2268
  ): Effect.Effect<
2282
2269
  ListSAMLProvidersCommandOutput,
2283
- Cause.TimeoutException | SdkError | ServiceFailureError
2270
+ Cause.TimeoutError | SdkError | ServiceFailureError
2284
2271
  >;
2285
2272
 
2286
2273
  /**
@@ -2291,7 +2278,7 @@ interface IAMService$ {
2291
2278
  options?: HttpHandlerOptions,
2292
2279
  ): Effect.Effect<
2293
2280
  ListSSHPublicKeysCommandOutput,
2294
- Cause.TimeoutException | SdkError | NoSuchEntityError
2281
+ Cause.TimeoutError | SdkError | NoSuchEntityError
2295
2282
  >;
2296
2283
 
2297
2284
  /**
@@ -2302,7 +2289,7 @@ interface IAMService$ {
2302
2289
  options?: HttpHandlerOptions,
2303
2290
  ): Effect.Effect<
2304
2291
  ListServerCertificateTagsCommandOutput,
2305
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2292
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2306
2293
  >;
2307
2294
 
2308
2295
  /**
@@ -2313,7 +2300,7 @@ interface IAMService$ {
2313
2300
  options?: HttpHandlerOptions,
2314
2301
  ): Effect.Effect<
2315
2302
  ListServerCertificatesCommandOutput,
2316
- Cause.TimeoutException | SdkError | ServiceFailureError
2303
+ Cause.TimeoutError | SdkError | ServiceFailureError
2317
2304
  >;
2318
2305
 
2319
2306
  /**
@@ -2324,7 +2311,7 @@ interface IAMService$ {
2324
2311
  options?: HttpHandlerOptions,
2325
2312
  ): Effect.Effect<
2326
2313
  ListServiceSpecificCredentialsCommandOutput,
2327
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceNotSupportedError
2314
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceNotSupportedError
2328
2315
  >;
2329
2316
 
2330
2317
  /**
@@ -2335,7 +2322,7 @@ interface IAMService$ {
2335
2322
  options?: HttpHandlerOptions,
2336
2323
  ): Effect.Effect<
2337
2324
  ListSigningCertificatesCommandOutput,
2338
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2325
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2339
2326
  >;
2340
2327
 
2341
2328
  /**
@@ -2346,7 +2333,7 @@ interface IAMService$ {
2346
2333
  options?: HttpHandlerOptions,
2347
2334
  ): Effect.Effect<
2348
2335
  ListUserPoliciesCommandOutput,
2349
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2336
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2350
2337
  >;
2351
2338
 
2352
2339
  /**
@@ -2357,7 +2344,7 @@ interface IAMService$ {
2357
2344
  options?: HttpHandlerOptions,
2358
2345
  ): Effect.Effect<
2359
2346
  ListUserTagsCommandOutput,
2360
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
2347
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
2361
2348
  >;
2362
2349
 
2363
2350
  /**
@@ -2368,7 +2355,7 @@ interface IAMService$ {
2368
2355
  options?: HttpHandlerOptions,
2369
2356
  ): Effect.Effect<
2370
2357
  ListUsersCommandOutput,
2371
- Cause.TimeoutException | SdkError | ServiceFailureError
2358
+ Cause.TimeoutError | SdkError | ServiceFailureError
2372
2359
  >;
2373
2360
 
2374
2361
  /**
@@ -2379,7 +2366,7 @@ interface IAMService$ {
2379
2366
  options?: HttpHandlerOptions,
2380
2367
  ): Effect.Effect<
2381
2368
  ListVirtualMFADevicesCommandOutput,
2382
- Cause.TimeoutException | SdkError
2369
+ Cause.TimeoutError | SdkError
2383
2370
  >;
2384
2371
 
2385
2372
  /**
@@ -2390,7 +2377,7 @@ interface IAMService$ {
2390
2377
  options?: HttpHandlerOptions,
2391
2378
  ): Effect.Effect<
2392
2379
  PutGroupPolicyCommandOutput,
2393
- | Cause.TimeoutException
2380
+ | Cause.TimeoutError
2394
2381
  | SdkError
2395
2382
  | LimitExceededError
2396
2383
  | MalformedPolicyDocumentError
@@ -2406,7 +2393,7 @@ interface IAMService$ {
2406
2393
  options?: HttpHandlerOptions,
2407
2394
  ): Effect.Effect<
2408
2395
  PutRolePermissionsBoundaryCommandOutput,
2409
- | Cause.TimeoutException
2396
+ | Cause.TimeoutError
2410
2397
  | SdkError
2411
2398
  | InvalidInputError
2412
2399
  | NoSuchEntityError
@@ -2423,7 +2410,7 @@ interface IAMService$ {
2423
2410
  options?: HttpHandlerOptions,
2424
2411
  ): Effect.Effect<
2425
2412
  PutRolePolicyCommandOutput,
2426
- | Cause.TimeoutException
2413
+ | Cause.TimeoutError
2427
2414
  | SdkError
2428
2415
  | LimitExceededError
2429
2416
  | MalformedPolicyDocumentError
@@ -2440,7 +2427,7 @@ interface IAMService$ {
2440
2427
  options?: HttpHandlerOptions,
2441
2428
  ): Effect.Effect<
2442
2429
  PutUserPermissionsBoundaryCommandOutput,
2443
- | Cause.TimeoutException
2430
+ | Cause.TimeoutError
2444
2431
  | SdkError
2445
2432
  | InvalidInputError
2446
2433
  | NoSuchEntityError
@@ -2456,7 +2443,7 @@ interface IAMService$ {
2456
2443
  options?: HttpHandlerOptions,
2457
2444
  ): Effect.Effect<
2458
2445
  PutUserPolicyCommandOutput,
2459
- | Cause.TimeoutException
2446
+ | Cause.TimeoutError
2460
2447
  | SdkError
2461
2448
  | LimitExceededError
2462
2449
  | MalformedPolicyDocumentError
@@ -2472,7 +2459,7 @@ interface IAMService$ {
2472
2459
  options?: HttpHandlerOptions,
2473
2460
  ): Effect.Effect<
2474
2461
  RejectDelegationRequestCommandOutput,
2475
- | Cause.TimeoutException
2462
+ | Cause.TimeoutError
2476
2463
  | SdkError
2477
2464
  | ConcurrentModificationError
2478
2465
  | InvalidInputError
@@ -2488,7 +2475,7 @@ interface IAMService$ {
2488
2475
  options?: HttpHandlerOptions,
2489
2476
  ): Effect.Effect<
2490
2477
  RemoveClientIDFromOpenIDConnectProviderCommandOutput,
2491
- | Cause.TimeoutException
2478
+ | Cause.TimeoutError
2492
2479
  | SdkError
2493
2480
  | ConcurrentModificationError
2494
2481
  | InvalidInputError
@@ -2504,7 +2491,7 @@ interface IAMService$ {
2504
2491
  options?: HttpHandlerOptions,
2505
2492
  ): Effect.Effect<
2506
2493
  RemoveRoleFromInstanceProfileCommandOutput,
2507
- | Cause.TimeoutException
2494
+ | Cause.TimeoutError
2508
2495
  | SdkError
2509
2496
  | LimitExceededError
2510
2497
  | NoSuchEntityError
@@ -2520,7 +2507,7 @@ interface IAMService$ {
2520
2507
  options?: HttpHandlerOptions,
2521
2508
  ): Effect.Effect<
2522
2509
  RemoveUserFromGroupCommandOutput,
2523
- Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
2510
+ Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
2524
2511
  >;
2525
2512
 
2526
2513
  /**
@@ -2531,7 +2518,7 @@ interface IAMService$ {
2531
2518
  options?: HttpHandlerOptions,
2532
2519
  ): Effect.Effect<
2533
2520
  ResetServiceSpecificCredentialCommandOutput,
2534
- Cause.TimeoutException | SdkError | NoSuchEntityError
2521
+ Cause.TimeoutError | SdkError | NoSuchEntityError
2535
2522
  >;
2536
2523
 
2537
2524
  /**
@@ -2542,7 +2529,7 @@ interface IAMService$ {
2542
2529
  options?: HttpHandlerOptions,
2543
2530
  ): Effect.Effect<
2544
2531
  ResyncMFADeviceCommandOutput,
2545
- | Cause.TimeoutException
2532
+ | Cause.TimeoutError
2546
2533
  | SdkError
2547
2534
  | ConcurrentModificationError
2548
2535
  | InvalidAuthenticationCodeError
@@ -2559,7 +2546,7 @@ interface IAMService$ {
2559
2546
  options?: HttpHandlerOptions,
2560
2547
  ): Effect.Effect<
2561
2548
  SendDelegationTokenCommandOutput,
2562
- | Cause.TimeoutException
2549
+ | Cause.TimeoutError
2563
2550
  | SdkError
2564
2551
  | ConcurrentModificationError
2565
2552
  | InvalidInputError
@@ -2575,7 +2562,7 @@ interface IAMService$ {
2575
2562
  options?: HttpHandlerOptions,
2576
2563
  ): Effect.Effect<
2577
2564
  SetDefaultPolicyVersionCommandOutput,
2578
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
2565
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
2579
2566
  >;
2580
2567
 
2581
2568
  /**
@@ -2586,7 +2573,7 @@ interface IAMService$ {
2586
2573
  options?: HttpHandlerOptions,
2587
2574
  ): Effect.Effect<
2588
2575
  SetSecurityTokenServicePreferencesCommandOutput,
2589
- Cause.TimeoutException | SdkError | ServiceFailureError
2576
+ Cause.TimeoutError | SdkError | ServiceFailureError
2590
2577
  >;
2591
2578
 
2592
2579
  /**
@@ -2597,7 +2584,7 @@ interface IAMService$ {
2597
2584
  options?: HttpHandlerOptions,
2598
2585
  ): Effect.Effect<
2599
2586
  SimulateCustomPolicyCommandOutput,
2600
- Cause.TimeoutException | SdkError | InvalidInputError | PolicyEvaluationError
2587
+ Cause.TimeoutError | SdkError | InvalidInputError | PolicyEvaluationError
2601
2588
  >;
2602
2589
 
2603
2590
  /**
@@ -2608,7 +2595,7 @@ interface IAMService$ {
2608
2595
  options?: HttpHandlerOptions,
2609
2596
  ): Effect.Effect<
2610
2597
  SimulatePrincipalPolicyCommandOutput,
2611
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError
2598
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError
2612
2599
  >;
2613
2600
 
2614
2601
  /**
@@ -2619,7 +2606,7 @@ interface IAMService$ {
2619
2606
  options?: HttpHandlerOptions,
2620
2607
  ): Effect.Effect<
2621
2608
  TagInstanceProfileCommandOutput,
2622
- | Cause.TimeoutException
2609
+ | Cause.TimeoutError
2623
2610
  | SdkError
2624
2611
  | ConcurrentModificationError
2625
2612
  | InvalidInputError
@@ -2636,7 +2623,7 @@ interface IAMService$ {
2636
2623
  options?: HttpHandlerOptions,
2637
2624
  ): Effect.Effect<
2638
2625
  TagMFADeviceCommandOutput,
2639
- | Cause.TimeoutException
2626
+ | Cause.TimeoutError
2640
2627
  | SdkError
2641
2628
  | ConcurrentModificationError
2642
2629
  | InvalidInputError
@@ -2653,7 +2640,7 @@ interface IAMService$ {
2653
2640
  options?: HttpHandlerOptions,
2654
2641
  ): Effect.Effect<
2655
2642
  TagOpenIDConnectProviderCommandOutput,
2656
- | Cause.TimeoutException
2643
+ | Cause.TimeoutError
2657
2644
  | SdkError
2658
2645
  | ConcurrentModificationError
2659
2646
  | InvalidInputError
@@ -2670,7 +2657,7 @@ interface IAMService$ {
2670
2657
  options?: HttpHandlerOptions,
2671
2658
  ): Effect.Effect<
2672
2659
  TagPolicyCommandOutput,
2673
- | Cause.TimeoutException
2660
+ | Cause.TimeoutError
2674
2661
  | SdkError
2675
2662
  | ConcurrentModificationError
2676
2663
  | InvalidInputError
@@ -2687,7 +2674,7 @@ interface IAMService$ {
2687
2674
  options?: HttpHandlerOptions,
2688
2675
  ): Effect.Effect<
2689
2676
  TagRoleCommandOutput,
2690
- | Cause.TimeoutException
2677
+ | Cause.TimeoutError
2691
2678
  | SdkError
2692
2679
  | ConcurrentModificationError
2693
2680
  | InvalidInputError
@@ -2704,7 +2691,7 @@ interface IAMService$ {
2704
2691
  options?: HttpHandlerOptions,
2705
2692
  ): Effect.Effect<
2706
2693
  TagSAMLProviderCommandOutput,
2707
- | Cause.TimeoutException
2694
+ | Cause.TimeoutError
2708
2695
  | SdkError
2709
2696
  | ConcurrentModificationError
2710
2697
  | InvalidInputError
@@ -2721,7 +2708,7 @@ interface IAMService$ {
2721
2708
  options?: HttpHandlerOptions,
2722
2709
  ): Effect.Effect<
2723
2710
  TagServerCertificateCommandOutput,
2724
- | Cause.TimeoutException
2711
+ | Cause.TimeoutError
2725
2712
  | SdkError
2726
2713
  | ConcurrentModificationError
2727
2714
  | InvalidInputError
@@ -2738,7 +2725,7 @@ interface IAMService$ {
2738
2725
  options?: HttpHandlerOptions,
2739
2726
  ): Effect.Effect<
2740
2727
  TagUserCommandOutput,
2741
- | Cause.TimeoutException
2728
+ | Cause.TimeoutError
2742
2729
  | SdkError
2743
2730
  | ConcurrentModificationError
2744
2731
  | InvalidInputError
@@ -2755,7 +2742,7 @@ interface IAMService$ {
2755
2742
  options?: HttpHandlerOptions,
2756
2743
  ): Effect.Effect<
2757
2744
  UntagInstanceProfileCommandOutput,
2758
- | Cause.TimeoutException
2745
+ | Cause.TimeoutError
2759
2746
  | SdkError
2760
2747
  | ConcurrentModificationError
2761
2748
  | InvalidInputError
@@ -2771,7 +2758,7 @@ interface IAMService$ {
2771
2758
  options?: HttpHandlerOptions,
2772
2759
  ): Effect.Effect<
2773
2760
  UntagMFADeviceCommandOutput,
2774
- | Cause.TimeoutException
2761
+ | Cause.TimeoutError
2775
2762
  | SdkError
2776
2763
  | ConcurrentModificationError
2777
2764
  | InvalidInputError
@@ -2787,7 +2774,7 @@ interface IAMService$ {
2787
2774
  options?: HttpHandlerOptions,
2788
2775
  ): Effect.Effect<
2789
2776
  UntagOpenIDConnectProviderCommandOutput,
2790
- | Cause.TimeoutException
2777
+ | Cause.TimeoutError
2791
2778
  | SdkError
2792
2779
  | ConcurrentModificationError
2793
2780
  | InvalidInputError
@@ -2803,7 +2790,7 @@ interface IAMService$ {
2803
2790
  options?: HttpHandlerOptions,
2804
2791
  ): Effect.Effect<
2805
2792
  UntagPolicyCommandOutput,
2806
- | Cause.TimeoutException
2793
+ | Cause.TimeoutError
2807
2794
  | SdkError
2808
2795
  | ConcurrentModificationError
2809
2796
  | InvalidInputError
@@ -2819,7 +2806,7 @@ interface IAMService$ {
2819
2806
  options?: HttpHandlerOptions,
2820
2807
  ): Effect.Effect<
2821
2808
  UntagRoleCommandOutput,
2822
- Cause.TimeoutException | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
2809
+ Cause.TimeoutError | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
2823
2810
  >;
2824
2811
 
2825
2812
  /**
@@ -2830,7 +2817,7 @@ interface IAMService$ {
2830
2817
  options?: HttpHandlerOptions,
2831
2818
  ): Effect.Effect<
2832
2819
  UntagSAMLProviderCommandOutput,
2833
- | Cause.TimeoutException
2820
+ | Cause.TimeoutError
2834
2821
  | SdkError
2835
2822
  | ConcurrentModificationError
2836
2823
  | InvalidInputError
@@ -2846,7 +2833,7 @@ interface IAMService$ {
2846
2833
  options?: HttpHandlerOptions,
2847
2834
  ): Effect.Effect<
2848
2835
  UntagServerCertificateCommandOutput,
2849
- | Cause.TimeoutException
2836
+ | Cause.TimeoutError
2850
2837
  | SdkError
2851
2838
  | ConcurrentModificationError
2852
2839
  | InvalidInputError
@@ -2862,7 +2849,7 @@ interface IAMService$ {
2862
2849
  options?: HttpHandlerOptions,
2863
2850
  ): Effect.Effect<
2864
2851
  UntagUserCommandOutput,
2865
- Cause.TimeoutException | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
2852
+ Cause.TimeoutError | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
2866
2853
  >;
2867
2854
 
2868
2855
  /**
@@ -2873,7 +2860,7 @@ interface IAMService$ {
2873
2860
  options?: HttpHandlerOptions,
2874
2861
  ): Effect.Effect<
2875
2862
  UpdateAccessKeyCommandOutput,
2876
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
2863
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
2877
2864
  >;
2878
2865
 
2879
2866
  /**
@@ -2884,7 +2871,7 @@ interface IAMService$ {
2884
2871
  options?: HttpHandlerOptions,
2885
2872
  ): Effect.Effect<
2886
2873
  UpdateAccountPasswordPolicyCommandOutput,
2887
- | Cause.TimeoutException
2874
+ | Cause.TimeoutError
2888
2875
  | SdkError
2889
2876
  | LimitExceededError
2890
2877
  | MalformedPolicyDocumentError
@@ -2900,7 +2887,7 @@ interface IAMService$ {
2900
2887
  options?: HttpHandlerOptions,
2901
2888
  ): Effect.Effect<
2902
2889
  UpdateAssumeRolePolicyCommandOutput,
2903
- | Cause.TimeoutException
2890
+ | Cause.TimeoutError
2904
2891
  | SdkError
2905
2892
  | LimitExceededError
2906
2893
  | MalformedPolicyDocumentError
@@ -2917,7 +2904,7 @@ interface IAMService$ {
2917
2904
  options?: HttpHandlerOptions,
2918
2905
  ): Effect.Effect<
2919
2906
  UpdateDelegationRequestCommandOutput,
2920
- | Cause.TimeoutException
2907
+ | Cause.TimeoutError
2921
2908
  | SdkError
2922
2909
  | ConcurrentModificationError
2923
2910
  | InvalidInputError
@@ -2933,7 +2920,7 @@ interface IAMService$ {
2933
2920
  options?: HttpHandlerOptions,
2934
2921
  ): Effect.Effect<
2935
2922
  UpdateGroupCommandOutput,
2936
- | Cause.TimeoutException
2923
+ | Cause.TimeoutError
2937
2924
  | SdkError
2938
2925
  | EntityAlreadyExistsError
2939
2926
  | LimitExceededError
@@ -2949,7 +2936,7 @@ interface IAMService$ {
2949
2936
  options?: HttpHandlerOptions,
2950
2937
  ): Effect.Effect<
2951
2938
  UpdateLoginProfileCommandOutput,
2952
- | Cause.TimeoutException
2939
+ | Cause.TimeoutError
2953
2940
  | SdkError
2954
2941
  | EntityTemporarilyUnmodifiableError
2955
2942
  | LimitExceededError
@@ -2966,7 +2953,7 @@ interface IAMService$ {
2966
2953
  options?: HttpHandlerOptions,
2967
2954
  ): Effect.Effect<
2968
2955
  UpdateOpenIDConnectProviderThumbprintCommandOutput,
2969
- | Cause.TimeoutException
2956
+ | Cause.TimeoutError
2970
2957
  | SdkError
2971
2958
  | ConcurrentModificationError
2972
2959
  | InvalidInputError
@@ -2982,7 +2969,7 @@ interface IAMService$ {
2982
2969
  options?: HttpHandlerOptions,
2983
2970
  ): Effect.Effect<
2984
2971
  UpdateRoleCommandOutput,
2985
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
2972
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
2986
2973
  >;
2987
2974
 
2988
2975
  /**
@@ -2993,7 +2980,7 @@ interface IAMService$ {
2993
2980
  options?: HttpHandlerOptions,
2994
2981
  ): Effect.Effect<
2995
2982
  UpdateRoleDescriptionCommandOutput,
2996
- Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
2983
+ Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
2997
2984
  >;
2998
2985
 
2999
2986
  /**
@@ -3004,7 +2991,7 @@ interface IAMService$ {
3004
2991
  options?: HttpHandlerOptions,
3005
2992
  ): Effect.Effect<
3006
2993
  UpdateSAMLProviderCommandOutput,
3007
- | Cause.TimeoutException
2994
+ | Cause.TimeoutError
3008
2995
  | SdkError
3009
2996
  | ConcurrentModificationError
3010
2997
  | InvalidInputError
@@ -3021,7 +3008,7 @@ interface IAMService$ {
3021
3008
  options?: HttpHandlerOptions,
3022
3009
  ): Effect.Effect<
3023
3010
  UpdateSSHPublicKeyCommandOutput,
3024
- Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
3011
+ Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
3025
3012
  >;
3026
3013
 
3027
3014
  /**
@@ -3032,7 +3019,7 @@ interface IAMService$ {
3032
3019
  options?: HttpHandlerOptions,
3033
3020
  ): Effect.Effect<
3034
3021
  UpdateServerCertificateCommandOutput,
3035
- | Cause.TimeoutException
3022
+ | Cause.TimeoutError
3036
3023
  | SdkError
3037
3024
  | EntityAlreadyExistsError
3038
3025
  | LimitExceededError
@@ -3048,7 +3035,7 @@ interface IAMService$ {
3048
3035
  options?: HttpHandlerOptions,
3049
3036
  ): Effect.Effect<
3050
3037
  UpdateServiceSpecificCredentialCommandOutput,
3051
- Cause.TimeoutException | SdkError | NoSuchEntityError
3038
+ Cause.TimeoutError | SdkError | NoSuchEntityError
3052
3039
  >;
3053
3040
 
3054
3041
  /**
@@ -3059,7 +3046,7 @@ interface IAMService$ {
3059
3046
  options?: HttpHandlerOptions,
3060
3047
  ): Effect.Effect<
3061
3048
  UpdateSigningCertificateCommandOutput,
3062
- Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
3049
+ Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
3063
3050
  >;
3064
3051
 
3065
3052
  /**
@@ -3070,7 +3057,7 @@ interface IAMService$ {
3070
3057
  options?: HttpHandlerOptions,
3071
3058
  ): Effect.Effect<
3072
3059
  UpdateUserCommandOutput,
3073
- | Cause.TimeoutException
3060
+ | Cause.TimeoutError
3074
3061
  | SdkError
3075
3062
  | ConcurrentModificationError
3076
3063
  | EntityAlreadyExistsError
@@ -3088,7 +3075,7 @@ interface IAMService$ {
3088
3075
  options?: HttpHandlerOptions,
3089
3076
  ): Effect.Effect<
3090
3077
  UploadSSHPublicKeyCommandOutput,
3091
- | Cause.TimeoutException
3078
+ | Cause.TimeoutError
3092
3079
  | SdkError
3093
3080
  | DuplicateSSHPublicKeyError
3094
3081
  | InvalidPublicKeyError
@@ -3105,7 +3092,7 @@ interface IAMService$ {
3105
3092
  options?: HttpHandlerOptions,
3106
3093
  ): Effect.Effect<
3107
3094
  UploadServerCertificateCommandOutput,
3108
- | Cause.TimeoutException
3095
+ | Cause.TimeoutError
3109
3096
  | SdkError
3110
3097
  | ConcurrentModificationError
3111
3098
  | EntityAlreadyExistsError
@@ -3124,7 +3111,7 @@ interface IAMService$ {
3124
3111
  options?: HttpHandlerOptions,
3125
3112
  ): Effect.Effect<
3126
3113
  UploadSigningCertificateCommandOutput,
3127
- | Cause.TimeoutException
3114
+ | Cause.TimeoutError
3128
3115
  | SdkError
3129
3116
  | ConcurrentModificationError
3130
3117
  | DuplicateCertificateError
@@ -3158,10 +3145,10 @@ export const makeIAMService = Effect.gen(function*() {
3158
3145
  * @since 1.0.0
3159
3146
  * @category models
3160
3147
  */
3161
- export class IAMService extends Effect.Tag("@effect-aws/client-iam/IAMService")<
3148
+ export class IAMService extends ServiceMap.Service<
3162
3149
  IAMService,
3163
3150
  IAMService$
3164
- >() {
3151
+ >()("@effect-aws/client-iam/IAMService") {
3165
3152
  static readonly defaultLayer = Layer.effect(this, makeIAMService).pipe(Layer.provide(Instance.layer));
3166
3153
  static readonly layer = (config: IAMService.Config) =>
3167
3154
  Layer.effect(this, makeIAMService).pipe(