@effect-aws/client-ses 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.
package/src/SESService.ts CHANGED
@@ -220,6 +220,7 @@ import {
220
220
  } from "@aws-sdk/client-ses";
221
221
  import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
222
222
  import { Service } from "@effect-aws/commons";
223
+ import type { Cause } from "effect";
223
224
  import { Effect, Layer } from "effect";
224
225
  import type {
225
226
  AccountSendingPausedError,
@@ -346,7 +347,7 @@ interface SESService$ {
346
347
  options?: HttpHandlerOptions,
347
348
  ): Effect.Effect<
348
349
  CloneReceiptRuleSetCommandOutput,
349
- SdkError | AlreadyExistsError | LimitExceededError | RuleSetDoesNotExistError
350
+ Cause.TimeoutException | SdkError | AlreadyExistsError | LimitExceededError | RuleSetDoesNotExistError
350
351
  >;
351
352
 
352
353
  /**
@@ -357,7 +358,11 @@ interface SESService$ {
357
358
  options?: HttpHandlerOptions,
358
359
  ): Effect.Effect<
359
360
  CreateConfigurationSetCommandOutput,
360
- SdkError | ConfigurationSetAlreadyExistsError | InvalidConfigurationSetError | LimitExceededError
361
+ | Cause.TimeoutException
362
+ | SdkError
363
+ | ConfigurationSetAlreadyExistsError
364
+ | InvalidConfigurationSetError
365
+ | LimitExceededError
361
366
  >;
362
367
 
363
368
  /**
@@ -368,6 +373,7 @@ interface SESService$ {
368
373
  options?: HttpHandlerOptions,
369
374
  ): Effect.Effect<
370
375
  CreateConfigurationSetEventDestinationCommandOutput,
376
+ | Cause.TimeoutException
371
377
  | SdkError
372
378
  | ConfigurationSetDoesNotExistError
373
379
  | EventDestinationAlreadyExistsError
@@ -385,7 +391,11 @@ interface SESService$ {
385
391
  options?: HttpHandlerOptions,
386
392
  ): Effect.Effect<
387
393
  CreateConfigurationSetTrackingOptionsCommandOutput,
388
- SdkError | ConfigurationSetDoesNotExistError | InvalidTrackingOptionsError | TrackingOptionsAlreadyExistsError
394
+ | Cause.TimeoutException
395
+ | SdkError
396
+ | ConfigurationSetDoesNotExistError
397
+ | InvalidTrackingOptionsError
398
+ | TrackingOptionsAlreadyExistsError
389
399
  >;
390
400
 
391
401
  /**
@@ -396,6 +406,7 @@ interface SESService$ {
396
406
  options?: HttpHandlerOptions,
397
407
  ): Effect.Effect<
398
408
  CreateCustomVerificationEmailTemplateCommandOutput,
409
+ | Cause.TimeoutException
399
410
  | SdkError
400
411
  | CustomVerificationEmailInvalidContentError
401
412
  | CustomVerificationEmailTemplateAlreadyExistsError
@@ -411,7 +422,7 @@ interface SESService$ {
411
422
  options?: HttpHandlerOptions,
412
423
  ): Effect.Effect<
413
424
  CreateReceiptFilterCommandOutput,
414
- SdkError | AlreadyExistsError | LimitExceededError
425
+ Cause.TimeoutException | SdkError | AlreadyExistsError | LimitExceededError
415
426
  >;
416
427
 
417
428
  /**
@@ -422,6 +433,7 @@ interface SESService$ {
422
433
  options?: HttpHandlerOptions,
423
434
  ): Effect.Effect<
424
435
  CreateReceiptRuleCommandOutput,
436
+ | Cause.TimeoutException
425
437
  | SdkError
426
438
  | AlreadyExistsError
427
439
  | InvalidLambdaFunctionError
@@ -440,7 +452,7 @@ interface SESService$ {
440
452
  options?: HttpHandlerOptions,
441
453
  ): Effect.Effect<
442
454
  CreateReceiptRuleSetCommandOutput,
443
- SdkError | AlreadyExistsError | LimitExceededError
455
+ Cause.TimeoutException | SdkError | AlreadyExistsError | LimitExceededError
444
456
  >;
445
457
 
446
458
  /**
@@ -451,7 +463,7 @@ interface SESService$ {
451
463
  options?: HttpHandlerOptions,
452
464
  ): Effect.Effect<
453
465
  CreateTemplateCommandOutput,
454
- SdkError | AlreadyExistsError | InvalidTemplateError | LimitExceededError
466
+ Cause.TimeoutException | SdkError | AlreadyExistsError | InvalidTemplateError | LimitExceededError
455
467
  >;
456
468
 
457
469
  /**
@@ -462,7 +474,7 @@ interface SESService$ {
462
474
  options?: HttpHandlerOptions,
463
475
  ): Effect.Effect<
464
476
  DeleteConfigurationSetCommandOutput,
465
- SdkError | ConfigurationSetDoesNotExistError
477
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError
466
478
  >;
467
479
 
468
480
  /**
@@ -473,7 +485,7 @@ interface SESService$ {
473
485
  options?: HttpHandlerOptions,
474
486
  ): Effect.Effect<
475
487
  DeleteConfigurationSetEventDestinationCommandOutput,
476
- SdkError | ConfigurationSetDoesNotExistError | EventDestinationDoesNotExistError
488
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError | EventDestinationDoesNotExistError
477
489
  >;
478
490
 
479
491
  /**
@@ -484,7 +496,7 @@ interface SESService$ {
484
496
  options?: HttpHandlerOptions,
485
497
  ): Effect.Effect<
486
498
  DeleteConfigurationSetTrackingOptionsCommandOutput,
487
- SdkError | ConfigurationSetDoesNotExistError | TrackingOptionsDoesNotExistError
499
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError | TrackingOptionsDoesNotExistError
488
500
  >;
489
501
 
490
502
  /**
@@ -495,7 +507,7 @@ interface SESService$ {
495
507
  options?: HttpHandlerOptions,
496
508
  ): Effect.Effect<
497
509
  DeleteCustomVerificationEmailTemplateCommandOutput,
498
- SdkError
510
+ Cause.TimeoutException | SdkError
499
511
  >;
500
512
 
501
513
  /**
@@ -506,7 +518,7 @@ interface SESService$ {
506
518
  options?: HttpHandlerOptions,
507
519
  ): Effect.Effect<
508
520
  DeleteIdentityCommandOutput,
509
- SdkError
521
+ Cause.TimeoutException | SdkError
510
522
  >;
511
523
 
512
524
  /**
@@ -517,7 +529,7 @@ interface SESService$ {
517
529
  options?: HttpHandlerOptions,
518
530
  ): Effect.Effect<
519
531
  DeleteIdentityPolicyCommandOutput,
520
- SdkError
532
+ Cause.TimeoutException | SdkError
521
533
  >;
522
534
 
523
535
  /**
@@ -528,7 +540,7 @@ interface SESService$ {
528
540
  options?: HttpHandlerOptions,
529
541
  ): Effect.Effect<
530
542
  DeleteReceiptFilterCommandOutput,
531
- SdkError
543
+ Cause.TimeoutException | SdkError
532
544
  >;
533
545
 
534
546
  /**
@@ -539,7 +551,7 @@ interface SESService$ {
539
551
  options?: HttpHandlerOptions,
540
552
  ): Effect.Effect<
541
553
  DeleteReceiptRuleCommandOutput,
542
- SdkError | RuleSetDoesNotExistError
554
+ Cause.TimeoutException | SdkError | RuleSetDoesNotExistError
543
555
  >;
544
556
 
545
557
  /**
@@ -550,7 +562,7 @@ interface SESService$ {
550
562
  options?: HttpHandlerOptions,
551
563
  ): Effect.Effect<
552
564
  DeleteReceiptRuleSetCommandOutput,
553
- SdkError | CannotDeleteError
565
+ Cause.TimeoutException | SdkError | CannotDeleteError
554
566
  >;
555
567
 
556
568
  /**
@@ -561,7 +573,7 @@ interface SESService$ {
561
573
  options?: HttpHandlerOptions,
562
574
  ): Effect.Effect<
563
575
  DeleteTemplateCommandOutput,
564
- SdkError
576
+ Cause.TimeoutException | SdkError
565
577
  >;
566
578
 
567
579
  /**
@@ -572,7 +584,7 @@ interface SESService$ {
572
584
  options?: HttpHandlerOptions,
573
585
  ): Effect.Effect<
574
586
  DeleteVerifiedEmailAddressCommandOutput,
575
- SdkError
587
+ Cause.TimeoutException | SdkError
576
588
  >;
577
589
 
578
590
  /**
@@ -583,7 +595,7 @@ interface SESService$ {
583
595
  options?: HttpHandlerOptions,
584
596
  ): Effect.Effect<
585
597
  DescribeActiveReceiptRuleSetCommandOutput,
586
- SdkError
598
+ Cause.TimeoutException | SdkError
587
599
  >;
588
600
 
589
601
  /**
@@ -594,7 +606,7 @@ interface SESService$ {
594
606
  options?: HttpHandlerOptions,
595
607
  ): Effect.Effect<
596
608
  DescribeConfigurationSetCommandOutput,
597
- SdkError | ConfigurationSetDoesNotExistError
609
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError
598
610
  >;
599
611
 
600
612
  /**
@@ -605,7 +617,7 @@ interface SESService$ {
605
617
  options?: HttpHandlerOptions,
606
618
  ): Effect.Effect<
607
619
  DescribeReceiptRuleCommandOutput,
608
- SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError
620
+ Cause.TimeoutException | SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError
609
621
  >;
610
622
 
611
623
  /**
@@ -616,7 +628,7 @@ interface SESService$ {
616
628
  options?: HttpHandlerOptions,
617
629
  ): Effect.Effect<
618
630
  DescribeReceiptRuleSetCommandOutput,
619
- SdkError | RuleSetDoesNotExistError
631
+ Cause.TimeoutException | SdkError | RuleSetDoesNotExistError
620
632
  >;
621
633
 
622
634
  /**
@@ -627,7 +639,7 @@ interface SESService$ {
627
639
  options?: HttpHandlerOptions,
628
640
  ): Effect.Effect<
629
641
  GetAccountSendingEnabledCommandOutput,
630
- SdkError
642
+ Cause.TimeoutException | SdkError
631
643
  >;
632
644
 
633
645
  /**
@@ -638,7 +650,7 @@ interface SESService$ {
638
650
  options?: HttpHandlerOptions,
639
651
  ): Effect.Effect<
640
652
  GetCustomVerificationEmailTemplateCommandOutput,
641
- SdkError | CustomVerificationEmailTemplateDoesNotExistError
653
+ Cause.TimeoutException | SdkError | CustomVerificationEmailTemplateDoesNotExistError
642
654
  >;
643
655
 
644
656
  /**
@@ -649,7 +661,7 @@ interface SESService$ {
649
661
  options?: HttpHandlerOptions,
650
662
  ): Effect.Effect<
651
663
  GetIdentityDkimAttributesCommandOutput,
652
- SdkError
664
+ Cause.TimeoutException | SdkError
653
665
  >;
654
666
 
655
667
  /**
@@ -660,7 +672,7 @@ interface SESService$ {
660
672
  options?: HttpHandlerOptions,
661
673
  ): Effect.Effect<
662
674
  GetIdentityMailFromDomainAttributesCommandOutput,
663
- SdkError
675
+ Cause.TimeoutException | SdkError
664
676
  >;
665
677
 
666
678
  /**
@@ -671,7 +683,7 @@ interface SESService$ {
671
683
  options?: HttpHandlerOptions,
672
684
  ): Effect.Effect<
673
685
  GetIdentityNotificationAttributesCommandOutput,
674
- SdkError
686
+ Cause.TimeoutException | SdkError
675
687
  >;
676
688
 
677
689
  /**
@@ -682,7 +694,7 @@ interface SESService$ {
682
694
  options?: HttpHandlerOptions,
683
695
  ): Effect.Effect<
684
696
  GetIdentityPoliciesCommandOutput,
685
- SdkError
697
+ Cause.TimeoutException | SdkError
686
698
  >;
687
699
 
688
700
  /**
@@ -693,7 +705,7 @@ interface SESService$ {
693
705
  options?: HttpHandlerOptions,
694
706
  ): Effect.Effect<
695
707
  GetIdentityVerificationAttributesCommandOutput,
696
- SdkError
708
+ Cause.TimeoutException | SdkError
697
709
  >;
698
710
 
699
711
  /**
@@ -704,7 +716,7 @@ interface SESService$ {
704
716
  options?: HttpHandlerOptions,
705
717
  ): Effect.Effect<
706
718
  GetSendQuotaCommandOutput,
707
- SdkError
719
+ Cause.TimeoutException | SdkError
708
720
  >;
709
721
 
710
722
  /**
@@ -715,7 +727,7 @@ interface SESService$ {
715
727
  options?: HttpHandlerOptions,
716
728
  ): Effect.Effect<
717
729
  GetSendStatisticsCommandOutput,
718
- SdkError
730
+ Cause.TimeoutException | SdkError
719
731
  >;
720
732
 
721
733
  /**
@@ -726,7 +738,7 @@ interface SESService$ {
726
738
  options?: HttpHandlerOptions,
727
739
  ): Effect.Effect<
728
740
  GetTemplateCommandOutput,
729
- SdkError | TemplateDoesNotExistError
741
+ Cause.TimeoutException | SdkError | TemplateDoesNotExistError
730
742
  >;
731
743
 
732
744
  /**
@@ -737,7 +749,7 @@ interface SESService$ {
737
749
  options?: HttpHandlerOptions,
738
750
  ): Effect.Effect<
739
751
  ListConfigurationSetsCommandOutput,
740
- SdkError
752
+ Cause.TimeoutException | SdkError
741
753
  >;
742
754
 
743
755
  /**
@@ -748,7 +760,7 @@ interface SESService$ {
748
760
  options?: HttpHandlerOptions,
749
761
  ): Effect.Effect<
750
762
  ListCustomVerificationEmailTemplatesCommandOutput,
751
- SdkError
763
+ Cause.TimeoutException | SdkError
752
764
  >;
753
765
 
754
766
  /**
@@ -759,7 +771,7 @@ interface SESService$ {
759
771
  options?: HttpHandlerOptions,
760
772
  ): Effect.Effect<
761
773
  ListIdentitiesCommandOutput,
762
- SdkError
774
+ Cause.TimeoutException | SdkError
763
775
  >;
764
776
 
765
777
  /**
@@ -770,7 +782,7 @@ interface SESService$ {
770
782
  options?: HttpHandlerOptions,
771
783
  ): Effect.Effect<
772
784
  ListIdentityPoliciesCommandOutput,
773
- SdkError
785
+ Cause.TimeoutException | SdkError
774
786
  >;
775
787
 
776
788
  /**
@@ -781,7 +793,7 @@ interface SESService$ {
781
793
  options?: HttpHandlerOptions,
782
794
  ): Effect.Effect<
783
795
  ListReceiptFiltersCommandOutput,
784
- SdkError
796
+ Cause.TimeoutException | SdkError
785
797
  >;
786
798
 
787
799
  /**
@@ -792,7 +804,7 @@ interface SESService$ {
792
804
  options?: HttpHandlerOptions,
793
805
  ): Effect.Effect<
794
806
  ListReceiptRuleSetsCommandOutput,
795
- SdkError
807
+ Cause.TimeoutException | SdkError
796
808
  >;
797
809
 
798
810
  /**
@@ -803,7 +815,7 @@ interface SESService$ {
803
815
  options?: HttpHandlerOptions,
804
816
  ): Effect.Effect<
805
817
  ListTemplatesCommandOutput,
806
- SdkError
818
+ Cause.TimeoutException | SdkError
807
819
  >;
808
820
 
809
821
  /**
@@ -814,7 +826,7 @@ interface SESService$ {
814
826
  options?: HttpHandlerOptions,
815
827
  ): Effect.Effect<
816
828
  ListVerifiedEmailAddressesCommandOutput,
817
- SdkError
829
+ Cause.TimeoutException | SdkError
818
830
  >;
819
831
 
820
832
  /**
@@ -825,7 +837,7 @@ interface SESService$ {
825
837
  options?: HttpHandlerOptions,
826
838
  ): Effect.Effect<
827
839
  PutConfigurationSetDeliveryOptionsCommandOutput,
828
- SdkError | ConfigurationSetDoesNotExistError | InvalidDeliveryOptionsError
840
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError | InvalidDeliveryOptionsError
829
841
  >;
830
842
 
831
843
  /**
@@ -836,7 +848,7 @@ interface SESService$ {
836
848
  options?: HttpHandlerOptions,
837
849
  ): Effect.Effect<
838
850
  PutIdentityPolicyCommandOutput,
839
- SdkError | InvalidPolicyError
851
+ Cause.TimeoutException | SdkError | InvalidPolicyError
840
852
  >;
841
853
 
842
854
  /**
@@ -847,7 +859,7 @@ interface SESService$ {
847
859
  options?: HttpHandlerOptions,
848
860
  ): Effect.Effect<
849
861
  ReorderReceiptRuleSetCommandOutput,
850
- SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError
862
+ Cause.TimeoutException | SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError
851
863
  >;
852
864
 
853
865
  /**
@@ -858,7 +870,7 @@ interface SESService$ {
858
870
  options?: HttpHandlerOptions,
859
871
  ): Effect.Effect<
860
872
  SendBounceCommandOutput,
861
- SdkError | MessageRejectedError
873
+ Cause.TimeoutException | SdkError | MessageRejectedError
862
874
  >;
863
875
 
864
876
  /**
@@ -869,6 +881,7 @@ interface SESService$ {
869
881
  options?: HttpHandlerOptions,
870
882
  ): Effect.Effect<
871
883
  SendBulkTemplatedEmailCommandOutput,
884
+ | Cause.TimeoutException
872
885
  | SdkError
873
886
  | AccountSendingPausedError
874
887
  | ConfigurationSetDoesNotExistError
@@ -886,6 +899,7 @@ interface SESService$ {
886
899
  options?: HttpHandlerOptions,
887
900
  ): Effect.Effect<
888
901
  SendCustomVerificationEmailCommandOutput,
902
+ | Cause.TimeoutException
889
903
  | SdkError
890
904
  | ConfigurationSetDoesNotExistError
891
905
  | CustomVerificationEmailTemplateDoesNotExistError
@@ -902,6 +916,7 @@ interface SESService$ {
902
916
  options?: HttpHandlerOptions,
903
917
  ): Effect.Effect<
904
918
  SendEmailCommandOutput,
919
+ | Cause.TimeoutException
905
920
  | SdkError
906
921
  | AccountSendingPausedError
907
922
  | ConfigurationSetDoesNotExistError
@@ -918,6 +933,7 @@ interface SESService$ {
918
933
  options?: HttpHandlerOptions,
919
934
  ): Effect.Effect<
920
935
  SendRawEmailCommandOutput,
936
+ | Cause.TimeoutException
921
937
  | SdkError
922
938
  | AccountSendingPausedError
923
939
  | ConfigurationSetDoesNotExistError
@@ -934,6 +950,7 @@ interface SESService$ {
934
950
  options?: HttpHandlerOptions,
935
951
  ): Effect.Effect<
936
952
  SendTemplatedEmailCommandOutput,
953
+ | Cause.TimeoutException
937
954
  | SdkError
938
955
  | AccountSendingPausedError
939
956
  | ConfigurationSetDoesNotExistError
@@ -951,7 +968,7 @@ interface SESService$ {
951
968
  options?: HttpHandlerOptions,
952
969
  ): Effect.Effect<
953
970
  SetActiveReceiptRuleSetCommandOutput,
954
- SdkError | RuleSetDoesNotExistError
971
+ Cause.TimeoutException | SdkError | RuleSetDoesNotExistError
955
972
  >;
956
973
 
957
974
  /**
@@ -962,7 +979,7 @@ interface SESService$ {
962
979
  options?: HttpHandlerOptions,
963
980
  ): Effect.Effect<
964
981
  SetIdentityDkimEnabledCommandOutput,
965
- SdkError
982
+ Cause.TimeoutException | SdkError
966
983
  >;
967
984
 
968
985
  /**
@@ -973,7 +990,7 @@ interface SESService$ {
973
990
  options?: HttpHandlerOptions,
974
991
  ): Effect.Effect<
975
992
  SetIdentityFeedbackForwardingEnabledCommandOutput,
976
- SdkError
993
+ Cause.TimeoutException | SdkError
977
994
  >;
978
995
 
979
996
  /**
@@ -984,7 +1001,7 @@ interface SESService$ {
984
1001
  options?: HttpHandlerOptions,
985
1002
  ): Effect.Effect<
986
1003
  SetIdentityHeadersInNotificationsEnabledCommandOutput,
987
- SdkError
1004
+ Cause.TimeoutException | SdkError
988
1005
  >;
989
1006
 
990
1007
  /**
@@ -995,7 +1012,7 @@ interface SESService$ {
995
1012
  options?: HttpHandlerOptions,
996
1013
  ): Effect.Effect<
997
1014
  SetIdentityMailFromDomainCommandOutput,
998
- SdkError
1015
+ Cause.TimeoutException | SdkError
999
1016
  >;
1000
1017
 
1001
1018
  /**
@@ -1006,7 +1023,7 @@ interface SESService$ {
1006
1023
  options?: HttpHandlerOptions,
1007
1024
  ): Effect.Effect<
1008
1025
  SetIdentityNotificationTopicCommandOutput,
1009
- SdkError
1026
+ Cause.TimeoutException | SdkError
1010
1027
  >;
1011
1028
 
1012
1029
  /**
@@ -1017,7 +1034,7 @@ interface SESService$ {
1017
1034
  options?: HttpHandlerOptions,
1018
1035
  ): Effect.Effect<
1019
1036
  SetReceiptRulePositionCommandOutput,
1020
- SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError
1037
+ Cause.TimeoutException | SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError
1021
1038
  >;
1022
1039
 
1023
1040
  /**
@@ -1028,7 +1045,11 @@ interface SESService$ {
1028
1045
  options?: HttpHandlerOptions,
1029
1046
  ): Effect.Effect<
1030
1047
  TestRenderTemplateCommandOutput,
1031
- SdkError | InvalidRenderingParameterError | MissingRenderingAttributeError | TemplateDoesNotExistError
1048
+ | Cause.TimeoutException
1049
+ | SdkError
1050
+ | InvalidRenderingParameterError
1051
+ | MissingRenderingAttributeError
1052
+ | TemplateDoesNotExistError
1032
1053
  >;
1033
1054
 
1034
1055
  /**
@@ -1039,7 +1060,7 @@ interface SESService$ {
1039
1060
  options?: HttpHandlerOptions,
1040
1061
  ): Effect.Effect<
1041
1062
  UpdateAccountSendingEnabledCommandOutput,
1042
- SdkError
1063
+ Cause.TimeoutException | SdkError
1043
1064
  >;
1044
1065
 
1045
1066
  /**
@@ -1050,6 +1071,7 @@ interface SESService$ {
1050
1071
  options?: HttpHandlerOptions,
1051
1072
  ): Effect.Effect<
1052
1073
  UpdateConfigurationSetEventDestinationCommandOutput,
1074
+ | Cause.TimeoutException
1053
1075
  | SdkError
1054
1076
  | ConfigurationSetDoesNotExistError
1055
1077
  | EventDestinationDoesNotExistError
@@ -1066,7 +1088,7 @@ interface SESService$ {
1066
1088
  options?: HttpHandlerOptions,
1067
1089
  ): Effect.Effect<
1068
1090
  UpdateConfigurationSetReputationMetricsEnabledCommandOutput,
1069
- SdkError | ConfigurationSetDoesNotExistError
1091
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError
1070
1092
  >;
1071
1093
 
1072
1094
  /**
@@ -1077,7 +1099,7 @@ interface SESService$ {
1077
1099
  options?: HttpHandlerOptions,
1078
1100
  ): Effect.Effect<
1079
1101
  UpdateConfigurationSetSendingEnabledCommandOutput,
1080
- SdkError | ConfigurationSetDoesNotExistError
1102
+ Cause.TimeoutException | SdkError | ConfigurationSetDoesNotExistError
1081
1103
  >;
1082
1104
 
1083
1105
  /**
@@ -1088,7 +1110,11 @@ interface SESService$ {
1088
1110
  options?: HttpHandlerOptions,
1089
1111
  ): Effect.Effect<
1090
1112
  UpdateConfigurationSetTrackingOptionsCommandOutput,
1091
- SdkError | ConfigurationSetDoesNotExistError | InvalidTrackingOptionsError | TrackingOptionsDoesNotExistError
1113
+ | Cause.TimeoutException
1114
+ | SdkError
1115
+ | ConfigurationSetDoesNotExistError
1116
+ | InvalidTrackingOptionsError
1117
+ | TrackingOptionsDoesNotExistError
1092
1118
  >;
1093
1119
 
1094
1120
  /**
@@ -1099,6 +1125,7 @@ interface SESService$ {
1099
1125
  options?: HttpHandlerOptions,
1100
1126
  ): Effect.Effect<
1101
1127
  UpdateCustomVerificationEmailTemplateCommandOutput,
1128
+ | Cause.TimeoutException
1102
1129
  | SdkError
1103
1130
  | CustomVerificationEmailInvalidContentError
1104
1131
  | CustomVerificationEmailTemplateDoesNotExistError
@@ -1113,6 +1140,7 @@ interface SESService$ {
1113
1140
  options?: HttpHandlerOptions,
1114
1141
  ): Effect.Effect<
1115
1142
  UpdateReceiptRuleCommandOutput,
1143
+ | Cause.TimeoutException
1116
1144
  | SdkError
1117
1145
  | InvalidLambdaFunctionError
1118
1146
  | InvalidS3ConfigurationError
@@ -1130,7 +1158,7 @@ interface SESService$ {
1130
1158
  options?: HttpHandlerOptions,
1131
1159
  ): Effect.Effect<
1132
1160
  UpdateTemplateCommandOutput,
1133
- SdkError | InvalidTemplateError | TemplateDoesNotExistError
1161
+ Cause.TimeoutException | SdkError | InvalidTemplateError | TemplateDoesNotExistError
1134
1162
  >;
1135
1163
 
1136
1164
  /**
@@ -1141,7 +1169,7 @@ interface SESService$ {
1141
1169
  options?: HttpHandlerOptions,
1142
1170
  ): Effect.Effect<
1143
1171
  VerifyDomainDkimCommandOutput,
1144
- SdkError
1172
+ Cause.TimeoutException | SdkError
1145
1173
  >;
1146
1174
 
1147
1175
  /**
@@ -1152,7 +1180,7 @@ interface SESService$ {
1152
1180
  options?: HttpHandlerOptions,
1153
1181
  ): Effect.Effect<
1154
1182
  VerifyDomainIdentityCommandOutput,
1155
- SdkError
1183
+ Cause.TimeoutException | SdkError
1156
1184
  >;
1157
1185
 
1158
1186
  /**
@@ -1163,7 +1191,7 @@ interface SESService$ {
1163
1191
  options?: HttpHandlerOptions,
1164
1192
  ): Effect.Effect<
1165
1193
  VerifyEmailAddressCommandOutput,
1166
- SdkError
1194
+ Cause.TimeoutException | SdkError
1167
1195
  >;
1168
1196
 
1169
1197
  /**
@@ -1174,7 +1202,7 @@ interface SESService$ {
1174
1202
  options?: HttpHandlerOptions,
1175
1203
  ): Effect.Effect<
1176
1204
  VerifyEmailIdentityCommandOutput,
1177
- SdkError
1205
+ Cause.TimeoutException | SdkError
1178
1206
  >;
1179
1207
  }
1180
1208
 
@@ -1185,7 +1213,7 @@ interface SESService$ {
1185
1213
  export const makeSESService = Effect.gen(function*() {
1186
1214
  const client = yield* Instance.SESClientInstance;
1187
1215
 
1188
- return Service.fromClientAndCommands<SESService$>(
1216
+ return yield* Service.fromClientAndCommands<SESService$>(
1189
1217
  client,
1190
1218
  commands,
1191
1219
  {