@effect-aws/client-elasticache 1.9.3 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -232,6 +232,7 @@ import {
232
232
  } from "@aws-sdk/client-elasticache";
233
233
  import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
234
234
  import { Service } from "@effect-aws/commons";
235
+ import type { Cause } from "effect";
235
236
  import { Effect, Layer } from "effect";
236
237
  import * as Instance from "./ElastiCacheClientInstance.js";
237
238
  import * as ElastiCacheServiceConfig from "./ElastiCacheServiceConfig.js";
@@ -404,6 +405,7 @@ interface ElastiCacheService$ {
404
405
  options?: HttpHandlerOptions,
405
406
  ): Effect.Effect<
406
407
  AddTagsToResourceCommandOutput,
408
+ | Cause.TimeoutException
407
409
  | SdkError
408
410
  | CacheClusterNotFoundFaultError
409
411
  | CacheParameterGroupNotFoundFaultError
@@ -431,6 +433,7 @@ interface ElastiCacheService$ {
431
433
  options?: HttpHandlerOptions,
432
434
  ): Effect.Effect<
433
435
  AuthorizeCacheSecurityGroupIngressCommandOutput,
436
+ | Cause.TimeoutException
434
437
  | SdkError
435
438
  | AuthorizationAlreadyExistsFaultError
436
439
  | CacheSecurityGroupNotFoundFaultError
@@ -447,7 +450,7 @@ interface ElastiCacheService$ {
447
450
  options?: HttpHandlerOptions,
448
451
  ): Effect.Effect<
449
452
  BatchApplyUpdateActionCommandOutput,
450
- SdkError | InvalidParameterValueError | ServiceUpdateNotFoundFaultError
453
+ Cause.TimeoutException | SdkError | InvalidParameterValueError | ServiceUpdateNotFoundFaultError
451
454
  >;
452
455
 
453
456
  /**
@@ -458,7 +461,7 @@ interface ElastiCacheService$ {
458
461
  options?: HttpHandlerOptions,
459
462
  ): Effect.Effect<
460
463
  BatchStopUpdateActionCommandOutput,
461
- SdkError | InvalidParameterValueError | ServiceUpdateNotFoundFaultError
464
+ Cause.TimeoutException | SdkError | InvalidParameterValueError | ServiceUpdateNotFoundFaultError
462
465
  >;
463
466
 
464
467
  /**
@@ -469,6 +472,7 @@ interface ElastiCacheService$ {
469
472
  options?: HttpHandlerOptions,
470
473
  ): Effect.Effect<
471
474
  CompleteMigrationCommandOutput,
475
+ | Cause.TimeoutException
472
476
  | SdkError
473
477
  | InvalidReplicationGroupStateFaultError
474
478
  | ReplicationGroupNotFoundFaultError
@@ -483,6 +487,7 @@ interface ElastiCacheService$ {
483
487
  options?: HttpHandlerOptions,
484
488
  ): Effect.Effect<
485
489
  CopyServerlessCacheSnapshotCommandOutput,
490
+ | Cause.TimeoutException
486
491
  | SdkError
487
492
  | InvalidParameterCombinationError
488
493
  | InvalidParameterValueError
@@ -502,6 +507,7 @@ interface ElastiCacheService$ {
502
507
  options?: HttpHandlerOptions,
503
508
  ): Effect.Effect<
504
509
  CopySnapshotCommandOutput,
510
+ | Cause.TimeoutException
505
511
  | SdkError
506
512
  | InvalidParameterCombinationError
507
513
  | InvalidParameterValueError
@@ -520,6 +526,7 @@ interface ElastiCacheService$ {
520
526
  options?: HttpHandlerOptions,
521
527
  ): Effect.Effect<
522
528
  CreateCacheClusterCommandOutput,
529
+ | Cause.TimeoutException
523
530
  | SdkError
524
531
  | CacheClusterAlreadyExistsFaultError
525
532
  | CacheParameterGroupNotFoundFaultError
@@ -545,6 +552,7 @@ interface ElastiCacheService$ {
545
552
  options?: HttpHandlerOptions,
546
553
  ): Effect.Effect<
547
554
  CreateCacheParameterGroupCommandOutput,
555
+ | Cause.TimeoutException
548
556
  | SdkError
549
557
  | CacheParameterGroupAlreadyExistsFaultError
550
558
  | CacheParameterGroupQuotaExceededFaultError
@@ -562,6 +570,7 @@ interface ElastiCacheService$ {
562
570
  options?: HttpHandlerOptions,
563
571
  ): Effect.Effect<
564
572
  CreateCacheSecurityGroupCommandOutput,
573
+ | Cause.TimeoutException
565
574
  | SdkError
566
575
  | CacheSecurityGroupAlreadyExistsFaultError
567
576
  | CacheSecurityGroupQuotaExceededFaultError
@@ -578,6 +587,7 @@ interface ElastiCacheService$ {
578
587
  options?: HttpHandlerOptions,
579
588
  ): Effect.Effect<
580
589
  CreateCacheSubnetGroupCommandOutput,
590
+ | Cause.TimeoutException
581
591
  | SdkError
582
592
  | CacheSubnetGroupAlreadyExistsFaultError
583
593
  | CacheSubnetGroupQuotaExceededFaultError
@@ -595,6 +605,7 @@ interface ElastiCacheService$ {
595
605
  options?: HttpHandlerOptions,
596
606
  ): Effect.Effect<
597
607
  CreateGlobalReplicationGroupCommandOutput,
608
+ | Cause.TimeoutException
598
609
  | SdkError
599
610
  | GlobalReplicationGroupAlreadyExistsFaultError
600
611
  | InvalidParameterValueError
@@ -611,6 +622,7 @@ interface ElastiCacheService$ {
611
622
  options?: HttpHandlerOptions,
612
623
  ): Effect.Effect<
613
624
  CreateReplicationGroupCommandOutput,
625
+ | Cause.TimeoutException
614
626
  | SdkError
615
627
  | CacheClusterNotFoundFaultError
616
628
  | CacheParameterGroupNotFoundFaultError
@@ -641,6 +653,7 @@ interface ElastiCacheService$ {
641
653
  options?: HttpHandlerOptions,
642
654
  ): Effect.Effect<
643
655
  CreateServerlessCacheCommandOutput,
656
+ | Cause.TimeoutException
644
657
  | SdkError
645
658
  | InvalidCredentialsError
646
659
  | InvalidParameterCombinationError
@@ -663,6 +676,7 @@ interface ElastiCacheService$ {
663
676
  options?: HttpHandlerOptions,
664
677
  ): Effect.Effect<
665
678
  CreateServerlessCacheSnapshotCommandOutput,
679
+ | Cause.TimeoutException
666
680
  | SdkError
667
681
  | InvalidParameterCombinationError
668
682
  | InvalidParameterValueError
@@ -682,6 +696,7 @@ interface ElastiCacheService$ {
682
696
  options?: HttpHandlerOptions,
683
697
  ): Effect.Effect<
684
698
  CreateSnapshotCommandOutput,
699
+ | Cause.TimeoutException
685
700
  | SdkError
686
701
  | CacheClusterNotFoundFaultError
687
702
  | InvalidCacheClusterStateFaultError
@@ -703,6 +718,7 @@ interface ElastiCacheService$ {
703
718
  options?: HttpHandlerOptions,
704
719
  ): Effect.Effect<
705
720
  CreateUserCommandOutput,
721
+ | Cause.TimeoutException
706
722
  | SdkError
707
723
  | DuplicateUserNameFaultError
708
724
  | InvalidParameterCombinationError
@@ -721,6 +737,7 @@ interface ElastiCacheService$ {
721
737
  options?: HttpHandlerOptions,
722
738
  ): Effect.Effect<
723
739
  CreateUserGroupCommandOutput,
740
+ | Cause.TimeoutException
724
741
  | SdkError
725
742
  | DefaultUserRequiredError
726
743
  | DuplicateUserNameFaultError
@@ -740,6 +757,7 @@ interface ElastiCacheService$ {
740
757
  options?: HttpHandlerOptions,
741
758
  ): Effect.Effect<
742
759
  DecreaseNodeGroupsInGlobalReplicationGroupCommandOutput,
760
+ | Cause.TimeoutException
743
761
  | SdkError
744
762
  | GlobalReplicationGroupNotFoundFaultError
745
763
  | InvalidGlobalReplicationGroupStateFaultError
@@ -755,6 +773,7 @@ interface ElastiCacheService$ {
755
773
  options?: HttpHandlerOptions,
756
774
  ): Effect.Effect<
757
775
  DecreaseReplicaCountCommandOutput,
776
+ | Cause.TimeoutException
758
777
  | SdkError
759
778
  | ClusterQuotaForCustomerExceededFaultError
760
779
  | InsufficientCacheClusterCapacityFaultError
@@ -778,6 +797,7 @@ interface ElastiCacheService$ {
778
797
  options?: HttpHandlerOptions,
779
798
  ): Effect.Effect<
780
799
  DeleteCacheClusterCommandOutput,
800
+ | Cause.TimeoutException
781
801
  | SdkError
782
802
  | CacheClusterNotFoundFaultError
783
803
  | InvalidCacheClusterStateFaultError
@@ -796,6 +816,7 @@ interface ElastiCacheService$ {
796
816
  options?: HttpHandlerOptions,
797
817
  ): Effect.Effect<
798
818
  DeleteCacheParameterGroupCommandOutput,
819
+ | Cause.TimeoutException
799
820
  | SdkError
800
821
  | CacheParameterGroupNotFoundFaultError
801
822
  | InvalidCacheParameterGroupStateFaultError
@@ -811,6 +832,7 @@ interface ElastiCacheService$ {
811
832
  options?: HttpHandlerOptions,
812
833
  ): Effect.Effect<
813
834
  DeleteCacheSecurityGroupCommandOutput,
835
+ | Cause.TimeoutException
814
836
  | SdkError
815
837
  | CacheSecurityGroupNotFoundFaultError
816
838
  | InvalidCacheSecurityGroupStateFaultError
@@ -826,7 +848,7 @@ interface ElastiCacheService$ {
826
848
  options?: HttpHandlerOptions,
827
849
  ): Effect.Effect<
828
850
  DeleteCacheSubnetGroupCommandOutput,
829
- SdkError | CacheSubnetGroupInUseError | CacheSubnetGroupNotFoundFaultError
851
+ Cause.TimeoutException | SdkError | CacheSubnetGroupInUseError | CacheSubnetGroupNotFoundFaultError
830
852
  >;
831
853
 
832
854
  /**
@@ -837,6 +859,7 @@ interface ElastiCacheService$ {
837
859
  options?: HttpHandlerOptions,
838
860
  ): Effect.Effect<
839
861
  DeleteGlobalReplicationGroupCommandOutput,
862
+ | Cause.TimeoutException
840
863
  | SdkError
841
864
  | GlobalReplicationGroupNotFoundFaultError
842
865
  | InvalidGlobalReplicationGroupStateFaultError
@@ -851,6 +874,7 @@ interface ElastiCacheService$ {
851
874
  options?: HttpHandlerOptions,
852
875
  ): Effect.Effect<
853
876
  DeleteReplicationGroupCommandOutput,
877
+ | Cause.TimeoutException
854
878
  | SdkError
855
879
  | InvalidParameterCombinationError
856
880
  | InvalidParameterValueError
@@ -869,6 +893,7 @@ interface ElastiCacheService$ {
869
893
  options?: HttpHandlerOptions,
870
894
  ): Effect.Effect<
871
895
  DeleteServerlessCacheCommandOutput,
896
+ | Cause.TimeoutException
872
897
  | SdkError
873
898
  | InvalidCredentialsError
874
899
  | InvalidParameterCombinationError
@@ -887,6 +912,7 @@ interface ElastiCacheService$ {
887
912
  options?: HttpHandlerOptions,
888
913
  ): Effect.Effect<
889
914
  DeleteServerlessCacheSnapshotCommandOutput,
915
+ | Cause.TimeoutException
890
916
  | SdkError
891
917
  | InvalidParameterValueError
892
918
  | InvalidServerlessCacheSnapshotStateFaultError
@@ -902,6 +928,7 @@ interface ElastiCacheService$ {
902
928
  options?: HttpHandlerOptions,
903
929
  ): Effect.Effect<
904
930
  DeleteSnapshotCommandOutput,
931
+ | Cause.TimeoutException
905
932
  | SdkError
906
933
  | InvalidParameterCombinationError
907
934
  | InvalidParameterValueError
@@ -917,6 +944,7 @@ interface ElastiCacheService$ {
917
944
  options?: HttpHandlerOptions,
918
945
  ): Effect.Effect<
919
946
  DeleteUserCommandOutput,
947
+ | Cause.TimeoutException
920
948
  | SdkError
921
949
  | DefaultUserAssociatedToUserGroupFaultError
922
950
  | InvalidParameterValueError
@@ -933,6 +961,7 @@ interface ElastiCacheService$ {
933
961
  options?: HttpHandlerOptions,
934
962
  ): Effect.Effect<
935
963
  DeleteUserGroupCommandOutput,
964
+ | Cause.TimeoutException
936
965
  | SdkError
937
966
  | InvalidParameterValueError
938
967
  | InvalidUserGroupStateFaultError
@@ -948,7 +977,11 @@ interface ElastiCacheService$ {
948
977
  options?: HttpHandlerOptions,
949
978
  ): Effect.Effect<
950
979
  DescribeCacheClustersCommandOutput,
951
- SdkError | CacheClusterNotFoundFaultError | InvalidParameterCombinationError | InvalidParameterValueError
980
+ | Cause.TimeoutException
981
+ | SdkError
982
+ | CacheClusterNotFoundFaultError
983
+ | InvalidParameterCombinationError
984
+ | InvalidParameterValueError
952
985
  >;
953
986
 
954
987
  /**
@@ -959,7 +992,7 @@ interface ElastiCacheService$ {
959
992
  options?: HttpHandlerOptions,
960
993
  ): Effect.Effect<
961
994
  DescribeCacheEngineVersionsCommandOutput,
962
- SdkError
995
+ Cause.TimeoutException | SdkError
963
996
  >;
964
997
 
965
998
  /**
@@ -970,7 +1003,11 @@ interface ElastiCacheService$ {
970
1003
  options?: HttpHandlerOptions,
971
1004
  ): Effect.Effect<
972
1005
  DescribeCacheParameterGroupsCommandOutput,
973
- SdkError | CacheParameterGroupNotFoundFaultError | InvalidParameterCombinationError | InvalidParameterValueError
1006
+ | Cause.TimeoutException
1007
+ | SdkError
1008
+ | CacheParameterGroupNotFoundFaultError
1009
+ | InvalidParameterCombinationError
1010
+ | InvalidParameterValueError
974
1011
  >;
975
1012
 
976
1013
  /**
@@ -981,7 +1018,11 @@ interface ElastiCacheService$ {
981
1018
  options?: HttpHandlerOptions,
982
1019
  ): Effect.Effect<
983
1020
  DescribeCacheParametersCommandOutput,
984
- SdkError | CacheParameterGroupNotFoundFaultError | InvalidParameterCombinationError | InvalidParameterValueError
1021
+ | Cause.TimeoutException
1022
+ | SdkError
1023
+ | CacheParameterGroupNotFoundFaultError
1024
+ | InvalidParameterCombinationError
1025
+ | InvalidParameterValueError
985
1026
  >;
986
1027
 
987
1028
  /**
@@ -992,7 +1033,11 @@ interface ElastiCacheService$ {
992
1033
  options?: HttpHandlerOptions,
993
1034
  ): Effect.Effect<
994
1035
  DescribeCacheSecurityGroupsCommandOutput,
995
- SdkError | CacheSecurityGroupNotFoundFaultError | InvalidParameterCombinationError | InvalidParameterValueError
1036
+ | Cause.TimeoutException
1037
+ | SdkError
1038
+ | CacheSecurityGroupNotFoundFaultError
1039
+ | InvalidParameterCombinationError
1040
+ | InvalidParameterValueError
996
1041
  >;
997
1042
 
998
1043
  /**
@@ -1003,7 +1048,7 @@ interface ElastiCacheService$ {
1003
1048
  options?: HttpHandlerOptions,
1004
1049
  ): Effect.Effect<
1005
1050
  DescribeCacheSubnetGroupsCommandOutput,
1006
- SdkError | CacheSubnetGroupNotFoundFaultError
1051
+ Cause.TimeoutException | SdkError | CacheSubnetGroupNotFoundFaultError
1007
1052
  >;
1008
1053
 
1009
1054
  /**
@@ -1014,7 +1059,7 @@ interface ElastiCacheService$ {
1014
1059
  options?: HttpHandlerOptions,
1015
1060
  ): Effect.Effect<
1016
1061
  DescribeEngineDefaultParametersCommandOutput,
1017
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError
1062
+ Cause.TimeoutException | SdkError | InvalidParameterCombinationError | InvalidParameterValueError
1018
1063
  >;
1019
1064
 
1020
1065
  /**
@@ -1025,7 +1070,7 @@ interface ElastiCacheService$ {
1025
1070
  options?: HttpHandlerOptions,
1026
1071
  ): Effect.Effect<
1027
1072
  DescribeEventsCommandOutput,
1028
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError
1073
+ Cause.TimeoutException | SdkError | InvalidParameterCombinationError | InvalidParameterValueError
1029
1074
  >;
1030
1075
 
1031
1076
  /**
@@ -1036,7 +1081,11 @@ interface ElastiCacheService$ {
1036
1081
  options?: HttpHandlerOptions,
1037
1082
  ): Effect.Effect<
1038
1083
  DescribeGlobalReplicationGroupsCommandOutput,
1039
- SdkError | GlobalReplicationGroupNotFoundFaultError | InvalidParameterCombinationError | InvalidParameterValueError
1084
+ | Cause.TimeoutException
1085
+ | SdkError
1086
+ | GlobalReplicationGroupNotFoundFaultError
1087
+ | InvalidParameterCombinationError
1088
+ | InvalidParameterValueError
1040
1089
  >;
1041
1090
 
1042
1091
  /**
@@ -1047,7 +1096,11 @@ interface ElastiCacheService$ {
1047
1096
  options?: HttpHandlerOptions,
1048
1097
  ): Effect.Effect<
1049
1098
  DescribeReplicationGroupsCommandOutput,
1050
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError | ReplicationGroupNotFoundFaultError
1099
+ | Cause.TimeoutException
1100
+ | SdkError
1101
+ | InvalidParameterCombinationError
1102
+ | InvalidParameterValueError
1103
+ | ReplicationGroupNotFoundFaultError
1051
1104
  >;
1052
1105
 
1053
1106
  /**
@@ -1058,7 +1111,11 @@ interface ElastiCacheService$ {
1058
1111
  options?: HttpHandlerOptions,
1059
1112
  ): Effect.Effect<
1060
1113
  DescribeReservedCacheNodesCommandOutput,
1061
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError | ReservedCacheNodeNotFoundFaultError
1114
+ | Cause.TimeoutException
1115
+ | SdkError
1116
+ | InvalidParameterCombinationError
1117
+ | InvalidParameterValueError
1118
+ | ReservedCacheNodeNotFoundFaultError
1062
1119
  >;
1063
1120
 
1064
1121
  /**
@@ -1069,6 +1126,7 @@ interface ElastiCacheService$ {
1069
1126
  options?: HttpHandlerOptions,
1070
1127
  ): Effect.Effect<
1071
1128
  DescribeReservedCacheNodesOfferingsCommandOutput,
1129
+ | Cause.TimeoutException
1072
1130
  | SdkError
1073
1131
  | InvalidParameterCombinationError
1074
1132
  | InvalidParameterValueError
@@ -1083,6 +1141,7 @@ interface ElastiCacheService$ {
1083
1141
  options?: HttpHandlerOptions,
1084
1142
  ): Effect.Effect<
1085
1143
  DescribeServerlessCacheSnapshotsCommandOutput,
1144
+ | Cause.TimeoutException
1086
1145
  | SdkError
1087
1146
  | InvalidParameterCombinationError
1088
1147
  | InvalidParameterValueError
@@ -1098,7 +1157,11 @@ interface ElastiCacheService$ {
1098
1157
  options?: HttpHandlerOptions,
1099
1158
  ): Effect.Effect<
1100
1159
  DescribeServerlessCachesCommandOutput,
1101
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError | ServerlessCacheNotFoundFaultError
1160
+ | Cause.TimeoutException
1161
+ | SdkError
1162
+ | InvalidParameterCombinationError
1163
+ | InvalidParameterValueError
1164
+ | ServerlessCacheNotFoundFaultError
1102
1165
  >;
1103
1166
 
1104
1167
  /**
@@ -1109,7 +1172,11 @@ interface ElastiCacheService$ {
1109
1172
  options?: HttpHandlerOptions,
1110
1173
  ): Effect.Effect<
1111
1174
  DescribeServiceUpdatesCommandOutput,
1112
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError | ServiceUpdateNotFoundFaultError
1175
+ | Cause.TimeoutException
1176
+ | SdkError
1177
+ | InvalidParameterCombinationError
1178
+ | InvalidParameterValueError
1179
+ | ServiceUpdateNotFoundFaultError
1113
1180
  >;
1114
1181
 
1115
1182
  /**
@@ -1120,6 +1187,7 @@ interface ElastiCacheService$ {
1120
1187
  options?: HttpHandlerOptions,
1121
1188
  ): Effect.Effect<
1122
1189
  DescribeSnapshotsCommandOutput,
1190
+ | Cause.TimeoutException
1123
1191
  | SdkError
1124
1192
  | CacheClusterNotFoundFaultError
1125
1193
  | InvalidParameterCombinationError
@@ -1135,7 +1203,7 @@ interface ElastiCacheService$ {
1135
1203
  options?: HttpHandlerOptions,
1136
1204
  ): Effect.Effect<
1137
1205
  DescribeUpdateActionsCommandOutput,
1138
- SdkError | InvalidParameterCombinationError | InvalidParameterValueError
1206
+ Cause.TimeoutException | SdkError | InvalidParameterCombinationError | InvalidParameterValueError
1139
1207
  >;
1140
1208
 
1141
1209
  /**
@@ -1146,7 +1214,11 @@ interface ElastiCacheService$ {
1146
1214
  options?: HttpHandlerOptions,
1147
1215
  ): Effect.Effect<
1148
1216
  DescribeUserGroupsCommandOutput,
1149
- SdkError | InvalidParameterCombinationError | ServiceLinkedRoleNotFoundFaultError | UserGroupNotFoundFaultError
1217
+ | Cause.TimeoutException
1218
+ | SdkError
1219
+ | InvalidParameterCombinationError
1220
+ | ServiceLinkedRoleNotFoundFaultError
1221
+ | UserGroupNotFoundFaultError
1150
1222
  >;
1151
1223
 
1152
1224
  /**
@@ -1157,7 +1229,11 @@ interface ElastiCacheService$ {
1157
1229
  options?: HttpHandlerOptions,
1158
1230
  ): Effect.Effect<
1159
1231
  DescribeUsersCommandOutput,
1160
- SdkError | InvalidParameterCombinationError | ServiceLinkedRoleNotFoundFaultError | UserNotFoundFaultError
1232
+ | Cause.TimeoutException
1233
+ | SdkError
1234
+ | InvalidParameterCombinationError
1235
+ | ServiceLinkedRoleNotFoundFaultError
1236
+ | UserNotFoundFaultError
1161
1237
  >;
1162
1238
 
1163
1239
  /**
@@ -1168,6 +1244,7 @@ interface ElastiCacheService$ {
1168
1244
  options?: HttpHandlerOptions,
1169
1245
  ): Effect.Effect<
1170
1246
  DisassociateGlobalReplicationGroupCommandOutput,
1247
+ | Cause.TimeoutException
1171
1248
  | SdkError
1172
1249
  | GlobalReplicationGroupNotFoundFaultError
1173
1250
  | InvalidGlobalReplicationGroupStateFaultError
@@ -1183,6 +1260,7 @@ interface ElastiCacheService$ {
1183
1260
  options?: HttpHandlerOptions,
1184
1261
  ): Effect.Effect<
1185
1262
  ExportServerlessCacheSnapshotCommandOutput,
1263
+ | Cause.TimeoutException
1186
1264
  | SdkError
1187
1265
  | InvalidParameterValueError
1188
1266
  | InvalidServerlessCacheSnapshotStateFaultError
@@ -1198,6 +1276,7 @@ interface ElastiCacheService$ {
1198
1276
  options?: HttpHandlerOptions,
1199
1277
  ): Effect.Effect<
1200
1278
  FailoverGlobalReplicationGroupCommandOutput,
1279
+ | Cause.TimeoutException
1201
1280
  | SdkError
1202
1281
  | GlobalReplicationGroupNotFoundFaultError
1203
1282
  | InvalidGlobalReplicationGroupStateFaultError
@@ -1213,6 +1292,7 @@ interface ElastiCacheService$ {
1213
1292
  options?: HttpHandlerOptions,
1214
1293
  ): Effect.Effect<
1215
1294
  IncreaseNodeGroupsInGlobalReplicationGroupCommandOutput,
1295
+ | Cause.TimeoutException
1216
1296
  | SdkError
1217
1297
  | GlobalReplicationGroupNotFoundFaultError
1218
1298
  | InvalidGlobalReplicationGroupStateFaultError
@@ -1227,6 +1307,7 @@ interface ElastiCacheService$ {
1227
1307
  options?: HttpHandlerOptions,
1228
1308
  ): Effect.Effect<
1229
1309
  IncreaseReplicaCountCommandOutput,
1310
+ | Cause.TimeoutException
1230
1311
  | SdkError
1231
1312
  | ClusterQuotaForCustomerExceededFaultError
1232
1313
  | InsufficientCacheClusterCapacityFaultError
@@ -1250,6 +1331,7 @@ interface ElastiCacheService$ {
1250
1331
  options?: HttpHandlerOptions,
1251
1332
  ): Effect.Effect<
1252
1333
  ListAllowedNodeTypeModificationsCommandOutput,
1334
+ | Cause.TimeoutException
1253
1335
  | SdkError
1254
1336
  | CacheClusterNotFoundFaultError
1255
1337
  | InvalidParameterCombinationError
@@ -1265,6 +1347,7 @@ interface ElastiCacheService$ {
1265
1347
  options?: HttpHandlerOptions,
1266
1348
  ): Effect.Effect<
1267
1349
  ListTagsForResourceCommandOutput,
1350
+ | Cause.TimeoutException
1268
1351
  | SdkError
1269
1352
  | CacheClusterNotFoundFaultError
1270
1353
  | CacheParameterGroupNotFoundFaultError
@@ -1291,6 +1374,7 @@ interface ElastiCacheService$ {
1291
1374
  options?: HttpHandlerOptions,
1292
1375
  ): Effect.Effect<
1293
1376
  ModifyCacheClusterCommandOutput,
1377
+ | Cause.TimeoutException
1294
1378
  | SdkError
1295
1379
  | CacheClusterNotFoundFaultError
1296
1380
  | CacheParameterGroupNotFoundFaultError
@@ -1313,6 +1397,7 @@ interface ElastiCacheService$ {
1313
1397
  options?: HttpHandlerOptions,
1314
1398
  ): Effect.Effect<
1315
1399
  ModifyCacheParameterGroupCommandOutput,
1400
+ | Cause.TimeoutException
1316
1401
  | SdkError
1317
1402
  | CacheParameterGroupNotFoundFaultError
1318
1403
  | InvalidCacheParameterGroupStateFaultError
@@ -1329,6 +1414,7 @@ interface ElastiCacheService$ {
1329
1414
  options?: HttpHandlerOptions,
1330
1415
  ): Effect.Effect<
1331
1416
  ModifyCacheSubnetGroupCommandOutput,
1417
+ | Cause.TimeoutException
1332
1418
  | SdkError
1333
1419
  | CacheSubnetGroupNotFoundFaultError
1334
1420
  | CacheSubnetQuotaExceededFaultError
@@ -1345,6 +1431,7 @@ interface ElastiCacheService$ {
1345
1431
  options?: HttpHandlerOptions,
1346
1432
  ): Effect.Effect<
1347
1433
  ModifyGlobalReplicationGroupCommandOutput,
1434
+ | Cause.TimeoutException
1348
1435
  | SdkError
1349
1436
  | GlobalReplicationGroupNotFoundFaultError
1350
1437
  | InvalidGlobalReplicationGroupStateFaultError
@@ -1359,6 +1446,7 @@ interface ElastiCacheService$ {
1359
1446
  options?: HttpHandlerOptions,
1360
1447
  ): Effect.Effect<
1361
1448
  ModifyReplicationGroupCommandOutput,
1449
+ | Cause.TimeoutException
1362
1450
  | SdkError
1363
1451
  | CacheClusterNotFoundFaultError
1364
1452
  | CacheParameterGroupNotFoundFaultError
@@ -1386,6 +1474,7 @@ interface ElastiCacheService$ {
1386
1474
  options?: HttpHandlerOptions,
1387
1475
  ): Effect.Effect<
1388
1476
  ModifyReplicationGroupShardConfigurationCommandOutput,
1477
+ | Cause.TimeoutException
1389
1478
  | SdkError
1390
1479
  | InsufficientCacheClusterCapacityFaultError
1391
1480
  | InvalidCacheClusterStateFaultError
@@ -1407,6 +1496,7 @@ interface ElastiCacheService$ {
1407
1496
  options?: HttpHandlerOptions,
1408
1497
  ): Effect.Effect<
1409
1498
  ModifyServerlessCacheCommandOutput,
1499
+ | Cause.TimeoutException
1410
1500
  | SdkError
1411
1501
  | InvalidCredentialsError
1412
1502
  | InvalidParameterCombinationError
@@ -1426,6 +1516,7 @@ interface ElastiCacheService$ {
1426
1516
  options?: HttpHandlerOptions,
1427
1517
  ): Effect.Effect<
1428
1518
  ModifyUserCommandOutput,
1519
+ | Cause.TimeoutException
1429
1520
  | SdkError
1430
1521
  | InvalidParameterCombinationError
1431
1522
  | InvalidParameterValueError
@@ -1442,6 +1533,7 @@ interface ElastiCacheService$ {
1442
1533
  options?: HttpHandlerOptions,
1443
1534
  ): Effect.Effect<
1444
1535
  ModifyUserGroupCommandOutput,
1536
+ | Cause.TimeoutException
1445
1537
  | SdkError
1446
1538
  | DefaultUserRequiredError
1447
1539
  | DuplicateUserNameFaultError
@@ -1461,6 +1553,7 @@ interface ElastiCacheService$ {
1461
1553
  options?: HttpHandlerOptions,
1462
1554
  ): Effect.Effect<
1463
1555
  PurchaseReservedCacheNodesOfferingCommandOutput,
1556
+ | Cause.TimeoutException
1464
1557
  | SdkError
1465
1558
  | InvalidParameterCombinationError
1466
1559
  | InvalidParameterValueError
@@ -1478,6 +1571,7 @@ interface ElastiCacheService$ {
1478
1571
  options?: HttpHandlerOptions,
1479
1572
  ): Effect.Effect<
1480
1573
  RebalanceSlotsInGlobalReplicationGroupCommandOutput,
1574
+ | Cause.TimeoutException
1481
1575
  | SdkError
1482
1576
  | GlobalReplicationGroupNotFoundFaultError
1483
1577
  | InvalidGlobalReplicationGroupStateFaultError
@@ -1492,7 +1586,7 @@ interface ElastiCacheService$ {
1492
1586
  options?: HttpHandlerOptions,
1493
1587
  ): Effect.Effect<
1494
1588
  RebootCacheClusterCommandOutput,
1495
- SdkError | CacheClusterNotFoundFaultError | InvalidCacheClusterStateFaultError
1589
+ Cause.TimeoutException | SdkError | CacheClusterNotFoundFaultError | InvalidCacheClusterStateFaultError
1496
1590
  >;
1497
1591
 
1498
1592
  /**
@@ -1503,6 +1597,7 @@ interface ElastiCacheService$ {
1503
1597
  options?: HttpHandlerOptions,
1504
1598
  ): Effect.Effect<
1505
1599
  RemoveTagsFromResourceCommandOutput,
1600
+ | Cause.TimeoutException
1506
1601
  | SdkError
1507
1602
  | CacheClusterNotFoundFaultError
1508
1603
  | CacheParameterGroupNotFoundFaultError
@@ -1530,6 +1625,7 @@ interface ElastiCacheService$ {
1530
1625
  options?: HttpHandlerOptions,
1531
1626
  ): Effect.Effect<
1532
1627
  ResetCacheParameterGroupCommandOutput,
1628
+ | Cause.TimeoutException
1533
1629
  | SdkError
1534
1630
  | CacheParameterGroupNotFoundFaultError
1535
1631
  | InvalidCacheParameterGroupStateFaultError
@@ -1546,6 +1642,7 @@ interface ElastiCacheService$ {
1546
1642
  options?: HttpHandlerOptions,
1547
1643
  ): Effect.Effect<
1548
1644
  RevokeCacheSecurityGroupIngressCommandOutput,
1645
+ | Cause.TimeoutException
1549
1646
  | SdkError
1550
1647
  | AuthorizationNotFoundFaultError
1551
1648
  | CacheSecurityGroupNotFoundFaultError
@@ -1562,6 +1659,7 @@ interface ElastiCacheService$ {
1562
1659
  options?: HttpHandlerOptions,
1563
1660
  ): Effect.Effect<
1564
1661
  StartMigrationCommandOutput,
1662
+ | Cause.TimeoutException
1565
1663
  | SdkError
1566
1664
  | InvalidParameterValueError
1567
1665
  | InvalidReplicationGroupStateFaultError
@@ -1577,6 +1675,7 @@ interface ElastiCacheService$ {
1577
1675
  options?: HttpHandlerOptions,
1578
1676
  ): Effect.Effect<
1579
1677
  TestFailoverCommandOutput,
1678
+ | Cause.TimeoutException
1580
1679
  | SdkError
1581
1680
  | APICallRateForCustomerExceededFaultError
1582
1681
  | InvalidCacheClusterStateFaultError
@@ -1597,6 +1696,7 @@ interface ElastiCacheService$ {
1597
1696
  options?: HttpHandlerOptions,
1598
1697
  ): Effect.Effect<
1599
1698
  TestMigrationCommandOutput,
1699
+ | Cause.TimeoutException
1600
1700
  | SdkError
1601
1701
  | InvalidParameterValueError
1602
1702
  | InvalidReplicationGroupStateFaultError
@@ -1612,7 +1712,7 @@ interface ElastiCacheService$ {
1612
1712
  export const makeElastiCacheService = Effect.gen(function*() {
1613
1713
  const client = yield* Instance.ElastiCacheClientInstance;
1614
1714
 
1615
- return Service.fromClientAndCommands<ElastiCacheService$>(
1715
+ return yield* Service.fromClientAndCommands<ElastiCacheService$>(
1616
1716
  client,
1617
1717
  commands,
1618
1718
  {