@effect-aws/client-cognito-identity-provider 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/CognitoIdentityProviderClientInstance.d.ts +4 -2
  4. package/dist/dts/CognitoIdentityProviderClientInstance.d.ts.map +1 -1
  5. package/dist/dts/CognitoIdentityProviderService.d.ts +124 -124
  6. package/dist/dts/CognitoIdentityProviderService.d.ts.map +1 -1
  7. package/dist/dts/CognitoIdentityProviderServiceConfig.d.ts +2 -1
  8. package/dist/dts/CognitoIdentityProviderServiceConfig.d.ts.map +1 -1
  9. package/dist/esm/CognitoIdentityProviderClientInstance.js +5 -3
  10. package/dist/esm/CognitoIdentityProviderClientInstance.js.map +1 -1
  11. package/dist/esm/CognitoIdentityProviderService.js +4 -2
  12. package/dist/esm/CognitoIdentityProviderService.js.map +1 -1
  13. package/dist/esm/CognitoIdentityProviderServiceConfig.js +7 -6
  14. package/dist/esm/CognitoIdentityProviderServiceConfig.js.map +1 -1
  15. package/package.json +8 -14
  16. package/src/CognitoIdentityProviderClientInstance.ts +9 -5
  17. package/src/CognitoIdentityProviderService.ts +127 -137
  18. package/src/CognitoIdentityProviderServiceConfig.ts +8 -7
  19. package/dist/cjs/CognitoIdentityProviderClientInstance.d.ts +0 -24
  20. package/dist/cjs/CognitoIdentityProviderClientInstance.d.ts.map +0 -1
  21. package/dist/cjs/CognitoIdentityProviderClientInstance.js +0 -50
  22. package/dist/cjs/CognitoIdentityProviderClientInstance.js.map +0 -1
  23. package/dist/cjs/CognitoIdentityProviderService.d.ts +0 -522
  24. package/dist/cjs/CognitoIdentityProviderService.d.ts.map +0 -1
  25. package/dist/cjs/CognitoIdentityProviderService.js +0 -178
  26. package/dist/cjs/CognitoIdentityProviderService.js.map +0 -1
  27. package/dist/cjs/CognitoIdentityProviderServiceConfig.d.ts +0 -25
  28. package/dist/cjs/CognitoIdentityProviderServiceConfig.d.ts.map +0 -1
  29. package/dist/cjs/CognitoIdentityProviderServiceConfig.js +0 -35
  30. package/dist/cjs/CognitoIdentityProviderServiceConfig.js.map +0 -1
  31. package/dist/cjs/Errors.d.ts +0 -62
  32. package/dist/cjs/Errors.d.ts.map +0 -1
  33. package/dist/cjs/Errors.js +0 -61
  34. package/dist/cjs/Errors.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
@@ -364,8 +364,10 @@ import {
364
364
  } from "@aws-sdk/client-cognito-identity-provider";
365
365
  import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
366
366
  import { Service } from "@effect-aws/commons";
367
- import type { Cause } from "effect";
368
- import { Effect, Layer } from "effect";
367
+ import type * as Cause from "effect/Cause";
368
+ import * as Effect from "effect/Effect";
369
+ import * as Layer from "effect/Layer";
370
+ import * as ServiceMap from "effect/ServiceMap";
369
371
  import * as Instance from "./CognitoIdentityProviderClientInstance.js";
370
372
  import * as CognitoIdentityProviderServiceConfig from "./CognitoIdentityProviderServiceConfig.js";
371
373
  import type {
@@ -561,7 +563,7 @@ interface CognitoIdentityProviderService$ {
561
563
  options?: HttpHandlerOptions,
562
564
  ): Effect.Effect<
563
565
  AddCustomAttributesCommandOutput,
564
- | Cause.TimeoutException
566
+ | Cause.TimeoutError
565
567
  | SdkError
566
568
  | InternalError
567
569
  | InvalidParameterError
@@ -579,7 +581,7 @@ interface CognitoIdentityProviderService$ {
579
581
  options?: HttpHandlerOptions,
580
582
  ): Effect.Effect<
581
583
  AdminAddUserToGroupCommandOutput,
582
- | Cause.TimeoutException
584
+ | Cause.TimeoutError
583
585
  | SdkError
584
586
  | InternalError
585
587
  | InvalidParameterError
@@ -597,7 +599,7 @@ interface CognitoIdentityProviderService$ {
597
599
  options?: HttpHandlerOptions,
598
600
  ): Effect.Effect<
599
601
  AdminConfirmSignUpCommandOutput,
600
- | Cause.TimeoutException
602
+ | Cause.TimeoutError
601
603
  | SdkError
602
604
  | InternalError
603
605
  | InvalidLambdaResponseError
@@ -620,7 +622,7 @@ interface CognitoIdentityProviderService$ {
620
622
  options?: HttpHandlerOptions,
621
623
  ): Effect.Effect<
622
624
  AdminCreateUserCommandOutput,
623
- | Cause.TimeoutException
625
+ | Cause.TimeoutError
624
626
  | SdkError
625
627
  | CodeDeliveryFailureError
626
628
  | InternalError
@@ -648,7 +650,7 @@ interface CognitoIdentityProviderService$ {
648
650
  options?: HttpHandlerOptions,
649
651
  ): Effect.Effect<
650
652
  AdminDeleteUserCommandOutput,
651
- | Cause.TimeoutException
653
+ | Cause.TimeoutError
652
654
  | SdkError
653
655
  | InternalError
654
656
  | InvalidParameterError
@@ -666,7 +668,7 @@ interface CognitoIdentityProviderService$ {
666
668
  options?: HttpHandlerOptions,
667
669
  ): Effect.Effect<
668
670
  AdminDeleteUserAttributesCommandOutput,
669
- | Cause.TimeoutException
671
+ | Cause.TimeoutError
670
672
  | SdkError
671
673
  | InternalError
672
674
  | InvalidParameterError
@@ -684,7 +686,7 @@ interface CognitoIdentityProviderService$ {
684
686
  options?: HttpHandlerOptions,
685
687
  ): Effect.Effect<
686
688
  AdminDisableProviderForUserCommandOutput,
687
- | Cause.TimeoutException
689
+ | Cause.TimeoutError
688
690
  | SdkError
689
691
  | AliasExistsError
690
692
  | InternalError
@@ -703,7 +705,7 @@ interface CognitoIdentityProviderService$ {
703
705
  options?: HttpHandlerOptions,
704
706
  ): Effect.Effect<
705
707
  AdminDisableUserCommandOutput,
706
- | Cause.TimeoutException
708
+ | Cause.TimeoutError
707
709
  | SdkError
708
710
  | InternalError
709
711
  | InvalidParameterError
@@ -721,7 +723,7 @@ interface CognitoIdentityProviderService$ {
721
723
  options?: HttpHandlerOptions,
722
724
  ): Effect.Effect<
723
725
  AdminEnableUserCommandOutput,
724
- | Cause.TimeoutException
726
+ | Cause.TimeoutError
725
727
  | SdkError
726
728
  | InternalError
727
729
  | InvalidParameterError
@@ -739,7 +741,7 @@ interface CognitoIdentityProviderService$ {
739
741
  options?: HttpHandlerOptions,
740
742
  ): Effect.Effect<
741
743
  AdminForgetDeviceCommandOutput,
742
- | Cause.TimeoutException
744
+ | Cause.TimeoutError
743
745
  | SdkError
744
746
  | InternalError
745
747
  | InvalidParameterError
@@ -758,7 +760,7 @@ interface CognitoIdentityProviderService$ {
758
760
  options?: HttpHandlerOptions,
759
761
  ): Effect.Effect<
760
762
  AdminGetDeviceCommandOutput,
761
- | Cause.TimeoutException
763
+ | Cause.TimeoutError
762
764
  | SdkError
763
765
  | InternalError
764
766
  | InvalidParameterError
@@ -776,7 +778,7 @@ interface CognitoIdentityProviderService$ {
776
778
  options?: HttpHandlerOptions,
777
779
  ): Effect.Effect<
778
780
  AdminGetUserCommandOutput,
779
- | Cause.TimeoutException
781
+ | Cause.TimeoutError
780
782
  | SdkError
781
783
  | InternalError
782
784
  | InvalidParameterError
@@ -794,7 +796,7 @@ interface CognitoIdentityProviderService$ {
794
796
  options?: HttpHandlerOptions,
795
797
  ): Effect.Effect<
796
798
  AdminInitiateAuthCommandOutput,
797
- | Cause.TimeoutException
799
+ | Cause.TimeoutError
798
800
  | SdkError
799
801
  | InternalError
800
802
  | InvalidEmailRoleAccessPolicyError
@@ -823,7 +825,7 @@ interface CognitoIdentityProviderService$ {
823
825
  options?: HttpHandlerOptions,
824
826
  ): Effect.Effect<
825
827
  AdminLinkProviderForUserCommandOutput,
826
- | Cause.TimeoutException
828
+ | Cause.TimeoutError
827
829
  | SdkError
828
830
  | AliasExistsError
829
831
  | InternalError
@@ -843,7 +845,7 @@ interface CognitoIdentityProviderService$ {
843
845
  options?: HttpHandlerOptions,
844
846
  ): Effect.Effect<
845
847
  AdminListDevicesCommandOutput,
846
- | Cause.TimeoutException
848
+ | Cause.TimeoutError
847
849
  | SdkError
848
850
  | InternalError
849
851
  | InvalidParameterError
@@ -861,7 +863,7 @@ interface CognitoIdentityProviderService$ {
861
863
  options?: HttpHandlerOptions,
862
864
  ): Effect.Effect<
863
865
  AdminListGroupsForUserCommandOutput,
864
- | Cause.TimeoutException
866
+ | Cause.TimeoutError
865
867
  | SdkError
866
868
  | InternalError
867
869
  | InvalidParameterError
@@ -879,7 +881,7 @@ interface CognitoIdentityProviderService$ {
879
881
  options?: HttpHandlerOptions,
880
882
  ): Effect.Effect<
881
883
  AdminListUserAuthEventsCommandOutput,
882
- | Cause.TimeoutException
884
+ | Cause.TimeoutError
883
885
  | SdkError
884
886
  | InternalError
885
887
  | InvalidParameterError
@@ -898,7 +900,7 @@ interface CognitoIdentityProviderService$ {
898
900
  options?: HttpHandlerOptions,
899
901
  ): Effect.Effect<
900
902
  AdminRemoveUserFromGroupCommandOutput,
901
- | Cause.TimeoutException
903
+ | Cause.TimeoutError
902
904
  | SdkError
903
905
  | InternalError
904
906
  | InvalidParameterError
@@ -916,7 +918,7 @@ interface CognitoIdentityProviderService$ {
916
918
  options?: HttpHandlerOptions,
917
919
  ): Effect.Effect<
918
920
  AdminResetUserPasswordCommandOutput,
919
- | Cause.TimeoutException
921
+ | Cause.TimeoutError
920
922
  | SdkError
921
923
  | InternalError
922
924
  | InvalidEmailRoleAccessPolicyError
@@ -941,7 +943,7 @@ interface CognitoIdentityProviderService$ {
941
943
  options?: HttpHandlerOptions,
942
944
  ): Effect.Effect<
943
945
  AdminRespondToAuthChallengeCommandOutput,
944
- | Cause.TimeoutException
946
+ | Cause.TimeoutError
945
947
  | SdkError
946
948
  | AliasExistsError
947
949
  | CodeMismatchError
@@ -975,7 +977,7 @@ interface CognitoIdentityProviderService$ {
975
977
  options?: HttpHandlerOptions,
976
978
  ): Effect.Effect<
977
979
  AdminSetUserMFAPreferenceCommandOutput,
978
- | Cause.TimeoutException
980
+ | Cause.TimeoutError
979
981
  | SdkError
980
982
  | InternalError
981
983
  | InvalidParameterError
@@ -994,7 +996,7 @@ interface CognitoIdentityProviderService$ {
994
996
  options?: HttpHandlerOptions,
995
997
  ): Effect.Effect<
996
998
  AdminSetUserPasswordCommandOutput,
997
- | Cause.TimeoutException
999
+ | Cause.TimeoutError
998
1000
  | SdkError
999
1001
  | InternalError
1000
1002
  | InvalidParameterError
@@ -1014,7 +1016,7 @@ interface CognitoIdentityProviderService$ {
1014
1016
  options?: HttpHandlerOptions,
1015
1017
  ): Effect.Effect<
1016
1018
  AdminSetUserSettingsCommandOutput,
1017
- | Cause.TimeoutException
1019
+ | Cause.TimeoutError
1018
1020
  | SdkError
1019
1021
  | InternalError
1020
1022
  | InvalidParameterError
@@ -1031,7 +1033,7 @@ interface CognitoIdentityProviderService$ {
1031
1033
  options?: HttpHandlerOptions,
1032
1034
  ): Effect.Effect<
1033
1035
  AdminUpdateAuthEventFeedbackCommandOutput,
1034
- | Cause.TimeoutException
1036
+ | Cause.TimeoutError
1035
1037
  | SdkError
1036
1038
  | InternalError
1037
1039
  | InvalidParameterError
@@ -1050,7 +1052,7 @@ interface CognitoIdentityProviderService$ {
1050
1052
  options?: HttpHandlerOptions,
1051
1053
  ): Effect.Effect<
1052
1054
  AdminUpdateDeviceStatusCommandOutput,
1053
- | Cause.TimeoutException
1055
+ | Cause.TimeoutError
1054
1056
  | SdkError
1055
1057
  | InternalError
1056
1058
  | InvalidParameterError
@@ -1069,7 +1071,7 @@ interface CognitoIdentityProviderService$ {
1069
1071
  options?: HttpHandlerOptions,
1070
1072
  ): Effect.Effect<
1071
1073
  AdminUpdateUserAttributesCommandOutput,
1072
- | Cause.TimeoutException
1074
+ | Cause.TimeoutError
1073
1075
  | SdkError
1074
1076
  | AliasExistsError
1075
1077
  | InternalError
@@ -1094,7 +1096,7 @@ interface CognitoIdentityProviderService$ {
1094
1096
  options?: HttpHandlerOptions,
1095
1097
  ): Effect.Effect<
1096
1098
  AdminUserGlobalSignOutCommandOutput,
1097
- | Cause.TimeoutException
1099
+ | Cause.TimeoutError
1098
1100
  | SdkError
1099
1101
  | InternalError
1100
1102
  | InvalidParameterError
@@ -1112,7 +1114,7 @@ interface CognitoIdentityProviderService$ {
1112
1114
  options?: HttpHandlerOptions,
1113
1115
  ): Effect.Effect<
1114
1116
  AssociateSoftwareTokenCommandOutput,
1115
- | Cause.TimeoutException
1117
+ | Cause.TimeoutError
1116
1118
  | SdkError
1117
1119
  | ConcurrentModificationError
1118
1120
  | ForbiddenError
@@ -1131,7 +1133,7 @@ interface CognitoIdentityProviderService$ {
1131
1133
  options?: HttpHandlerOptions,
1132
1134
  ): Effect.Effect<
1133
1135
  ChangePasswordCommandOutput,
1134
- | Cause.TimeoutException
1136
+ | Cause.TimeoutError
1135
1137
  | SdkError
1136
1138
  | ForbiddenError
1137
1139
  | InternalError
@@ -1155,7 +1157,7 @@ interface CognitoIdentityProviderService$ {
1155
1157
  options?: HttpHandlerOptions,
1156
1158
  ): Effect.Effect<
1157
1159
  CompleteWebAuthnRegistrationCommandOutput,
1158
- | Cause.TimeoutException
1160
+ | Cause.TimeoutError
1159
1161
  | SdkError
1160
1162
  | ForbiddenError
1161
1163
  | InternalError
@@ -1179,7 +1181,7 @@ interface CognitoIdentityProviderService$ {
1179
1181
  options?: HttpHandlerOptions,
1180
1182
  ): Effect.Effect<
1181
1183
  ConfirmDeviceCommandOutput,
1182
- | Cause.TimeoutException
1184
+ | Cause.TimeoutError
1183
1185
  | SdkError
1184
1186
  | DeviceKeyExistsError
1185
1187
  | ForbiddenError
@@ -1205,7 +1207,7 @@ interface CognitoIdentityProviderService$ {
1205
1207
  options?: HttpHandlerOptions,
1206
1208
  ): Effect.Effect<
1207
1209
  ConfirmForgotPasswordCommandOutput,
1208
- | Cause.TimeoutException
1210
+ | Cause.TimeoutError
1209
1211
  | SdkError
1210
1212
  | CodeMismatchError
1211
1213
  | ExpiredCodeError
@@ -1234,7 +1236,7 @@ interface CognitoIdentityProviderService$ {
1234
1236
  options?: HttpHandlerOptions,
1235
1237
  ): Effect.Effect<
1236
1238
  ConfirmSignUpCommandOutput,
1237
- | Cause.TimeoutException
1239
+ | Cause.TimeoutError
1238
1240
  | SdkError
1239
1241
  | AliasExistsError
1240
1242
  | CodeMismatchError
@@ -1261,7 +1263,7 @@ interface CognitoIdentityProviderService$ {
1261
1263
  options?: HttpHandlerOptions,
1262
1264
  ): Effect.Effect<
1263
1265
  CreateGroupCommandOutput,
1264
- | Cause.TimeoutException
1266
+ | Cause.TimeoutError
1265
1267
  | SdkError
1266
1268
  | GroupExistsError
1267
1269
  | InternalError
@@ -1280,7 +1282,7 @@ interface CognitoIdentityProviderService$ {
1280
1282
  options?: HttpHandlerOptions,
1281
1283
  ): Effect.Effect<
1282
1284
  CreateIdentityProviderCommandOutput,
1283
- | Cause.TimeoutException
1285
+ | Cause.TimeoutError
1284
1286
  | SdkError
1285
1287
  | DuplicateProviderError
1286
1288
  | InternalError
@@ -1299,7 +1301,7 @@ interface CognitoIdentityProviderService$ {
1299
1301
  options?: HttpHandlerOptions,
1300
1302
  ): Effect.Effect<
1301
1303
  CreateManagedLoginBrandingCommandOutput,
1302
- | Cause.TimeoutException
1304
+ | Cause.TimeoutError
1303
1305
  | SdkError
1304
1306
  | ConcurrentModificationError
1305
1307
  | InternalError
@@ -1319,7 +1321,7 @@ interface CognitoIdentityProviderService$ {
1319
1321
  options?: HttpHandlerOptions,
1320
1322
  ): Effect.Effect<
1321
1323
  CreateResourceServerCommandOutput,
1322
- | Cause.TimeoutException
1324
+ | Cause.TimeoutError
1323
1325
  | SdkError
1324
1326
  | InternalError
1325
1327
  | InvalidParameterError
@@ -1337,7 +1339,7 @@ interface CognitoIdentityProviderService$ {
1337
1339
  options?: HttpHandlerOptions,
1338
1340
  ): Effect.Effect<
1339
1341
  CreateTermsCommandOutput,
1340
- | Cause.TimeoutException
1342
+ | Cause.TimeoutError
1341
1343
  | SdkError
1342
1344
  | ConcurrentModificationError
1343
1345
  | InternalError
@@ -1357,7 +1359,7 @@ interface CognitoIdentityProviderService$ {
1357
1359
  options?: HttpHandlerOptions,
1358
1360
  ): Effect.Effect<
1359
1361
  CreateUserImportJobCommandOutput,
1360
- | Cause.TimeoutException
1362
+ | Cause.TimeoutError
1361
1363
  | SdkError
1362
1364
  | InternalError
1363
1365
  | InvalidParameterError
@@ -1376,7 +1378,7 @@ interface CognitoIdentityProviderService$ {
1376
1378
  options?: HttpHandlerOptions,
1377
1379
  ): Effect.Effect<
1378
1380
  CreateUserPoolCommandOutput,
1379
- | Cause.TimeoutException
1381
+ | Cause.TimeoutError
1380
1382
  | SdkError
1381
1383
  | FeatureUnavailableInTierError
1382
1384
  | InternalError
@@ -1399,7 +1401,7 @@ interface CognitoIdentityProviderService$ {
1399
1401
  options?: HttpHandlerOptions,
1400
1402
  ): Effect.Effect<
1401
1403
  CreateUserPoolClientCommandOutput,
1402
- | Cause.TimeoutException
1404
+ | Cause.TimeoutError
1403
1405
  | SdkError
1404
1406
  | FeatureUnavailableInTierError
1405
1407
  | InternalError
@@ -1420,7 +1422,7 @@ interface CognitoIdentityProviderService$ {
1420
1422
  options?: HttpHandlerOptions,
1421
1423
  ): Effect.Effect<
1422
1424
  CreateUserPoolDomainCommandOutput,
1423
- | Cause.TimeoutException
1425
+ | Cause.TimeoutError
1424
1426
  | SdkError
1425
1427
  | ConcurrentModificationError
1426
1428
  | FeatureUnavailableInTierError
@@ -1439,7 +1441,7 @@ interface CognitoIdentityProviderService$ {
1439
1441
  options?: HttpHandlerOptions,
1440
1442
  ): Effect.Effect<
1441
1443
  DeleteGroupCommandOutput,
1442
- | Cause.TimeoutException
1444
+ | Cause.TimeoutError
1443
1445
  | SdkError
1444
1446
  | InternalError
1445
1447
  | InvalidParameterError
@@ -1456,7 +1458,7 @@ interface CognitoIdentityProviderService$ {
1456
1458
  options?: HttpHandlerOptions,
1457
1459
  ): Effect.Effect<
1458
1460
  DeleteIdentityProviderCommandOutput,
1459
- | Cause.TimeoutException
1461
+ | Cause.TimeoutError
1460
1462
  | SdkError
1461
1463
  | ConcurrentModificationError
1462
1464
  | InternalError
@@ -1475,7 +1477,7 @@ interface CognitoIdentityProviderService$ {
1475
1477
  options?: HttpHandlerOptions,
1476
1478
  ): Effect.Effect<
1477
1479
  DeleteManagedLoginBrandingCommandOutput,
1478
- | Cause.TimeoutException
1480
+ | Cause.TimeoutError
1479
1481
  | SdkError
1480
1482
  | ConcurrentModificationError
1481
1483
  | InternalError
@@ -1493,7 +1495,7 @@ interface CognitoIdentityProviderService$ {
1493
1495
  options?: HttpHandlerOptions,
1494
1496
  ): Effect.Effect<
1495
1497
  DeleteResourceServerCommandOutput,
1496
- | Cause.TimeoutException
1498
+ | Cause.TimeoutError
1497
1499
  | SdkError
1498
1500
  | InternalError
1499
1501
  | InvalidParameterError
@@ -1510,7 +1512,7 @@ interface CognitoIdentityProviderService$ {
1510
1512
  options?: HttpHandlerOptions,
1511
1513
  ): Effect.Effect<
1512
1514
  DeleteTermsCommandOutput,
1513
- | Cause.TimeoutException
1515
+ | Cause.TimeoutError
1514
1516
  | SdkError
1515
1517
  | ConcurrentModificationError
1516
1518
  | InternalError
@@ -1528,7 +1530,7 @@ interface CognitoIdentityProviderService$ {
1528
1530
  options?: HttpHandlerOptions,
1529
1531
  ): Effect.Effect<
1530
1532
  DeleteUserCommandOutput,
1531
- | Cause.TimeoutException
1533
+ | Cause.TimeoutError
1532
1534
  | SdkError
1533
1535
  | ForbiddenError
1534
1536
  | InternalError
@@ -1549,7 +1551,7 @@ interface CognitoIdentityProviderService$ {
1549
1551
  options?: HttpHandlerOptions,
1550
1552
  ): Effect.Effect<
1551
1553
  DeleteUserAttributesCommandOutput,
1552
- | Cause.TimeoutException
1554
+ | Cause.TimeoutError
1553
1555
  | SdkError
1554
1556
  | ForbiddenError
1555
1557
  | InternalError
@@ -1570,7 +1572,7 @@ interface CognitoIdentityProviderService$ {
1570
1572
  options?: HttpHandlerOptions,
1571
1573
  ): Effect.Effect<
1572
1574
  DeleteUserPoolCommandOutput,
1573
- | Cause.TimeoutException
1575
+ | Cause.TimeoutError
1574
1576
  | SdkError
1575
1577
  | InternalError
1576
1578
  | InvalidParameterError
@@ -1588,7 +1590,7 @@ interface CognitoIdentityProviderService$ {
1588
1590
  options?: HttpHandlerOptions,
1589
1591
  ): Effect.Effect<
1590
1592
  DeleteUserPoolClientCommandOutput,
1591
- | Cause.TimeoutException
1593
+ | Cause.TimeoutError
1592
1594
  | SdkError
1593
1595
  | ConcurrentModificationError
1594
1596
  | InternalError
@@ -1606,7 +1608,7 @@ interface CognitoIdentityProviderService$ {
1606
1608
  options?: HttpHandlerOptions,
1607
1609
  ): Effect.Effect<
1608
1610
  DeleteUserPoolDomainCommandOutput,
1609
- | Cause.TimeoutException
1611
+ | Cause.TimeoutError
1610
1612
  | SdkError
1611
1613
  | ConcurrentModificationError
1612
1614
  | InternalError
@@ -1623,7 +1625,7 @@ interface CognitoIdentityProviderService$ {
1623
1625
  options?: HttpHandlerOptions,
1624
1626
  ): Effect.Effect<
1625
1627
  DeleteWebAuthnCredentialCommandOutput,
1626
- | Cause.TimeoutException
1628
+ | Cause.TimeoutError
1627
1629
  | SdkError
1628
1630
  | ForbiddenError
1629
1631
  | InternalError
@@ -1642,7 +1644,7 @@ interface CognitoIdentityProviderService$ {
1642
1644
  options?: HttpHandlerOptions,
1643
1645
  ): Effect.Effect<
1644
1646
  DescribeIdentityProviderCommandOutput,
1645
- | Cause.TimeoutException
1647
+ | Cause.TimeoutError
1646
1648
  | SdkError
1647
1649
  | InternalError
1648
1650
  | InvalidParameterError
@@ -1659,7 +1661,7 @@ interface CognitoIdentityProviderService$ {
1659
1661
  options?: HttpHandlerOptions,
1660
1662
  ): Effect.Effect<
1661
1663
  DescribeManagedLoginBrandingCommandOutput,
1662
- | Cause.TimeoutException
1664
+ | Cause.TimeoutError
1663
1665
  | SdkError
1664
1666
  | InternalError
1665
1667
  | InvalidParameterError
@@ -1676,7 +1678,7 @@ interface CognitoIdentityProviderService$ {
1676
1678
  options?: HttpHandlerOptions,
1677
1679
  ): Effect.Effect<
1678
1680
  DescribeManagedLoginBrandingByClientCommandOutput,
1679
- | Cause.TimeoutException
1681
+ | Cause.TimeoutError
1680
1682
  | SdkError
1681
1683
  | InternalError
1682
1684
  | InvalidParameterError
@@ -1693,7 +1695,7 @@ interface CognitoIdentityProviderService$ {
1693
1695
  options?: HttpHandlerOptions,
1694
1696
  ): Effect.Effect<
1695
1697
  DescribeResourceServerCommandOutput,
1696
- | Cause.TimeoutException
1698
+ | Cause.TimeoutError
1697
1699
  | SdkError
1698
1700
  | InternalError
1699
1701
  | InvalidParameterError
@@ -1710,7 +1712,7 @@ interface CognitoIdentityProviderService$ {
1710
1712
  options?: HttpHandlerOptions,
1711
1713
  ): Effect.Effect<
1712
1714
  DescribeRiskConfigurationCommandOutput,
1713
- | Cause.TimeoutException
1715
+ | Cause.TimeoutError
1714
1716
  | SdkError
1715
1717
  | InternalError
1716
1718
  | InvalidParameterError
@@ -1728,7 +1730,7 @@ interface CognitoIdentityProviderService$ {
1728
1730
  options?: HttpHandlerOptions,
1729
1731
  ): Effect.Effect<
1730
1732
  DescribeTermsCommandOutput,
1731
- | Cause.TimeoutException
1733
+ | Cause.TimeoutError
1732
1734
  | SdkError
1733
1735
  | InternalError
1734
1736
  | InvalidParameterError
@@ -1745,7 +1747,7 @@ interface CognitoIdentityProviderService$ {
1745
1747
  options?: HttpHandlerOptions,
1746
1748
  ): Effect.Effect<
1747
1749
  DescribeUserImportJobCommandOutput,
1748
- | Cause.TimeoutException
1750
+ | Cause.TimeoutError
1749
1751
  | SdkError
1750
1752
  | InternalError
1751
1753
  | InvalidParameterError
@@ -1762,7 +1764,7 @@ interface CognitoIdentityProviderService$ {
1762
1764
  options?: HttpHandlerOptions,
1763
1765
  ): Effect.Effect<
1764
1766
  DescribeUserPoolCommandOutput,
1765
- | Cause.TimeoutException
1767
+ | Cause.TimeoutError
1766
1768
  | SdkError
1767
1769
  | InternalError
1768
1770
  | InvalidParameterError
@@ -1780,7 +1782,7 @@ interface CognitoIdentityProviderService$ {
1780
1782
  options?: HttpHandlerOptions,
1781
1783
  ): Effect.Effect<
1782
1784
  DescribeUserPoolClientCommandOutput,
1783
- | Cause.TimeoutException
1785
+ | Cause.TimeoutError
1784
1786
  | SdkError
1785
1787
  | InternalError
1786
1788
  | InvalidParameterError
@@ -1797,12 +1799,7 @@ interface CognitoIdentityProviderService$ {
1797
1799
  options?: HttpHandlerOptions,
1798
1800
  ): Effect.Effect<
1799
1801
  DescribeUserPoolDomainCommandOutput,
1800
- | Cause.TimeoutException
1801
- | SdkError
1802
- | InternalError
1803
- | InvalidParameterError
1804
- | NotAuthorizedError
1805
- | ResourceNotFoundError
1802
+ Cause.TimeoutError | SdkError | InternalError | InvalidParameterError | NotAuthorizedError | ResourceNotFoundError
1806
1803
  >;
1807
1804
 
1808
1805
  /**
@@ -1813,7 +1810,7 @@ interface CognitoIdentityProviderService$ {
1813
1810
  options?: HttpHandlerOptions,
1814
1811
  ): Effect.Effect<
1815
1812
  ForgetDeviceCommandOutput,
1816
- | Cause.TimeoutException
1813
+ | Cause.TimeoutError
1817
1814
  | SdkError
1818
1815
  | ForbiddenError
1819
1816
  | InternalError
@@ -1835,7 +1832,7 @@ interface CognitoIdentityProviderService$ {
1835
1832
  options?: HttpHandlerOptions,
1836
1833
  ): Effect.Effect<
1837
1834
  ForgotPasswordCommandOutput,
1838
- | Cause.TimeoutException
1835
+ | Cause.TimeoutError
1839
1836
  | SdkError
1840
1837
  | CodeDeliveryFailureError
1841
1838
  | ForbiddenError
@@ -1862,7 +1859,7 @@ interface CognitoIdentityProviderService$ {
1862
1859
  options?: HttpHandlerOptions,
1863
1860
  ): Effect.Effect<
1864
1861
  GetCSVHeaderCommandOutput,
1865
- | Cause.TimeoutException
1862
+ | Cause.TimeoutError
1866
1863
  | SdkError
1867
1864
  | InternalError
1868
1865
  | InvalidParameterError
@@ -1879,7 +1876,7 @@ interface CognitoIdentityProviderService$ {
1879
1876
  options?: HttpHandlerOptions,
1880
1877
  ): Effect.Effect<
1881
1878
  GetDeviceCommandOutput,
1882
- | Cause.TimeoutException
1879
+ | Cause.TimeoutError
1883
1880
  | SdkError
1884
1881
  | ForbiddenError
1885
1882
  | InternalError
@@ -1901,7 +1898,7 @@ interface CognitoIdentityProviderService$ {
1901
1898
  options?: HttpHandlerOptions,
1902
1899
  ): Effect.Effect<
1903
1900
  GetGroupCommandOutput,
1904
- | Cause.TimeoutException
1901
+ | Cause.TimeoutError
1905
1902
  | SdkError
1906
1903
  | InternalError
1907
1904
  | InvalidParameterError
@@ -1918,7 +1915,7 @@ interface CognitoIdentityProviderService$ {
1918
1915
  options?: HttpHandlerOptions,
1919
1916
  ): Effect.Effect<
1920
1917
  GetIdentityProviderByIdentifierCommandOutput,
1921
- | Cause.TimeoutException
1918
+ | Cause.TimeoutError
1922
1919
  | SdkError
1923
1920
  | InternalError
1924
1921
  | InvalidParameterError
@@ -1935,7 +1932,7 @@ interface CognitoIdentityProviderService$ {
1935
1932
  options?: HttpHandlerOptions,
1936
1933
  ): Effect.Effect<
1937
1934
  GetLogDeliveryConfigurationCommandOutput,
1938
- | Cause.TimeoutException
1935
+ | Cause.TimeoutError
1939
1936
  | SdkError
1940
1937
  | InternalError
1941
1938
  | InvalidParameterError
@@ -1952,7 +1949,7 @@ interface CognitoIdentityProviderService$ {
1952
1949
  options?: HttpHandlerOptions,
1953
1950
  ): Effect.Effect<
1954
1951
  GetSigningCertificateCommandOutput,
1955
- Cause.TimeoutException | SdkError | InternalError | InvalidParameterError | ResourceNotFoundError
1952
+ Cause.TimeoutError | SdkError | InternalError | InvalidParameterError | ResourceNotFoundError
1956
1953
  >;
1957
1954
 
1958
1955
  /**
@@ -1963,7 +1960,7 @@ interface CognitoIdentityProviderService$ {
1963
1960
  options?: HttpHandlerOptions,
1964
1961
  ): Effect.Effect<
1965
1962
  GetTokensFromRefreshTokenCommandOutput,
1966
- | Cause.TimeoutException
1963
+ | Cause.TimeoutError
1967
1964
  | SdkError
1968
1965
  | ForbiddenError
1969
1966
  | InternalError
@@ -1986,7 +1983,7 @@ interface CognitoIdentityProviderService$ {
1986
1983
  options?: HttpHandlerOptions,
1987
1984
  ): Effect.Effect<
1988
1985
  GetUICustomizationCommandOutput,
1989
- | Cause.TimeoutException
1986
+ | Cause.TimeoutError
1990
1987
  | SdkError
1991
1988
  | InternalError
1992
1989
  | InvalidParameterError
@@ -2003,7 +2000,7 @@ interface CognitoIdentityProviderService$ {
2003
2000
  options?: HttpHandlerOptions,
2004
2001
  ): Effect.Effect<
2005
2002
  GetUserCommandOutput,
2006
- | Cause.TimeoutException
2003
+ | Cause.TimeoutError
2007
2004
  | SdkError
2008
2005
  | ForbiddenError
2009
2006
  | InternalError
@@ -2024,7 +2021,7 @@ interface CognitoIdentityProviderService$ {
2024
2021
  options?: HttpHandlerOptions,
2025
2022
  ): Effect.Effect<
2026
2023
  GetUserAttributeVerificationCodeCommandOutput,
2027
- | Cause.TimeoutException
2024
+ | Cause.TimeoutError
2028
2025
  | SdkError
2029
2026
  | CodeDeliveryFailureError
2030
2027
  | ForbiddenError
@@ -2053,7 +2050,7 @@ interface CognitoIdentityProviderService$ {
2053
2050
  options?: HttpHandlerOptions,
2054
2051
  ): Effect.Effect<
2055
2052
  GetUserAuthFactorsCommandOutput,
2056
- | Cause.TimeoutException
2053
+ | Cause.TimeoutError
2057
2054
  | SdkError
2058
2055
  | ForbiddenError
2059
2056
  | InternalError
@@ -2074,7 +2071,7 @@ interface CognitoIdentityProviderService$ {
2074
2071
  options?: HttpHandlerOptions,
2075
2072
  ): Effect.Effect<
2076
2073
  GetUserPoolMfaConfigCommandOutput,
2077
- | Cause.TimeoutException
2074
+ | Cause.TimeoutError
2078
2075
  | SdkError
2079
2076
  | InternalError
2080
2077
  | InvalidParameterError
@@ -2091,7 +2088,7 @@ interface CognitoIdentityProviderService$ {
2091
2088
  options?: HttpHandlerOptions,
2092
2089
  ): Effect.Effect<
2093
2090
  GlobalSignOutCommandOutput,
2094
- | Cause.TimeoutException
2091
+ | Cause.TimeoutError
2095
2092
  | SdkError
2096
2093
  | ForbiddenError
2097
2094
  | InternalError
@@ -2111,7 +2108,7 @@ interface CognitoIdentityProviderService$ {
2111
2108
  options?: HttpHandlerOptions,
2112
2109
  ): Effect.Effect<
2113
2110
  InitiateAuthCommandOutput,
2114
- | Cause.TimeoutException
2111
+ | Cause.TimeoutError
2115
2112
  | SdkError
2116
2113
  | ForbiddenError
2117
2114
  | InternalError
@@ -2140,7 +2137,7 @@ interface CognitoIdentityProviderService$ {
2140
2137
  options?: HttpHandlerOptions,
2141
2138
  ): Effect.Effect<
2142
2139
  ListDevicesCommandOutput,
2143
- | Cause.TimeoutException
2140
+ | Cause.TimeoutError
2144
2141
  | SdkError
2145
2142
  | ForbiddenError
2146
2143
  | InternalError
@@ -2162,7 +2159,7 @@ interface CognitoIdentityProviderService$ {
2162
2159
  options?: HttpHandlerOptions,
2163
2160
  ): Effect.Effect<
2164
2161
  ListGroupsCommandOutput,
2165
- | Cause.TimeoutException
2162
+ | Cause.TimeoutError
2166
2163
  | SdkError
2167
2164
  | InternalError
2168
2165
  | InvalidParameterError
@@ -2179,7 +2176,7 @@ interface CognitoIdentityProviderService$ {
2179
2176
  options?: HttpHandlerOptions,
2180
2177
  ): Effect.Effect<
2181
2178
  ListIdentityProvidersCommandOutput,
2182
- | Cause.TimeoutException
2179
+ | Cause.TimeoutError
2183
2180
  | SdkError
2184
2181
  | InternalError
2185
2182
  | InvalidParameterError
@@ -2196,7 +2193,7 @@ interface CognitoIdentityProviderService$ {
2196
2193
  options?: HttpHandlerOptions,
2197
2194
  ): Effect.Effect<
2198
2195
  ListResourceServersCommandOutput,
2199
- | Cause.TimeoutException
2196
+ | Cause.TimeoutError
2200
2197
  | SdkError
2201
2198
  | InternalError
2202
2199
  | InvalidParameterError
@@ -2213,7 +2210,7 @@ interface CognitoIdentityProviderService$ {
2213
2210
  options?: HttpHandlerOptions,
2214
2211
  ): Effect.Effect<
2215
2212
  ListTagsForResourceCommandOutput,
2216
- | Cause.TimeoutException
2213
+ | Cause.TimeoutError
2217
2214
  | SdkError
2218
2215
  | InternalError
2219
2216
  | InvalidParameterError
@@ -2230,7 +2227,7 @@ interface CognitoIdentityProviderService$ {
2230
2227
  options?: HttpHandlerOptions,
2231
2228
  ): Effect.Effect<
2232
2229
  ListTermsCommandOutput,
2233
- | Cause.TimeoutException
2230
+ | Cause.TimeoutError
2234
2231
  | SdkError
2235
2232
  | InternalError
2236
2233
  | InvalidParameterError
@@ -2247,7 +2244,7 @@ interface CognitoIdentityProviderService$ {
2247
2244
  options?: HttpHandlerOptions,
2248
2245
  ): Effect.Effect<
2249
2246
  ListUserImportJobsCommandOutput,
2250
- | Cause.TimeoutException
2247
+ | Cause.TimeoutError
2251
2248
  | SdkError
2252
2249
  | InternalError
2253
2250
  | InvalidParameterError
@@ -2264,7 +2261,7 @@ interface CognitoIdentityProviderService$ {
2264
2261
  options?: HttpHandlerOptions,
2265
2262
  ): Effect.Effect<
2266
2263
  ListUserPoolClientsCommandOutput,
2267
- | Cause.TimeoutException
2264
+ | Cause.TimeoutError
2268
2265
  | SdkError
2269
2266
  | InternalError
2270
2267
  | InvalidParameterError
@@ -2281,12 +2278,7 @@ interface CognitoIdentityProviderService$ {
2281
2278
  options?: HttpHandlerOptions,
2282
2279
  ): Effect.Effect<
2283
2280
  ListUserPoolsCommandOutput,
2284
- | Cause.TimeoutException
2285
- | SdkError
2286
- | InternalError
2287
- | InvalidParameterError
2288
- | NotAuthorizedError
2289
- | TooManyRequestsError
2281
+ Cause.TimeoutError | SdkError | InternalError | InvalidParameterError | NotAuthorizedError | TooManyRequestsError
2290
2282
  >;
2291
2283
 
2292
2284
  /**
@@ -2297,7 +2289,7 @@ interface CognitoIdentityProviderService$ {
2297
2289
  options?: HttpHandlerOptions,
2298
2290
  ): Effect.Effect<
2299
2291
  ListUsersCommandOutput,
2300
- | Cause.TimeoutException
2292
+ | Cause.TimeoutError
2301
2293
  | SdkError
2302
2294
  | InternalError
2303
2295
  | InvalidParameterError
@@ -2314,7 +2306,7 @@ interface CognitoIdentityProviderService$ {
2314
2306
  options?: HttpHandlerOptions,
2315
2307
  ): Effect.Effect<
2316
2308
  ListUsersInGroupCommandOutput,
2317
- | Cause.TimeoutException
2309
+ | Cause.TimeoutError
2318
2310
  | SdkError
2319
2311
  | InternalError
2320
2312
  | InvalidParameterError
@@ -2331,7 +2323,7 @@ interface CognitoIdentityProviderService$ {
2331
2323
  options?: HttpHandlerOptions,
2332
2324
  ): Effect.Effect<
2333
2325
  ListWebAuthnCredentialsCommandOutput,
2334
- | Cause.TimeoutException
2326
+ | Cause.TimeoutError
2335
2327
  | SdkError
2336
2328
  | ForbiddenError
2337
2329
  | InternalError
@@ -2349,7 +2341,7 @@ interface CognitoIdentityProviderService$ {
2349
2341
  options?: HttpHandlerOptions,
2350
2342
  ): Effect.Effect<
2351
2343
  ResendConfirmationCodeCommandOutput,
2352
- | Cause.TimeoutException
2344
+ | Cause.TimeoutError
2353
2345
  | SdkError
2354
2346
  | CodeDeliveryFailureError
2355
2347
  | ForbiddenError
@@ -2376,7 +2368,7 @@ interface CognitoIdentityProviderService$ {
2376
2368
  options?: HttpHandlerOptions,
2377
2369
  ): Effect.Effect<
2378
2370
  RespondToAuthChallengeCommandOutput,
2379
- | Cause.TimeoutException
2371
+ | Cause.TimeoutError
2380
2372
  | SdkError
2381
2373
  | AliasExistsError
2382
2374
  | CodeMismatchError
@@ -2411,7 +2403,7 @@ interface CognitoIdentityProviderService$ {
2411
2403
  options?: HttpHandlerOptions,
2412
2404
  ): Effect.Effect<
2413
2405
  RevokeTokenCommandOutput,
2414
- | Cause.TimeoutException
2406
+ | Cause.TimeoutError
2415
2407
  | SdkError
2416
2408
  | ForbiddenError
2417
2409
  | InternalError
@@ -2430,7 +2422,7 @@ interface CognitoIdentityProviderService$ {
2430
2422
  options?: HttpHandlerOptions,
2431
2423
  ): Effect.Effect<
2432
2424
  SetLogDeliveryConfigurationCommandOutput,
2433
- | Cause.TimeoutException
2425
+ | Cause.TimeoutError
2434
2426
  | SdkError
2435
2427
  | FeatureUnavailableInTierError
2436
2428
  | InternalError
@@ -2448,7 +2440,7 @@ interface CognitoIdentityProviderService$ {
2448
2440
  options?: HttpHandlerOptions,
2449
2441
  ): Effect.Effect<
2450
2442
  SetRiskConfigurationCommandOutput,
2451
- | Cause.TimeoutException
2443
+ | Cause.TimeoutError
2452
2444
  | SdkError
2453
2445
  | CodeDeliveryFailureError
2454
2446
  | InternalError
@@ -2468,7 +2460,7 @@ interface CognitoIdentityProviderService$ {
2468
2460
  options?: HttpHandlerOptions,
2469
2461
  ): Effect.Effect<
2470
2462
  SetUICustomizationCommandOutput,
2471
- | Cause.TimeoutException
2463
+ | Cause.TimeoutError
2472
2464
  | SdkError
2473
2465
  | InternalError
2474
2466
  | InvalidParameterError
@@ -2485,7 +2477,7 @@ interface CognitoIdentityProviderService$ {
2485
2477
  options?: HttpHandlerOptions,
2486
2478
  ): Effect.Effect<
2487
2479
  SetUserMFAPreferenceCommandOutput,
2488
- | Cause.TimeoutException
2480
+ | Cause.TimeoutError
2489
2481
  | SdkError
2490
2482
  | ForbiddenError
2491
2483
  | InternalError
@@ -2505,7 +2497,7 @@ interface CognitoIdentityProviderService$ {
2505
2497
  options?: HttpHandlerOptions,
2506
2498
  ): Effect.Effect<
2507
2499
  SetUserPoolMfaConfigCommandOutput,
2508
- | Cause.TimeoutException
2500
+ | Cause.TimeoutError
2509
2501
  | SdkError
2510
2502
  | ConcurrentModificationError
2511
2503
  | FeatureUnavailableInTierError
@@ -2526,7 +2518,7 @@ interface CognitoIdentityProviderService$ {
2526
2518
  options?: HttpHandlerOptions,
2527
2519
  ): Effect.Effect<
2528
2520
  SetUserSettingsCommandOutput,
2529
- | Cause.TimeoutException
2521
+ | Cause.TimeoutError
2530
2522
  | SdkError
2531
2523
  | ForbiddenError
2532
2524
  | InternalError
@@ -2546,7 +2538,7 @@ interface CognitoIdentityProviderService$ {
2546
2538
  options?: HttpHandlerOptions,
2547
2539
  ): Effect.Effect<
2548
2540
  SignUpCommandOutput,
2549
- | Cause.TimeoutException
2541
+ | Cause.TimeoutError
2550
2542
  | SdkError
2551
2543
  | CodeDeliveryFailureError
2552
2544
  | ForbiddenError
@@ -2574,7 +2566,7 @@ interface CognitoIdentityProviderService$ {
2574
2566
  options?: HttpHandlerOptions,
2575
2567
  ): Effect.Effect<
2576
2568
  StartUserImportJobCommandOutput,
2577
- | Cause.TimeoutException
2569
+ | Cause.TimeoutError
2578
2570
  | SdkError
2579
2571
  | InternalError
2580
2572
  | InvalidParameterError
@@ -2592,7 +2584,7 @@ interface CognitoIdentityProviderService$ {
2592
2584
  options?: HttpHandlerOptions,
2593
2585
  ): Effect.Effect<
2594
2586
  StartWebAuthnRegistrationCommandOutput,
2595
- | Cause.TimeoutException
2587
+ | Cause.TimeoutError
2596
2588
  | SdkError
2597
2589
  | ForbiddenError
2598
2590
  | InternalError
@@ -2612,7 +2604,7 @@ interface CognitoIdentityProviderService$ {
2612
2604
  options?: HttpHandlerOptions,
2613
2605
  ): Effect.Effect<
2614
2606
  StopUserImportJobCommandOutput,
2615
- | Cause.TimeoutException
2607
+ | Cause.TimeoutError
2616
2608
  | SdkError
2617
2609
  | InternalError
2618
2610
  | InvalidParameterError
@@ -2630,7 +2622,7 @@ interface CognitoIdentityProviderService$ {
2630
2622
  options?: HttpHandlerOptions,
2631
2623
  ): Effect.Effect<
2632
2624
  TagResourceCommandOutput,
2633
- | Cause.TimeoutException
2625
+ | Cause.TimeoutError
2634
2626
  | SdkError
2635
2627
  | InternalError
2636
2628
  | InvalidParameterError
@@ -2647,7 +2639,7 @@ interface CognitoIdentityProviderService$ {
2647
2639
  options?: HttpHandlerOptions,
2648
2640
  ): Effect.Effect<
2649
2641
  UntagResourceCommandOutput,
2650
- | Cause.TimeoutException
2642
+ | Cause.TimeoutError
2651
2643
  | SdkError
2652
2644
  | InternalError
2653
2645
  | InvalidParameterError
@@ -2664,7 +2656,7 @@ interface CognitoIdentityProviderService$ {
2664
2656
  options?: HttpHandlerOptions,
2665
2657
  ): Effect.Effect<
2666
2658
  UpdateAuthEventFeedbackCommandOutput,
2667
- | Cause.TimeoutException
2659
+ | Cause.TimeoutError
2668
2660
  | SdkError
2669
2661
  | InternalError
2670
2662
  | InvalidParameterError
@@ -2683,7 +2675,7 @@ interface CognitoIdentityProviderService$ {
2683
2675
  options?: HttpHandlerOptions,
2684
2676
  ): Effect.Effect<
2685
2677
  UpdateDeviceStatusCommandOutput,
2686
- | Cause.TimeoutException
2678
+ | Cause.TimeoutError
2687
2679
  | SdkError
2688
2680
  | ForbiddenError
2689
2681
  | InternalError
@@ -2705,7 +2697,7 @@ interface CognitoIdentityProviderService$ {
2705
2697
  options?: HttpHandlerOptions,
2706
2698
  ): Effect.Effect<
2707
2699
  UpdateGroupCommandOutput,
2708
- | Cause.TimeoutException
2700
+ | Cause.TimeoutError
2709
2701
  | SdkError
2710
2702
  | InternalError
2711
2703
  | InvalidParameterError
@@ -2722,7 +2714,7 @@ interface CognitoIdentityProviderService$ {
2722
2714
  options?: HttpHandlerOptions,
2723
2715
  ): Effect.Effect<
2724
2716
  UpdateIdentityProviderCommandOutput,
2725
- | Cause.TimeoutException
2717
+ | Cause.TimeoutError
2726
2718
  | SdkError
2727
2719
  | ConcurrentModificationError
2728
2720
  | InternalError
@@ -2741,7 +2733,7 @@ interface CognitoIdentityProviderService$ {
2741
2733
  options?: HttpHandlerOptions,
2742
2734
  ): Effect.Effect<
2743
2735
  UpdateManagedLoginBrandingCommandOutput,
2744
- | Cause.TimeoutException
2736
+ | Cause.TimeoutError
2745
2737
  | SdkError
2746
2738
  | ConcurrentModificationError
2747
2739
  | InternalError
@@ -2759,7 +2751,7 @@ interface CognitoIdentityProviderService$ {
2759
2751
  options?: HttpHandlerOptions,
2760
2752
  ): Effect.Effect<
2761
2753
  UpdateResourceServerCommandOutput,
2762
- | Cause.TimeoutException
2754
+ | Cause.TimeoutError
2763
2755
  | SdkError
2764
2756
  | InternalError
2765
2757
  | InvalidParameterError
@@ -2776,7 +2768,7 @@ interface CognitoIdentityProviderService$ {
2776
2768
  options?: HttpHandlerOptions,
2777
2769
  ): Effect.Effect<
2778
2770
  UpdateTermsCommandOutput,
2779
- | Cause.TimeoutException
2771
+ | Cause.TimeoutError
2780
2772
  | SdkError
2781
2773
  | ConcurrentModificationError
2782
2774
  | InternalError
@@ -2795,7 +2787,7 @@ interface CognitoIdentityProviderService$ {
2795
2787
  options?: HttpHandlerOptions,
2796
2788
  ): Effect.Effect<
2797
2789
  UpdateUserAttributesCommandOutput,
2798
- | Cause.TimeoutException
2790
+ | Cause.TimeoutError
2799
2791
  | SdkError
2800
2792
  | AliasExistsError
2801
2793
  | CodeDeliveryFailureError
@@ -2826,7 +2818,7 @@ interface CognitoIdentityProviderService$ {
2826
2818
  options?: HttpHandlerOptions,
2827
2819
  ): Effect.Effect<
2828
2820
  UpdateUserPoolCommandOutput,
2829
- | Cause.TimeoutException
2821
+ | Cause.TimeoutError
2830
2822
  | SdkError
2831
2823
  | ConcurrentModificationError
2832
2824
  | FeatureUnavailableInTierError
@@ -2851,7 +2843,7 @@ interface CognitoIdentityProviderService$ {
2851
2843
  options?: HttpHandlerOptions,
2852
2844
  ): Effect.Effect<
2853
2845
  UpdateUserPoolClientCommandOutput,
2854
- | Cause.TimeoutException
2846
+ | Cause.TimeoutError
2855
2847
  | SdkError
2856
2848
  | ConcurrentModificationError
2857
2849
  | FeatureUnavailableInTierError
@@ -2872,7 +2864,7 @@ interface CognitoIdentityProviderService$ {
2872
2864
  options?: HttpHandlerOptions,
2873
2865
  ): Effect.Effect<
2874
2866
  UpdateUserPoolDomainCommandOutput,
2875
- | Cause.TimeoutException
2867
+ | Cause.TimeoutError
2876
2868
  | SdkError
2877
2869
  | ConcurrentModificationError
2878
2870
  | FeatureUnavailableInTierError
@@ -2891,7 +2883,7 @@ interface CognitoIdentityProviderService$ {
2891
2883
  options?: HttpHandlerOptions,
2892
2884
  ): Effect.Effect<
2893
2885
  VerifySoftwareTokenCommandOutput,
2894
- | Cause.TimeoutException
2886
+ | Cause.TimeoutError
2895
2887
  | SdkError
2896
2888
  | CodeMismatchError
2897
2889
  | EnableSoftwareTokenMFAError
@@ -2916,7 +2908,7 @@ interface CognitoIdentityProviderService$ {
2916
2908
  options?: HttpHandlerOptions,
2917
2909
  ): Effect.Effect<
2918
2910
  VerifyUserAttributeCommandOutput,
2919
- | Cause.TimeoutException
2911
+ | Cause.TimeoutError
2920
2912
  | SdkError
2921
2913
  | AliasExistsError
2922
2914
  | CodeMismatchError
@@ -2955,12 +2947,10 @@ export const makeCognitoIdentityProviderService = Effect.gen(function*() {
2955
2947
  * @since 1.0.0
2956
2948
  * @category models
2957
2949
  */
2958
- export class CognitoIdentityProviderService
2959
- extends Effect.Tag("@effect-aws/client-cognito-identity-provider/CognitoIdentityProviderService")<
2960
- CognitoIdentityProviderService,
2961
- CognitoIdentityProviderService$
2962
- >()
2963
- {
2950
+ export class CognitoIdentityProviderService extends ServiceMap.Service<
2951
+ CognitoIdentityProviderService,
2952
+ CognitoIdentityProviderService$
2953
+ >()("@effect-aws/client-cognito-identity-provider/CognitoIdentityProviderService") {
2964
2954
  static readonly defaultLayer = Layer.effect(this, makeCognitoIdentityProviderService).pipe(
2965
2955
  Layer.provide(Instance.layer),
2966
2956
  );