@effect-aws/client-api-gateway-v2 1.10.7 → 2.0.0-beta.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.
Files changed (37) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -3
  3. package/dist/dts/ApiGatewayV2ClientInstance.d.ts +2 -2
  4. package/dist/dts/ApiGatewayV2ClientInstance.d.ts.map +1 -1
  5. package/dist/dts/ApiGatewayV2Service.d.ts +105 -107
  6. package/dist/dts/ApiGatewayV2Service.d.ts.map +1 -1
  7. package/dist/dts/ApiGatewayV2ServiceConfig.d.ts.map +1 -1
  8. package/dist/esm/ApiGatewayV2ClientInstance.js +3 -3
  9. package/dist/esm/ApiGatewayV2ClientInstance.js.map +1 -1
  10. package/dist/esm/ApiGatewayV2Service.js +2 -2
  11. package/dist/esm/ApiGatewayV2Service.js.map +1 -1
  12. package/dist/esm/ApiGatewayV2ServiceConfig.js +5 -6
  13. package/dist/esm/ApiGatewayV2ServiceConfig.js.map +1 -1
  14. package/package.json +8 -14
  15. package/src/ApiGatewayV2ClientInstance.ts +4 -4
  16. package/src/ApiGatewayV2Service.ts +106 -106
  17. package/src/ApiGatewayV2ServiceConfig.ts +6 -7
  18. package/dist/cjs/ApiGatewayV2ClientInstance.d.ts +0 -24
  19. package/dist/cjs/ApiGatewayV2ClientInstance.d.ts.map +0 -1
  20. package/dist/cjs/ApiGatewayV2ClientInstance.js +0 -50
  21. package/dist/cjs/ApiGatewayV2ClientInstance.js.map +0 -1
  22. package/dist/cjs/ApiGatewayV2Service.d.ts +0 -458
  23. package/dist/cjs/ApiGatewayV2Service.d.ts.map +0 -1
  24. package/dist/cjs/ApiGatewayV2Service.js +0 -162
  25. package/dist/cjs/ApiGatewayV2Service.js.map +0 -1
  26. package/dist/cjs/ApiGatewayV2ServiceConfig.d.ts +0 -25
  27. package/dist/cjs/ApiGatewayV2ServiceConfig.d.ts.map +0 -1
  28. package/dist/cjs/ApiGatewayV2ServiceConfig.js +0 -35
  29. package/dist/cjs/ApiGatewayV2ServiceConfig.js.map +0 -1
  30. package/dist/cjs/Errors.d.ts +0 -12
  31. package/dist/cjs/Errors.d.ts.map +0 -1
  32. package/dist/cjs/Errors.js +0 -11
  33. package/dist/cjs/Errors.js.map +0 -1
  34. package/dist/cjs/index.d.ts +0 -44
  35. package/dist/cjs/index.d.ts.map +0 -1
  36. package/dist/cjs/index.js +0 -56
  37. package/dist/cjs/index.js.map +0 -1
@@ -317,7 +317,7 @@ import {
317
317
  import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
318
318
  import { Service } from "@effect-aws/commons";
319
319
  import type { Cause } from "effect";
320
- import { Effect, Layer } from "effect";
320
+ import { Effect, Layer, ServiceMap } from "effect";
321
321
  import * as Instance from "./ApiGatewayV2ClientInstance.js";
322
322
  import * as ApiGatewayV2ServiceConfig from "./ApiGatewayV2ServiceConfig.js";
323
323
  import type {
@@ -447,7 +447,7 @@ interface ApiGatewayV2Service$ {
447
447
  options?: HttpHandlerOptions,
448
448
  ): Effect.Effect<
449
449
  CreateApiCommandOutput,
450
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
450
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
451
451
  >;
452
452
 
453
453
  /**
@@ -458,7 +458,7 @@ interface ApiGatewayV2Service$ {
458
458
  options?: HttpHandlerOptions,
459
459
  ): Effect.Effect<
460
460
  CreateApiMappingCommandOutput,
461
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
461
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
462
462
  >;
463
463
 
464
464
  /**
@@ -469,7 +469,7 @@ interface ApiGatewayV2Service$ {
469
469
  options?: HttpHandlerOptions,
470
470
  ): Effect.Effect<
471
471
  CreateAuthorizerCommandOutput,
472
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
472
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
473
473
  >;
474
474
 
475
475
  /**
@@ -480,7 +480,7 @@ interface ApiGatewayV2Service$ {
480
480
  options?: HttpHandlerOptions,
481
481
  ): Effect.Effect<
482
482
  CreateDeploymentCommandOutput,
483
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
483
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
484
484
  >;
485
485
 
486
486
  /**
@@ -491,7 +491,7 @@ interface ApiGatewayV2Service$ {
491
491
  options?: HttpHandlerOptions,
492
492
  ): Effect.Effect<
493
493
  CreateDomainNameCommandOutput,
494
- | Cause.TimeoutException
494
+ | Cause.TimeoutError
495
495
  | SdkError
496
496
  | AccessDeniedError
497
497
  | BadRequestError
@@ -508,7 +508,7 @@ interface ApiGatewayV2Service$ {
508
508
  options?: HttpHandlerOptions,
509
509
  ): Effect.Effect<
510
510
  CreateIntegrationCommandOutput,
511
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
511
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
512
512
  >;
513
513
 
514
514
  /**
@@ -519,7 +519,7 @@ interface ApiGatewayV2Service$ {
519
519
  options?: HttpHandlerOptions,
520
520
  ): Effect.Effect<
521
521
  CreateIntegrationResponseCommandOutput,
522
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
522
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
523
523
  >;
524
524
 
525
525
  /**
@@ -530,7 +530,7 @@ interface ApiGatewayV2Service$ {
530
530
  options?: HttpHandlerOptions,
531
531
  ): Effect.Effect<
532
532
  CreateModelCommandOutput,
533
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
533
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
534
534
  >;
535
535
 
536
536
  /**
@@ -541,7 +541,7 @@ interface ApiGatewayV2Service$ {
541
541
  options?: HttpHandlerOptions,
542
542
  ): Effect.Effect<
543
543
  CreatePortalCommandOutput,
544
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
544
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
545
545
  >;
546
546
 
547
547
  /**
@@ -552,7 +552,7 @@ interface ApiGatewayV2Service$ {
552
552
  options?: HttpHandlerOptions,
553
553
  ): Effect.Effect<
554
554
  CreatePortalProductCommandOutput,
555
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
555
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
556
556
  >;
557
557
 
558
558
  /**
@@ -563,7 +563,7 @@ interface ApiGatewayV2Service$ {
563
563
  options?: HttpHandlerOptions,
564
564
  ): Effect.Effect<
565
565
  CreateProductPageCommandOutput,
566
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
566
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
567
567
  >;
568
568
 
569
569
  /**
@@ -574,7 +574,7 @@ interface ApiGatewayV2Service$ {
574
574
  options?: HttpHandlerOptions,
575
575
  ): Effect.Effect<
576
576
  CreateProductRestEndpointPageCommandOutput,
577
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
577
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
578
578
  >;
579
579
 
580
580
  /**
@@ -585,7 +585,7 @@ interface ApiGatewayV2Service$ {
585
585
  options?: HttpHandlerOptions,
586
586
  ): Effect.Effect<
587
587
  CreateRouteCommandOutput,
588
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
588
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
589
589
  >;
590
590
 
591
591
  /**
@@ -596,7 +596,7 @@ interface ApiGatewayV2Service$ {
596
596
  options?: HttpHandlerOptions,
597
597
  ): Effect.Effect<
598
598
  CreateRouteResponseCommandOutput,
599
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
599
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
600
600
  >;
601
601
 
602
602
  /**
@@ -607,7 +607,7 @@ interface ApiGatewayV2Service$ {
607
607
  options?: HttpHandlerOptions,
608
608
  ): Effect.Effect<
609
609
  CreateRoutingRuleCommandOutput,
610
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
610
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
611
611
  >;
612
612
 
613
613
  /**
@@ -618,7 +618,7 @@ interface ApiGatewayV2Service$ {
618
618
  options?: HttpHandlerOptions,
619
619
  ): Effect.Effect<
620
620
  CreateStageCommandOutput,
621
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
621
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
622
622
  >;
623
623
 
624
624
  /**
@@ -629,7 +629,7 @@ interface ApiGatewayV2Service$ {
629
629
  options?: HttpHandlerOptions,
630
630
  ): Effect.Effect<
631
631
  CreateVpcLinkCommandOutput,
632
- Cause.TimeoutException | SdkError | BadRequestError | TooManyRequestsError
632
+ Cause.TimeoutError | SdkError | BadRequestError | TooManyRequestsError
633
633
  >;
634
634
 
635
635
  /**
@@ -640,7 +640,7 @@ interface ApiGatewayV2Service$ {
640
640
  options?: HttpHandlerOptions,
641
641
  ): Effect.Effect<
642
642
  DeleteAccessLogSettingsCommandOutput,
643
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
643
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
644
644
  >;
645
645
 
646
646
  /**
@@ -651,7 +651,7 @@ interface ApiGatewayV2Service$ {
651
651
  options?: HttpHandlerOptions,
652
652
  ): Effect.Effect<
653
653
  DeleteApiCommandOutput,
654
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
654
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
655
655
  >;
656
656
 
657
657
  /**
@@ -662,7 +662,7 @@ interface ApiGatewayV2Service$ {
662
662
  options?: HttpHandlerOptions,
663
663
  ): Effect.Effect<
664
664
  DeleteApiMappingCommandOutput,
665
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
665
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
666
666
  >;
667
667
 
668
668
  /**
@@ -673,7 +673,7 @@ interface ApiGatewayV2Service$ {
673
673
  options?: HttpHandlerOptions,
674
674
  ): Effect.Effect<
675
675
  DeleteAuthorizerCommandOutput,
676
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
676
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
677
677
  >;
678
678
 
679
679
  /**
@@ -684,7 +684,7 @@ interface ApiGatewayV2Service$ {
684
684
  options?: HttpHandlerOptions,
685
685
  ): Effect.Effect<
686
686
  DeleteCorsConfigurationCommandOutput,
687
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
687
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
688
688
  >;
689
689
 
690
690
  /**
@@ -695,7 +695,7 @@ interface ApiGatewayV2Service$ {
695
695
  options?: HttpHandlerOptions,
696
696
  ): Effect.Effect<
697
697
  DeleteDeploymentCommandOutput,
698
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
698
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
699
699
  >;
700
700
 
701
701
  /**
@@ -706,7 +706,7 @@ interface ApiGatewayV2Service$ {
706
706
  options?: HttpHandlerOptions,
707
707
  ): Effect.Effect<
708
708
  DeleteDomainNameCommandOutput,
709
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
709
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
710
710
  >;
711
711
 
712
712
  /**
@@ -717,7 +717,7 @@ interface ApiGatewayV2Service$ {
717
717
  options?: HttpHandlerOptions,
718
718
  ): Effect.Effect<
719
719
  DeleteIntegrationCommandOutput,
720
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
720
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
721
721
  >;
722
722
 
723
723
  /**
@@ -728,7 +728,7 @@ interface ApiGatewayV2Service$ {
728
728
  options?: HttpHandlerOptions,
729
729
  ): Effect.Effect<
730
730
  DeleteIntegrationResponseCommandOutput,
731
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
731
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
732
732
  >;
733
733
 
734
734
  /**
@@ -739,7 +739,7 @@ interface ApiGatewayV2Service$ {
739
739
  options?: HttpHandlerOptions,
740
740
  ): Effect.Effect<
741
741
  DeleteModelCommandOutput,
742
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
742
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
743
743
  >;
744
744
 
745
745
  /**
@@ -750,7 +750,7 @@ interface ApiGatewayV2Service$ {
750
750
  options?: HttpHandlerOptions,
751
751
  ): Effect.Effect<
752
752
  DeletePortalCommandOutput,
753
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
753
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
754
754
  >;
755
755
 
756
756
  /**
@@ -761,7 +761,7 @@ interface ApiGatewayV2Service$ {
761
761
  options?: HttpHandlerOptions,
762
762
  ): Effect.Effect<
763
763
  DeletePortalProductCommandOutput,
764
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
764
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
765
765
  >;
766
766
 
767
767
  /**
@@ -772,7 +772,7 @@ interface ApiGatewayV2Service$ {
772
772
  options?: HttpHandlerOptions,
773
773
  ): Effect.Effect<
774
774
  DeletePortalProductSharingPolicyCommandOutput,
775
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
775
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
776
776
  >;
777
777
 
778
778
  /**
@@ -783,7 +783,7 @@ interface ApiGatewayV2Service$ {
783
783
  options?: HttpHandlerOptions,
784
784
  ): Effect.Effect<
785
785
  DeleteProductPageCommandOutput,
786
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
786
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
787
787
  >;
788
788
 
789
789
  /**
@@ -794,7 +794,7 @@ interface ApiGatewayV2Service$ {
794
794
  options?: HttpHandlerOptions,
795
795
  ): Effect.Effect<
796
796
  DeleteProductRestEndpointPageCommandOutput,
797
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
797
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
798
798
  >;
799
799
 
800
800
  /**
@@ -805,7 +805,7 @@ interface ApiGatewayV2Service$ {
805
805
  options?: HttpHandlerOptions,
806
806
  ): Effect.Effect<
807
807
  DeleteRouteCommandOutput,
808
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
808
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
809
809
  >;
810
810
 
811
811
  /**
@@ -816,7 +816,7 @@ interface ApiGatewayV2Service$ {
816
816
  options?: HttpHandlerOptions,
817
817
  ): Effect.Effect<
818
818
  DeleteRouteRequestParameterCommandOutput,
819
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
819
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
820
820
  >;
821
821
 
822
822
  /**
@@ -827,7 +827,7 @@ interface ApiGatewayV2Service$ {
827
827
  options?: HttpHandlerOptions,
828
828
  ): Effect.Effect<
829
829
  DeleteRouteResponseCommandOutput,
830
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
830
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
831
831
  >;
832
832
 
833
833
  /**
@@ -838,7 +838,7 @@ interface ApiGatewayV2Service$ {
838
838
  options?: HttpHandlerOptions,
839
839
  ): Effect.Effect<
840
840
  DeleteRouteSettingsCommandOutput,
841
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
841
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
842
842
  >;
843
843
 
844
844
  /**
@@ -849,7 +849,7 @@ interface ApiGatewayV2Service$ {
849
849
  options?: HttpHandlerOptions,
850
850
  ): Effect.Effect<
851
851
  DeleteRoutingRuleCommandOutput,
852
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
852
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
853
853
  >;
854
854
 
855
855
  /**
@@ -860,7 +860,7 @@ interface ApiGatewayV2Service$ {
860
860
  options?: HttpHandlerOptions,
861
861
  ): Effect.Effect<
862
862
  DeleteStageCommandOutput,
863
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
863
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
864
864
  >;
865
865
 
866
866
  /**
@@ -871,7 +871,7 @@ interface ApiGatewayV2Service$ {
871
871
  options?: HttpHandlerOptions,
872
872
  ): Effect.Effect<
873
873
  DeleteVpcLinkCommandOutput,
874
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
874
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
875
875
  >;
876
876
 
877
877
  /**
@@ -882,7 +882,7 @@ interface ApiGatewayV2Service$ {
882
882
  options?: HttpHandlerOptions,
883
883
  ): Effect.Effect<
884
884
  DisablePortalCommandOutput,
885
- | Cause.TimeoutException
885
+ | Cause.TimeoutError
886
886
  | SdkError
887
887
  | AccessDeniedError
888
888
  | BadRequestError
@@ -899,7 +899,7 @@ interface ApiGatewayV2Service$ {
899
899
  options?: HttpHandlerOptions,
900
900
  ): Effect.Effect<
901
901
  ExportApiCommandOutput,
902
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
902
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
903
903
  >;
904
904
 
905
905
  /**
@@ -910,7 +910,7 @@ interface ApiGatewayV2Service$ {
910
910
  options?: HttpHandlerOptions,
911
911
  ): Effect.Effect<
912
912
  GetApiCommandOutput,
913
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
913
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
914
914
  >;
915
915
 
916
916
  /**
@@ -921,7 +921,7 @@ interface ApiGatewayV2Service$ {
921
921
  options?: HttpHandlerOptions,
922
922
  ): Effect.Effect<
923
923
  GetApiMappingCommandOutput,
924
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
924
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
925
925
  >;
926
926
 
927
927
  /**
@@ -932,7 +932,7 @@ interface ApiGatewayV2Service$ {
932
932
  options?: HttpHandlerOptions,
933
933
  ): Effect.Effect<
934
934
  GetApiMappingsCommandOutput,
935
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
935
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
936
936
  >;
937
937
 
938
938
  /**
@@ -943,7 +943,7 @@ interface ApiGatewayV2Service$ {
943
943
  options?: HttpHandlerOptions,
944
944
  ): Effect.Effect<
945
945
  GetApisCommandOutput,
946
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
946
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
947
947
  >;
948
948
 
949
949
  /**
@@ -954,7 +954,7 @@ interface ApiGatewayV2Service$ {
954
954
  options?: HttpHandlerOptions,
955
955
  ): Effect.Effect<
956
956
  GetAuthorizerCommandOutput,
957
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
957
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
958
958
  >;
959
959
 
960
960
  /**
@@ -965,7 +965,7 @@ interface ApiGatewayV2Service$ {
965
965
  options?: HttpHandlerOptions,
966
966
  ): Effect.Effect<
967
967
  GetAuthorizersCommandOutput,
968
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
968
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
969
969
  >;
970
970
 
971
971
  /**
@@ -976,7 +976,7 @@ interface ApiGatewayV2Service$ {
976
976
  options?: HttpHandlerOptions,
977
977
  ): Effect.Effect<
978
978
  GetDeploymentCommandOutput,
979
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
979
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
980
980
  >;
981
981
 
982
982
  /**
@@ -987,7 +987,7 @@ interface ApiGatewayV2Service$ {
987
987
  options?: HttpHandlerOptions,
988
988
  ): Effect.Effect<
989
989
  GetDeploymentsCommandOutput,
990
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
990
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
991
991
  >;
992
992
 
993
993
  /**
@@ -998,7 +998,7 @@ interface ApiGatewayV2Service$ {
998
998
  options?: HttpHandlerOptions,
999
999
  ): Effect.Effect<
1000
1000
  GetDomainNameCommandOutput,
1001
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1001
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1002
1002
  >;
1003
1003
 
1004
1004
  /**
@@ -1009,7 +1009,7 @@ interface ApiGatewayV2Service$ {
1009
1009
  options?: HttpHandlerOptions,
1010
1010
  ): Effect.Effect<
1011
1011
  GetDomainNamesCommandOutput,
1012
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1012
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1013
1013
  >;
1014
1014
 
1015
1015
  /**
@@ -1020,7 +1020,7 @@ interface ApiGatewayV2Service$ {
1020
1020
  options?: HttpHandlerOptions,
1021
1021
  ): Effect.Effect<
1022
1022
  GetIntegrationCommandOutput,
1023
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1023
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1024
1024
  >;
1025
1025
 
1026
1026
  /**
@@ -1031,7 +1031,7 @@ interface ApiGatewayV2Service$ {
1031
1031
  options?: HttpHandlerOptions,
1032
1032
  ): Effect.Effect<
1033
1033
  GetIntegrationResponseCommandOutput,
1034
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1034
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1035
1035
  >;
1036
1036
 
1037
1037
  /**
@@ -1042,7 +1042,7 @@ interface ApiGatewayV2Service$ {
1042
1042
  options?: HttpHandlerOptions,
1043
1043
  ): Effect.Effect<
1044
1044
  GetIntegrationResponsesCommandOutput,
1045
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1045
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1046
1046
  >;
1047
1047
 
1048
1048
  /**
@@ -1053,7 +1053,7 @@ interface ApiGatewayV2Service$ {
1053
1053
  options?: HttpHandlerOptions,
1054
1054
  ): Effect.Effect<
1055
1055
  GetIntegrationsCommandOutput,
1056
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1056
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1057
1057
  >;
1058
1058
 
1059
1059
  /**
@@ -1064,7 +1064,7 @@ interface ApiGatewayV2Service$ {
1064
1064
  options?: HttpHandlerOptions,
1065
1065
  ): Effect.Effect<
1066
1066
  GetModelCommandOutput,
1067
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1067
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1068
1068
  >;
1069
1069
 
1070
1070
  /**
@@ -1075,7 +1075,7 @@ interface ApiGatewayV2Service$ {
1075
1075
  options?: HttpHandlerOptions,
1076
1076
  ): Effect.Effect<
1077
1077
  GetModelTemplateCommandOutput,
1078
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1078
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1079
1079
  >;
1080
1080
 
1081
1081
  /**
@@ -1086,7 +1086,7 @@ interface ApiGatewayV2Service$ {
1086
1086
  options?: HttpHandlerOptions,
1087
1087
  ): Effect.Effect<
1088
1088
  GetModelsCommandOutput,
1089
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1089
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1090
1090
  >;
1091
1091
 
1092
1092
  /**
@@ -1097,7 +1097,7 @@ interface ApiGatewayV2Service$ {
1097
1097
  options?: HttpHandlerOptions,
1098
1098
  ): Effect.Effect<
1099
1099
  GetPortalCommandOutput,
1100
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1100
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1101
1101
  >;
1102
1102
 
1103
1103
  /**
@@ -1108,7 +1108,7 @@ interface ApiGatewayV2Service$ {
1108
1108
  options?: HttpHandlerOptions,
1109
1109
  ): Effect.Effect<
1110
1110
  GetPortalProductCommandOutput,
1111
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1111
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1112
1112
  >;
1113
1113
 
1114
1114
  /**
@@ -1119,7 +1119,7 @@ interface ApiGatewayV2Service$ {
1119
1119
  options?: HttpHandlerOptions,
1120
1120
  ): Effect.Effect<
1121
1121
  GetPortalProductSharingPolicyCommandOutput,
1122
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1122
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1123
1123
  >;
1124
1124
 
1125
1125
  /**
@@ -1130,7 +1130,7 @@ interface ApiGatewayV2Service$ {
1130
1130
  options?: HttpHandlerOptions,
1131
1131
  ): Effect.Effect<
1132
1132
  GetProductPageCommandOutput,
1133
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1133
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1134
1134
  >;
1135
1135
 
1136
1136
  /**
@@ -1141,7 +1141,7 @@ interface ApiGatewayV2Service$ {
1141
1141
  options?: HttpHandlerOptions,
1142
1142
  ): Effect.Effect<
1143
1143
  GetProductRestEndpointPageCommandOutput,
1144
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1144
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1145
1145
  >;
1146
1146
 
1147
1147
  /**
@@ -1152,7 +1152,7 @@ interface ApiGatewayV2Service$ {
1152
1152
  options?: HttpHandlerOptions,
1153
1153
  ): Effect.Effect<
1154
1154
  GetRouteCommandOutput,
1155
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1155
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1156
1156
  >;
1157
1157
 
1158
1158
  /**
@@ -1163,7 +1163,7 @@ interface ApiGatewayV2Service$ {
1163
1163
  options?: HttpHandlerOptions,
1164
1164
  ): Effect.Effect<
1165
1165
  GetRouteResponseCommandOutput,
1166
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1166
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1167
1167
  >;
1168
1168
 
1169
1169
  /**
@@ -1174,7 +1174,7 @@ interface ApiGatewayV2Service$ {
1174
1174
  options?: HttpHandlerOptions,
1175
1175
  ): Effect.Effect<
1176
1176
  GetRouteResponsesCommandOutput,
1177
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1177
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1178
1178
  >;
1179
1179
 
1180
1180
  /**
@@ -1185,7 +1185,7 @@ interface ApiGatewayV2Service$ {
1185
1185
  options?: HttpHandlerOptions,
1186
1186
  ): Effect.Effect<
1187
1187
  GetRoutesCommandOutput,
1188
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1188
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1189
1189
  >;
1190
1190
 
1191
1191
  /**
@@ -1196,7 +1196,7 @@ interface ApiGatewayV2Service$ {
1196
1196
  options?: HttpHandlerOptions,
1197
1197
  ): Effect.Effect<
1198
1198
  GetRoutingRuleCommandOutput,
1199
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1199
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1200
1200
  >;
1201
1201
 
1202
1202
  /**
@@ -1207,7 +1207,7 @@ interface ApiGatewayV2Service$ {
1207
1207
  options?: HttpHandlerOptions,
1208
1208
  ): Effect.Effect<
1209
1209
  GetStageCommandOutput,
1210
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1210
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1211
1211
  >;
1212
1212
 
1213
1213
  /**
@@ -1218,7 +1218,7 @@ interface ApiGatewayV2Service$ {
1218
1218
  options?: HttpHandlerOptions,
1219
1219
  ): Effect.Effect<
1220
1220
  GetStagesCommandOutput,
1221
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1221
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1222
1222
  >;
1223
1223
 
1224
1224
  /**
@@ -1229,7 +1229,7 @@ interface ApiGatewayV2Service$ {
1229
1229
  options?: HttpHandlerOptions,
1230
1230
  ): Effect.Effect<
1231
1231
  GetTagsCommandOutput,
1232
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1232
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1233
1233
  >;
1234
1234
 
1235
1235
  /**
@@ -1240,7 +1240,7 @@ interface ApiGatewayV2Service$ {
1240
1240
  options?: HttpHandlerOptions,
1241
1241
  ): Effect.Effect<
1242
1242
  GetVpcLinkCommandOutput,
1243
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1243
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1244
1244
  >;
1245
1245
 
1246
1246
  /**
@@ -1251,7 +1251,7 @@ interface ApiGatewayV2Service$ {
1251
1251
  options?: HttpHandlerOptions,
1252
1252
  ): Effect.Effect<
1253
1253
  GetVpcLinksCommandOutput,
1254
- Cause.TimeoutException | SdkError | BadRequestError | TooManyRequestsError
1254
+ Cause.TimeoutError | SdkError | BadRequestError | TooManyRequestsError
1255
1255
  >;
1256
1256
 
1257
1257
  /**
@@ -1262,7 +1262,7 @@ interface ApiGatewayV2Service$ {
1262
1262
  options?: HttpHandlerOptions,
1263
1263
  ): Effect.Effect<
1264
1264
  ImportApiCommandOutput,
1265
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1265
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1266
1266
  >;
1267
1267
 
1268
1268
  /**
@@ -1273,7 +1273,7 @@ interface ApiGatewayV2Service$ {
1273
1273
  options?: HttpHandlerOptions,
1274
1274
  ): Effect.Effect<
1275
1275
  ListPortalProductsCommandOutput,
1276
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
1276
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
1277
1277
  >;
1278
1278
 
1279
1279
  /**
@@ -1284,7 +1284,7 @@ interface ApiGatewayV2Service$ {
1284
1284
  options?: HttpHandlerOptions,
1285
1285
  ): Effect.Effect<
1286
1286
  ListPortalsCommandOutput,
1287
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
1287
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
1288
1288
  >;
1289
1289
 
1290
1290
  /**
@@ -1295,7 +1295,7 @@ interface ApiGatewayV2Service$ {
1295
1295
  options?: HttpHandlerOptions,
1296
1296
  ): Effect.Effect<
1297
1297
  ListProductPagesCommandOutput,
1298
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1298
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1299
1299
  >;
1300
1300
 
1301
1301
  /**
@@ -1306,7 +1306,7 @@ interface ApiGatewayV2Service$ {
1306
1306
  options?: HttpHandlerOptions,
1307
1307
  ): Effect.Effect<
1308
1308
  ListProductRestEndpointPagesCommandOutput,
1309
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1309
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1310
1310
  >;
1311
1311
 
1312
1312
  /**
@@ -1317,7 +1317,7 @@ interface ApiGatewayV2Service$ {
1317
1317
  options?: HttpHandlerOptions,
1318
1318
  ): Effect.Effect<
1319
1319
  ListRoutingRulesCommandOutput,
1320
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1320
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1321
1321
  >;
1322
1322
 
1323
1323
  /**
@@ -1328,7 +1328,7 @@ interface ApiGatewayV2Service$ {
1328
1328
  options?: HttpHandlerOptions,
1329
1329
  ): Effect.Effect<
1330
1330
  PreviewPortalCommandOutput,
1331
- | Cause.TimeoutException
1331
+ | Cause.TimeoutError
1332
1332
  | SdkError
1333
1333
  | AccessDeniedError
1334
1334
  | BadRequestError
@@ -1345,7 +1345,7 @@ interface ApiGatewayV2Service$ {
1345
1345
  options?: HttpHandlerOptions,
1346
1346
  ): Effect.Effect<
1347
1347
  PublishPortalCommandOutput,
1348
- | Cause.TimeoutException
1348
+ | Cause.TimeoutError
1349
1349
  | SdkError
1350
1350
  | AccessDeniedError
1351
1351
  | BadRequestError
@@ -1362,7 +1362,7 @@ interface ApiGatewayV2Service$ {
1362
1362
  options?: HttpHandlerOptions,
1363
1363
  ): Effect.Effect<
1364
1364
  PutPortalProductSharingPolicyCommandOutput,
1365
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1365
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1366
1366
  >;
1367
1367
 
1368
1368
  /**
@@ -1373,7 +1373,7 @@ interface ApiGatewayV2Service$ {
1373
1373
  options?: HttpHandlerOptions,
1374
1374
  ): Effect.Effect<
1375
1375
  PutRoutingRuleCommandOutput,
1376
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1376
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1377
1377
  >;
1378
1378
 
1379
1379
  /**
@@ -1384,7 +1384,7 @@ interface ApiGatewayV2Service$ {
1384
1384
  options?: HttpHandlerOptions,
1385
1385
  ): Effect.Effect<
1386
1386
  ReimportApiCommandOutput,
1387
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1387
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1388
1388
  >;
1389
1389
 
1390
1390
  /**
@@ -1395,7 +1395,7 @@ interface ApiGatewayV2Service$ {
1395
1395
  options?: HttpHandlerOptions,
1396
1396
  ): Effect.Effect<
1397
1397
  ResetAuthorizersCacheCommandOutput,
1398
- Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
1398
+ Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
1399
1399
  >;
1400
1400
 
1401
1401
  /**
@@ -1406,7 +1406,7 @@ interface ApiGatewayV2Service$ {
1406
1406
  options?: HttpHandlerOptions,
1407
1407
  ): Effect.Effect<
1408
1408
  TagResourceCommandOutput,
1409
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1409
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1410
1410
  >;
1411
1411
 
1412
1412
  /**
@@ -1417,7 +1417,7 @@ interface ApiGatewayV2Service$ {
1417
1417
  options?: HttpHandlerOptions,
1418
1418
  ): Effect.Effect<
1419
1419
  UntagResourceCommandOutput,
1420
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1420
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1421
1421
  >;
1422
1422
 
1423
1423
  /**
@@ -1428,7 +1428,7 @@ interface ApiGatewayV2Service$ {
1428
1428
  options?: HttpHandlerOptions,
1429
1429
  ): Effect.Effect<
1430
1430
  UpdateApiCommandOutput,
1431
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1431
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1432
1432
  >;
1433
1433
 
1434
1434
  /**
@@ -1439,7 +1439,7 @@ interface ApiGatewayV2Service$ {
1439
1439
  options?: HttpHandlerOptions,
1440
1440
  ): Effect.Effect<
1441
1441
  UpdateApiMappingCommandOutput,
1442
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1442
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1443
1443
  >;
1444
1444
 
1445
1445
  /**
@@ -1450,7 +1450,7 @@ interface ApiGatewayV2Service$ {
1450
1450
  options?: HttpHandlerOptions,
1451
1451
  ): Effect.Effect<
1452
1452
  UpdateAuthorizerCommandOutput,
1453
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1453
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1454
1454
  >;
1455
1455
 
1456
1456
  /**
@@ -1461,7 +1461,7 @@ interface ApiGatewayV2Service$ {
1461
1461
  options?: HttpHandlerOptions,
1462
1462
  ): Effect.Effect<
1463
1463
  UpdateDeploymentCommandOutput,
1464
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1464
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1465
1465
  >;
1466
1466
 
1467
1467
  /**
@@ -1472,7 +1472,7 @@ interface ApiGatewayV2Service$ {
1472
1472
  options?: HttpHandlerOptions,
1473
1473
  ): Effect.Effect<
1474
1474
  UpdateDomainNameCommandOutput,
1475
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1475
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1476
1476
  >;
1477
1477
 
1478
1478
  /**
@@ -1483,7 +1483,7 @@ interface ApiGatewayV2Service$ {
1483
1483
  options?: HttpHandlerOptions,
1484
1484
  ): Effect.Effect<
1485
1485
  UpdateIntegrationCommandOutput,
1486
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1486
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1487
1487
  >;
1488
1488
 
1489
1489
  /**
@@ -1494,7 +1494,7 @@ interface ApiGatewayV2Service$ {
1494
1494
  options?: HttpHandlerOptions,
1495
1495
  ): Effect.Effect<
1496
1496
  UpdateIntegrationResponseCommandOutput,
1497
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1497
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1498
1498
  >;
1499
1499
 
1500
1500
  /**
@@ -1505,7 +1505,7 @@ interface ApiGatewayV2Service$ {
1505
1505
  options?: HttpHandlerOptions,
1506
1506
  ): Effect.Effect<
1507
1507
  UpdateModelCommandOutput,
1508
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1508
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1509
1509
  >;
1510
1510
 
1511
1511
  /**
@@ -1516,7 +1516,7 @@ interface ApiGatewayV2Service$ {
1516
1516
  options?: HttpHandlerOptions,
1517
1517
  ): Effect.Effect<
1518
1518
  UpdatePortalCommandOutput,
1519
- | Cause.TimeoutException
1519
+ | Cause.TimeoutError
1520
1520
  | SdkError
1521
1521
  | AccessDeniedError
1522
1522
  | BadRequestError
@@ -1533,7 +1533,7 @@ interface ApiGatewayV2Service$ {
1533
1533
  options?: HttpHandlerOptions,
1534
1534
  ): Effect.Effect<
1535
1535
  UpdatePortalProductCommandOutput,
1536
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1536
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1537
1537
  >;
1538
1538
 
1539
1539
  /**
@@ -1544,7 +1544,7 @@ interface ApiGatewayV2Service$ {
1544
1544
  options?: HttpHandlerOptions,
1545
1545
  ): Effect.Effect<
1546
1546
  UpdateProductPageCommandOutput,
1547
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1547
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1548
1548
  >;
1549
1549
 
1550
1550
  /**
@@ -1555,7 +1555,7 @@ interface ApiGatewayV2Service$ {
1555
1555
  options?: HttpHandlerOptions,
1556
1556
  ): Effect.Effect<
1557
1557
  UpdateProductRestEndpointPageCommandOutput,
1558
- Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1558
+ Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
1559
1559
  >;
1560
1560
 
1561
1561
  /**
@@ -1566,7 +1566,7 @@ interface ApiGatewayV2Service$ {
1566
1566
  options?: HttpHandlerOptions,
1567
1567
  ): Effect.Effect<
1568
1568
  UpdateRouteCommandOutput,
1569
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1569
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1570
1570
  >;
1571
1571
 
1572
1572
  /**
@@ -1577,7 +1577,7 @@ interface ApiGatewayV2Service$ {
1577
1577
  options?: HttpHandlerOptions,
1578
1578
  ): Effect.Effect<
1579
1579
  UpdateRouteResponseCommandOutput,
1580
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1580
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1581
1581
  >;
1582
1582
 
1583
1583
  /**
@@ -1588,7 +1588,7 @@ interface ApiGatewayV2Service$ {
1588
1588
  options?: HttpHandlerOptions,
1589
1589
  ): Effect.Effect<
1590
1590
  UpdateStageCommandOutput,
1591
- Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1591
+ Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
1592
1592
  >;
1593
1593
 
1594
1594
  /**
@@ -1599,7 +1599,7 @@ interface ApiGatewayV2Service$ {
1599
1599
  options?: HttpHandlerOptions,
1600
1600
  ): Effect.Effect<
1601
1601
  UpdateVpcLinkCommandOutput,
1602
- Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1602
+ Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
1603
1603
  >;
1604
1604
  }
1605
1605
 
@@ -1624,10 +1624,10 @@ export const makeApiGatewayV2Service = Effect.gen(function*() {
1624
1624
  * @since 1.0.0
1625
1625
  * @category models
1626
1626
  */
1627
- export class ApiGatewayV2Service extends Effect.Tag("@effect-aws/client-api-gateway-v2/ApiGatewayV2Service")<
1627
+ export class ApiGatewayV2Service extends ServiceMap.Service<
1628
1628
  ApiGatewayV2Service,
1629
1629
  ApiGatewayV2Service$
1630
- >() {
1630
+ >()("@effect-aws/client-api-gateway-v2/ApiGatewayV2Service") {
1631
1631
  static readonly defaultLayer = Layer.effect(this, makeApiGatewayV2Service).pipe(Layer.provide(Instance.layer));
1632
1632
  static readonly layer = (config: ApiGatewayV2Service.Config) =>
1633
1633
  Layer.effect(this, makeApiGatewayV2Service).pipe(