@effect-aws/client-api-gateway-v2 1.10.9 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +3 -3
- package/dist/dts/ApiGatewayV2ClientInstance.d.ts +4 -2
- package/dist/dts/ApiGatewayV2ClientInstance.d.ts.map +1 -1
- package/dist/dts/ApiGatewayV2Service.d.ts +108 -108
- package/dist/dts/ApiGatewayV2Service.d.ts.map +1 -1
- package/dist/dts/ApiGatewayV2ServiceConfig.d.ts +2 -1
- package/dist/dts/ApiGatewayV2ServiceConfig.d.ts.map +1 -1
- package/dist/esm/ApiGatewayV2ClientInstance.js +5 -3
- package/dist/esm/ApiGatewayV2ClientInstance.js.map +1 -1
- package/dist/esm/ApiGatewayV2Service.js +4 -2
- package/dist/esm/ApiGatewayV2Service.js.map +1 -1
- package/dist/esm/ApiGatewayV2ServiceConfig.js +7 -6
- package/dist/esm/ApiGatewayV2ServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/ApiGatewayV2ClientInstance.ts +6 -4
- package/src/ApiGatewayV2Service.ts +109 -107
- package/src/ApiGatewayV2ServiceConfig.ts +8 -7
- package/dist/cjs/ApiGatewayV2ClientInstance.d.ts +0 -24
- package/dist/cjs/ApiGatewayV2ClientInstance.d.ts.map +0 -1
- package/dist/cjs/ApiGatewayV2ClientInstance.js +0 -50
- package/dist/cjs/ApiGatewayV2ClientInstance.js.map +0 -1
- package/dist/cjs/ApiGatewayV2Service.d.ts +0 -458
- package/dist/cjs/ApiGatewayV2Service.d.ts.map +0 -1
- package/dist/cjs/ApiGatewayV2Service.js +0 -162
- package/dist/cjs/ApiGatewayV2Service.js.map +0 -1
- package/dist/cjs/ApiGatewayV2ServiceConfig.d.ts +0 -25
- package/dist/cjs/ApiGatewayV2ServiceConfig.d.ts.map +0 -1
- package/dist/cjs/ApiGatewayV2ServiceConfig.js +0 -35
- package/dist/cjs/ApiGatewayV2ServiceConfig.js.map +0 -1
- package/dist/cjs/Errors.d.ts +0 -12
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -11
- package/dist/cjs/Errors.js.map +0 -1
- package/dist/cjs/index.d.ts +0 -44
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -56
- package/dist/cjs/index.js.map +0 -1
|
@@ -316,8 +316,10 @@ import {
|
|
|
316
316
|
} from "@aws-sdk/client-apigatewayv2";
|
|
317
317
|
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
318
318
|
import { Service } from "@effect-aws/commons";
|
|
319
|
-
import type
|
|
320
|
-
import
|
|
319
|
+
import type * as Cause from "effect/Cause";
|
|
320
|
+
import * as Effect from "effect/Effect";
|
|
321
|
+
import * as Layer from "effect/Layer";
|
|
322
|
+
import * as ServiceMap from "effect/ServiceMap";
|
|
321
323
|
import * as Instance from "./ApiGatewayV2ClientInstance.js";
|
|
322
324
|
import * as ApiGatewayV2ServiceConfig from "./ApiGatewayV2ServiceConfig.js";
|
|
323
325
|
import type {
|
|
@@ -447,7 +449,7 @@ interface ApiGatewayV2Service$ {
|
|
|
447
449
|
options?: HttpHandlerOptions,
|
|
448
450
|
): Effect.Effect<
|
|
449
451
|
CreateApiCommandOutput,
|
|
450
|
-
Cause.
|
|
452
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
451
453
|
>;
|
|
452
454
|
|
|
453
455
|
/**
|
|
@@ -458,7 +460,7 @@ interface ApiGatewayV2Service$ {
|
|
|
458
460
|
options?: HttpHandlerOptions,
|
|
459
461
|
): Effect.Effect<
|
|
460
462
|
CreateApiMappingCommandOutput,
|
|
461
|
-
Cause.
|
|
463
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
462
464
|
>;
|
|
463
465
|
|
|
464
466
|
/**
|
|
@@ -469,7 +471,7 @@ interface ApiGatewayV2Service$ {
|
|
|
469
471
|
options?: HttpHandlerOptions,
|
|
470
472
|
): Effect.Effect<
|
|
471
473
|
CreateAuthorizerCommandOutput,
|
|
472
|
-
Cause.
|
|
474
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
473
475
|
>;
|
|
474
476
|
|
|
475
477
|
/**
|
|
@@ -480,7 +482,7 @@ interface ApiGatewayV2Service$ {
|
|
|
480
482
|
options?: HttpHandlerOptions,
|
|
481
483
|
): Effect.Effect<
|
|
482
484
|
CreateDeploymentCommandOutput,
|
|
483
|
-
Cause.
|
|
485
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
484
486
|
>;
|
|
485
487
|
|
|
486
488
|
/**
|
|
@@ -491,7 +493,7 @@ interface ApiGatewayV2Service$ {
|
|
|
491
493
|
options?: HttpHandlerOptions,
|
|
492
494
|
): Effect.Effect<
|
|
493
495
|
CreateDomainNameCommandOutput,
|
|
494
|
-
| Cause.
|
|
496
|
+
| Cause.TimeoutError
|
|
495
497
|
| SdkError
|
|
496
498
|
| AccessDeniedError
|
|
497
499
|
| BadRequestError
|
|
@@ -508,7 +510,7 @@ interface ApiGatewayV2Service$ {
|
|
|
508
510
|
options?: HttpHandlerOptions,
|
|
509
511
|
): Effect.Effect<
|
|
510
512
|
CreateIntegrationCommandOutput,
|
|
511
|
-
Cause.
|
|
513
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
512
514
|
>;
|
|
513
515
|
|
|
514
516
|
/**
|
|
@@ -519,7 +521,7 @@ interface ApiGatewayV2Service$ {
|
|
|
519
521
|
options?: HttpHandlerOptions,
|
|
520
522
|
): Effect.Effect<
|
|
521
523
|
CreateIntegrationResponseCommandOutput,
|
|
522
|
-
Cause.
|
|
524
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
523
525
|
>;
|
|
524
526
|
|
|
525
527
|
/**
|
|
@@ -530,7 +532,7 @@ interface ApiGatewayV2Service$ {
|
|
|
530
532
|
options?: HttpHandlerOptions,
|
|
531
533
|
): Effect.Effect<
|
|
532
534
|
CreateModelCommandOutput,
|
|
533
|
-
Cause.
|
|
535
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
534
536
|
>;
|
|
535
537
|
|
|
536
538
|
/**
|
|
@@ -541,7 +543,7 @@ interface ApiGatewayV2Service$ {
|
|
|
541
543
|
options?: HttpHandlerOptions,
|
|
542
544
|
): Effect.Effect<
|
|
543
545
|
CreatePortalCommandOutput,
|
|
544
|
-
Cause.
|
|
546
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
545
547
|
>;
|
|
546
548
|
|
|
547
549
|
/**
|
|
@@ -552,7 +554,7 @@ interface ApiGatewayV2Service$ {
|
|
|
552
554
|
options?: HttpHandlerOptions,
|
|
553
555
|
): Effect.Effect<
|
|
554
556
|
CreatePortalProductCommandOutput,
|
|
555
|
-
Cause.
|
|
557
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
556
558
|
>;
|
|
557
559
|
|
|
558
560
|
/**
|
|
@@ -563,7 +565,7 @@ interface ApiGatewayV2Service$ {
|
|
|
563
565
|
options?: HttpHandlerOptions,
|
|
564
566
|
): Effect.Effect<
|
|
565
567
|
CreateProductPageCommandOutput,
|
|
566
|
-
Cause.
|
|
568
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
567
569
|
>;
|
|
568
570
|
|
|
569
571
|
/**
|
|
@@ -574,7 +576,7 @@ interface ApiGatewayV2Service$ {
|
|
|
574
576
|
options?: HttpHandlerOptions,
|
|
575
577
|
): Effect.Effect<
|
|
576
578
|
CreateProductRestEndpointPageCommandOutput,
|
|
577
|
-
Cause.
|
|
579
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
578
580
|
>;
|
|
579
581
|
|
|
580
582
|
/**
|
|
@@ -585,7 +587,7 @@ interface ApiGatewayV2Service$ {
|
|
|
585
587
|
options?: HttpHandlerOptions,
|
|
586
588
|
): Effect.Effect<
|
|
587
589
|
CreateRouteCommandOutput,
|
|
588
|
-
Cause.
|
|
590
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
589
591
|
>;
|
|
590
592
|
|
|
591
593
|
/**
|
|
@@ -596,7 +598,7 @@ interface ApiGatewayV2Service$ {
|
|
|
596
598
|
options?: HttpHandlerOptions,
|
|
597
599
|
): Effect.Effect<
|
|
598
600
|
CreateRouteResponseCommandOutput,
|
|
599
|
-
Cause.
|
|
601
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
600
602
|
>;
|
|
601
603
|
|
|
602
604
|
/**
|
|
@@ -607,7 +609,7 @@ interface ApiGatewayV2Service$ {
|
|
|
607
609
|
options?: HttpHandlerOptions,
|
|
608
610
|
): Effect.Effect<
|
|
609
611
|
CreateRoutingRuleCommandOutput,
|
|
610
|
-
Cause.
|
|
612
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
611
613
|
>;
|
|
612
614
|
|
|
613
615
|
/**
|
|
@@ -618,7 +620,7 @@ interface ApiGatewayV2Service$ {
|
|
|
618
620
|
options?: HttpHandlerOptions,
|
|
619
621
|
): Effect.Effect<
|
|
620
622
|
CreateStageCommandOutput,
|
|
621
|
-
Cause.
|
|
623
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
622
624
|
>;
|
|
623
625
|
|
|
624
626
|
/**
|
|
@@ -629,7 +631,7 @@ interface ApiGatewayV2Service$ {
|
|
|
629
631
|
options?: HttpHandlerOptions,
|
|
630
632
|
): Effect.Effect<
|
|
631
633
|
CreateVpcLinkCommandOutput,
|
|
632
|
-
Cause.
|
|
634
|
+
Cause.TimeoutError | SdkError | BadRequestError | TooManyRequestsError
|
|
633
635
|
>;
|
|
634
636
|
|
|
635
637
|
/**
|
|
@@ -640,7 +642,7 @@ interface ApiGatewayV2Service$ {
|
|
|
640
642
|
options?: HttpHandlerOptions,
|
|
641
643
|
): Effect.Effect<
|
|
642
644
|
DeleteAccessLogSettingsCommandOutput,
|
|
643
|
-
Cause.
|
|
645
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
644
646
|
>;
|
|
645
647
|
|
|
646
648
|
/**
|
|
@@ -651,7 +653,7 @@ interface ApiGatewayV2Service$ {
|
|
|
651
653
|
options?: HttpHandlerOptions,
|
|
652
654
|
): Effect.Effect<
|
|
653
655
|
DeleteApiCommandOutput,
|
|
654
|
-
Cause.
|
|
656
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
655
657
|
>;
|
|
656
658
|
|
|
657
659
|
/**
|
|
@@ -662,7 +664,7 @@ interface ApiGatewayV2Service$ {
|
|
|
662
664
|
options?: HttpHandlerOptions,
|
|
663
665
|
): Effect.Effect<
|
|
664
666
|
DeleteApiMappingCommandOutput,
|
|
665
|
-
Cause.
|
|
667
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
666
668
|
>;
|
|
667
669
|
|
|
668
670
|
/**
|
|
@@ -673,7 +675,7 @@ interface ApiGatewayV2Service$ {
|
|
|
673
675
|
options?: HttpHandlerOptions,
|
|
674
676
|
): Effect.Effect<
|
|
675
677
|
DeleteAuthorizerCommandOutput,
|
|
676
|
-
Cause.
|
|
678
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
677
679
|
>;
|
|
678
680
|
|
|
679
681
|
/**
|
|
@@ -684,7 +686,7 @@ interface ApiGatewayV2Service$ {
|
|
|
684
686
|
options?: HttpHandlerOptions,
|
|
685
687
|
): Effect.Effect<
|
|
686
688
|
DeleteCorsConfigurationCommandOutput,
|
|
687
|
-
Cause.
|
|
689
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
688
690
|
>;
|
|
689
691
|
|
|
690
692
|
/**
|
|
@@ -695,7 +697,7 @@ interface ApiGatewayV2Service$ {
|
|
|
695
697
|
options?: HttpHandlerOptions,
|
|
696
698
|
): Effect.Effect<
|
|
697
699
|
DeleteDeploymentCommandOutput,
|
|
698
|
-
Cause.
|
|
700
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
699
701
|
>;
|
|
700
702
|
|
|
701
703
|
/**
|
|
@@ -706,7 +708,7 @@ interface ApiGatewayV2Service$ {
|
|
|
706
708
|
options?: HttpHandlerOptions,
|
|
707
709
|
): Effect.Effect<
|
|
708
710
|
DeleteDomainNameCommandOutput,
|
|
709
|
-
Cause.
|
|
711
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
710
712
|
>;
|
|
711
713
|
|
|
712
714
|
/**
|
|
@@ -717,7 +719,7 @@ interface ApiGatewayV2Service$ {
|
|
|
717
719
|
options?: HttpHandlerOptions,
|
|
718
720
|
): Effect.Effect<
|
|
719
721
|
DeleteIntegrationCommandOutput,
|
|
720
|
-
Cause.
|
|
722
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
721
723
|
>;
|
|
722
724
|
|
|
723
725
|
/**
|
|
@@ -728,7 +730,7 @@ interface ApiGatewayV2Service$ {
|
|
|
728
730
|
options?: HttpHandlerOptions,
|
|
729
731
|
): Effect.Effect<
|
|
730
732
|
DeleteIntegrationResponseCommandOutput,
|
|
731
|
-
Cause.
|
|
733
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
732
734
|
>;
|
|
733
735
|
|
|
734
736
|
/**
|
|
@@ -739,7 +741,7 @@ interface ApiGatewayV2Service$ {
|
|
|
739
741
|
options?: HttpHandlerOptions,
|
|
740
742
|
): Effect.Effect<
|
|
741
743
|
DeleteModelCommandOutput,
|
|
742
|
-
Cause.
|
|
744
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
743
745
|
>;
|
|
744
746
|
|
|
745
747
|
/**
|
|
@@ -750,7 +752,7 @@ interface ApiGatewayV2Service$ {
|
|
|
750
752
|
options?: HttpHandlerOptions,
|
|
751
753
|
): Effect.Effect<
|
|
752
754
|
DeletePortalCommandOutput,
|
|
753
|
-
Cause.
|
|
755
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
754
756
|
>;
|
|
755
757
|
|
|
756
758
|
/**
|
|
@@ -761,7 +763,7 @@ interface ApiGatewayV2Service$ {
|
|
|
761
763
|
options?: HttpHandlerOptions,
|
|
762
764
|
): Effect.Effect<
|
|
763
765
|
DeletePortalProductCommandOutput,
|
|
764
|
-
Cause.
|
|
766
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
765
767
|
>;
|
|
766
768
|
|
|
767
769
|
/**
|
|
@@ -772,7 +774,7 @@ interface ApiGatewayV2Service$ {
|
|
|
772
774
|
options?: HttpHandlerOptions,
|
|
773
775
|
): Effect.Effect<
|
|
774
776
|
DeletePortalProductSharingPolicyCommandOutput,
|
|
775
|
-
Cause.
|
|
777
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
776
778
|
>;
|
|
777
779
|
|
|
778
780
|
/**
|
|
@@ -783,7 +785,7 @@ interface ApiGatewayV2Service$ {
|
|
|
783
785
|
options?: HttpHandlerOptions,
|
|
784
786
|
): Effect.Effect<
|
|
785
787
|
DeleteProductPageCommandOutput,
|
|
786
|
-
Cause.
|
|
788
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
787
789
|
>;
|
|
788
790
|
|
|
789
791
|
/**
|
|
@@ -794,7 +796,7 @@ interface ApiGatewayV2Service$ {
|
|
|
794
796
|
options?: HttpHandlerOptions,
|
|
795
797
|
): Effect.Effect<
|
|
796
798
|
DeleteProductRestEndpointPageCommandOutput,
|
|
797
|
-
Cause.
|
|
799
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
798
800
|
>;
|
|
799
801
|
|
|
800
802
|
/**
|
|
@@ -805,7 +807,7 @@ interface ApiGatewayV2Service$ {
|
|
|
805
807
|
options?: HttpHandlerOptions,
|
|
806
808
|
): Effect.Effect<
|
|
807
809
|
DeleteRouteCommandOutput,
|
|
808
|
-
Cause.
|
|
810
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
809
811
|
>;
|
|
810
812
|
|
|
811
813
|
/**
|
|
@@ -816,7 +818,7 @@ interface ApiGatewayV2Service$ {
|
|
|
816
818
|
options?: HttpHandlerOptions,
|
|
817
819
|
): Effect.Effect<
|
|
818
820
|
DeleteRouteRequestParameterCommandOutput,
|
|
819
|
-
Cause.
|
|
821
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
820
822
|
>;
|
|
821
823
|
|
|
822
824
|
/**
|
|
@@ -827,7 +829,7 @@ interface ApiGatewayV2Service$ {
|
|
|
827
829
|
options?: HttpHandlerOptions,
|
|
828
830
|
): Effect.Effect<
|
|
829
831
|
DeleteRouteResponseCommandOutput,
|
|
830
|
-
Cause.
|
|
832
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
831
833
|
>;
|
|
832
834
|
|
|
833
835
|
/**
|
|
@@ -838,7 +840,7 @@ interface ApiGatewayV2Service$ {
|
|
|
838
840
|
options?: HttpHandlerOptions,
|
|
839
841
|
): Effect.Effect<
|
|
840
842
|
DeleteRouteSettingsCommandOutput,
|
|
841
|
-
Cause.
|
|
843
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
842
844
|
>;
|
|
843
845
|
|
|
844
846
|
/**
|
|
@@ -849,7 +851,7 @@ interface ApiGatewayV2Service$ {
|
|
|
849
851
|
options?: HttpHandlerOptions,
|
|
850
852
|
): Effect.Effect<
|
|
851
853
|
DeleteRoutingRuleCommandOutput,
|
|
852
|
-
Cause.
|
|
854
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
853
855
|
>;
|
|
854
856
|
|
|
855
857
|
/**
|
|
@@ -860,7 +862,7 @@ interface ApiGatewayV2Service$ {
|
|
|
860
862
|
options?: HttpHandlerOptions,
|
|
861
863
|
): Effect.Effect<
|
|
862
864
|
DeleteStageCommandOutput,
|
|
863
|
-
Cause.
|
|
865
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
864
866
|
>;
|
|
865
867
|
|
|
866
868
|
/**
|
|
@@ -871,7 +873,7 @@ interface ApiGatewayV2Service$ {
|
|
|
871
873
|
options?: HttpHandlerOptions,
|
|
872
874
|
): Effect.Effect<
|
|
873
875
|
DeleteVpcLinkCommandOutput,
|
|
874
|
-
Cause.
|
|
876
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
875
877
|
>;
|
|
876
878
|
|
|
877
879
|
/**
|
|
@@ -882,7 +884,7 @@ interface ApiGatewayV2Service$ {
|
|
|
882
884
|
options?: HttpHandlerOptions,
|
|
883
885
|
): Effect.Effect<
|
|
884
886
|
DisablePortalCommandOutput,
|
|
885
|
-
| Cause.
|
|
887
|
+
| Cause.TimeoutError
|
|
886
888
|
| SdkError
|
|
887
889
|
| AccessDeniedError
|
|
888
890
|
| BadRequestError
|
|
@@ -899,7 +901,7 @@ interface ApiGatewayV2Service$ {
|
|
|
899
901
|
options?: HttpHandlerOptions,
|
|
900
902
|
): Effect.Effect<
|
|
901
903
|
ExportApiCommandOutput,
|
|
902
|
-
Cause.
|
|
904
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
903
905
|
>;
|
|
904
906
|
|
|
905
907
|
/**
|
|
@@ -910,7 +912,7 @@ interface ApiGatewayV2Service$ {
|
|
|
910
912
|
options?: HttpHandlerOptions,
|
|
911
913
|
): Effect.Effect<
|
|
912
914
|
GetApiCommandOutput,
|
|
913
|
-
Cause.
|
|
915
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
914
916
|
>;
|
|
915
917
|
|
|
916
918
|
/**
|
|
@@ -921,7 +923,7 @@ interface ApiGatewayV2Service$ {
|
|
|
921
923
|
options?: HttpHandlerOptions,
|
|
922
924
|
): Effect.Effect<
|
|
923
925
|
GetApiMappingCommandOutput,
|
|
924
|
-
Cause.
|
|
926
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
925
927
|
>;
|
|
926
928
|
|
|
927
929
|
/**
|
|
@@ -932,7 +934,7 @@ interface ApiGatewayV2Service$ {
|
|
|
932
934
|
options?: HttpHandlerOptions,
|
|
933
935
|
): Effect.Effect<
|
|
934
936
|
GetApiMappingsCommandOutput,
|
|
935
|
-
Cause.
|
|
937
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
936
938
|
>;
|
|
937
939
|
|
|
938
940
|
/**
|
|
@@ -943,7 +945,7 @@ interface ApiGatewayV2Service$ {
|
|
|
943
945
|
options?: HttpHandlerOptions,
|
|
944
946
|
): Effect.Effect<
|
|
945
947
|
GetApisCommandOutput,
|
|
946
|
-
Cause.
|
|
948
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
947
949
|
>;
|
|
948
950
|
|
|
949
951
|
/**
|
|
@@ -954,7 +956,7 @@ interface ApiGatewayV2Service$ {
|
|
|
954
956
|
options?: HttpHandlerOptions,
|
|
955
957
|
): Effect.Effect<
|
|
956
958
|
GetAuthorizerCommandOutput,
|
|
957
|
-
Cause.
|
|
959
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
958
960
|
>;
|
|
959
961
|
|
|
960
962
|
/**
|
|
@@ -965,7 +967,7 @@ interface ApiGatewayV2Service$ {
|
|
|
965
967
|
options?: HttpHandlerOptions,
|
|
966
968
|
): Effect.Effect<
|
|
967
969
|
GetAuthorizersCommandOutput,
|
|
968
|
-
Cause.
|
|
970
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
969
971
|
>;
|
|
970
972
|
|
|
971
973
|
/**
|
|
@@ -976,7 +978,7 @@ interface ApiGatewayV2Service$ {
|
|
|
976
978
|
options?: HttpHandlerOptions,
|
|
977
979
|
): Effect.Effect<
|
|
978
980
|
GetDeploymentCommandOutput,
|
|
979
|
-
Cause.
|
|
981
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
980
982
|
>;
|
|
981
983
|
|
|
982
984
|
/**
|
|
@@ -987,7 +989,7 @@ interface ApiGatewayV2Service$ {
|
|
|
987
989
|
options?: HttpHandlerOptions,
|
|
988
990
|
): Effect.Effect<
|
|
989
991
|
GetDeploymentsCommandOutput,
|
|
990
|
-
Cause.
|
|
992
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
991
993
|
>;
|
|
992
994
|
|
|
993
995
|
/**
|
|
@@ -998,7 +1000,7 @@ interface ApiGatewayV2Service$ {
|
|
|
998
1000
|
options?: HttpHandlerOptions,
|
|
999
1001
|
): Effect.Effect<
|
|
1000
1002
|
GetDomainNameCommandOutput,
|
|
1001
|
-
Cause.
|
|
1003
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1002
1004
|
>;
|
|
1003
1005
|
|
|
1004
1006
|
/**
|
|
@@ -1009,7 +1011,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1009
1011
|
options?: HttpHandlerOptions,
|
|
1010
1012
|
): Effect.Effect<
|
|
1011
1013
|
GetDomainNamesCommandOutput,
|
|
1012
|
-
Cause.
|
|
1014
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1013
1015
|
>;
|
|
1014
1016
|
|
|
1015
1017
|
/**
|
|
@@ -1020,7 +1022,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1020
1022
|
options?: HttpHandlerOptions,
|
|
1021
1023
|
): Effect.Effect<
|
|
1022
1024
|
GetIntegrationCommandOutput,
|
|
1023
|
-
Cause.
|
|
1025
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1024
1026
|
>;
|
|
1025
1027
|
|
|
1026
1028
|
/**
|
|
@@ -1031,7 +1033,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1031
1033
|
options?: HttpHandlerOptions,
|
|
1032
1034
|
): Effect.Effect<
|
|
1033
1035
|
GetIntegrationResponseCommandOutput,
|
|
1034
|
-
Cause.
|
|
1036
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1035
1037
|
>;
|
|
1036
1038
|
|
|
1037
1039
|
/**
|
|
@@ -1042,7 +1044,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1042
1044
|
options?: HttpHandlerOptions,
|
|
1043
1045
|
): Effect.Effect<
|
|
1044
1046
|
GetIntegrationResponsesCommandOutput,
|
|
1045
|
-
Cause.
|
|
1047
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1046
1048
|
>;
|
|
1047
1049
|
|
|
1048
1050
|
/**
|
|
@@ -1053,7 +1055,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1053
1055
|
options?: HttpHandlerOptions,
|
|
1054
1056
|
): Effect.Effect<
|
|
1055
1057
|
GetIntegrationsCommandOutput,
|
|
1056
|
-
Cause.
|
|
1058
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1057
1059
|
>;
|
|
1058
1060
|
|
|
1059
1061
|
/**
|
|
@@ -1064,7 +1066,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1064
1066
|
options?: HttpHandlerOptions,
|
|
1065
1067
|
): Effect.Effect<
|
|
1066
1068
|
GetModelCommandOutput,
|
|
1067
|
-
Cause.
|
|
1069
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1068
1070
|
>;
|
|
1069
1071
|
|
|
1070
1072
|
/**
|
|
@@ -1075,7 +1077,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1075
1077
|
options?: HttpHandlerOptions,
|
|
1076
1078
|
): Effect.Effect<
|
|
1077
1079
|
GetModelTemplateCommandOutput,
|
|
1078
|
-
Cause.
|
|
1080
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1079
1081
|
>;
|
|
1080
1082
|
|
|
1081
1083
|
/**
|
|
@@ -1086,7 +1088,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1086
1088
|
options?: HttpHandlerOptions,
|
|
1087
1089
|
): Effect.Effect<
|
|
1088
1090
|
GetModelsCommandOutput,
|
|
1089
|
-
Cause.
|
|
1091
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1090
1092
|
>;
|
|
1091
1093
|
|
|
1092
1094
|
/**
|
|
@@ -1097,7 +1099,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1097
1099
|
options?: HttpHandlerOptions,
|
|
1098
1100
|
): Effect.Effect<
|
|
1099
1101
|
GetPortalCommandOutput,
|
|
1100
|
-
Cause.
|
|
1102
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1101
1103
|
>;
|
|
1102
1104
|
|
|
1103
1105
|
/**
|
|
@@ -1108,7 +1110,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1108
1110
|
options?: HttpHandlerOptions,
|
|
1109
1111
|
): Effect.Effect<
|
|
1110
1112
|
GetPortalProductCommandOutput,
|
|
1111
|
-
Cause.
|
|
1113
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1112
1114
|
>;
|
|
1113
1115
|
|
|
1114
1116
|
/**
|
|
@@ -1119,7 +1121,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1119
1121
|
options?: HttpHandlerOptions,
|
|
1120
1122
|
): Effect.Effect<
|
|
1121
1123
|
GetPortalProductSharingPolicyCommandOutput,
|
|
1122
|
-
Cause.
|
|
1124
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1123
1125
|
>;
|
|
1124
1126
|
|
|
1125
1127
|
/**
|
|
@@ -1130,7 +1132,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1130
1132
|
options?: HttpHandlerOptions,
|
|
1131
1133
|
): Effect.Effect<
|
|
1132
1134
|
GetProductPageCommandOutput,
|
|
1133
|
-
Cause.
|
|
1135
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1134
1136
|
>;
|
|
1135
1137
|
|
|
1136
1138
|
/**
|
|
@@ -1141,7 +1143,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1141
1143
|
options?: HttpHandlerOptions,
|
|
1142
1144
|
): Effect.Effect<
|
|
1143
1145
|
GetProductRestEndpointPageCommandOutput,
|
|
1144
|
-
Cause.
|
|
1146
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1145
1147
|
>;
|
|
1146
1148
|
|
|
1147
1149
|
/**
|
|
@@ -1152,7 +1154,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1152
1154
|
options?: HttpHandlerOptions,
|
|
1153
1155
|
): Effect.Effect<
|
|
1154
1156
|
GetRouteCommandOutput,
|
|
1155
|
-
Cause.
|
|
1157
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1156
1158
|
>;
|
|
1157
1159
|
|
|
1158
1160
|
/**
|
|
@@ -1163,7 +1165,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1163
1165
|
options?: HttpHandlerOptions,
|
|
1164
1166
|
): Effect.Effect<
|
|
1165
1167
|
GetRouteResponseCommandOutput,
|
|
1166
|
-
Cause.
|
|
1168
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1167
1169
|
>;
|
|
1168
1170
|
|
|
1169
1171
|
/**
|
|
@@ -1174,7 +1176,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1174
1176
|
options?: HttpHandlerOptions,
|
|
1175
1177
|
): Effect.Effect<
|
|
1176
1178
|
GetRouteResponsesCommandOutput,
|
|
1177
|
-
Cause.
|
|
1179
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1178
1180
|
>;
|
|
1179
1181
|
|
|
1180
1182
|
/**
|
|
@@ -1185,7 +1187,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1185
1187
|
options?: HttpHandlerOptions,
|
|
1186
1188
|
): Effect.Effect<
|
|
1187
1189
|
GetRoutesCommandOutput,
|
|
1188
|
-
Cause.
|
|
1190
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1189
1191
|
>;
|
|
1190
1192
|
|
|
1191
1193
|
/**
|
|
@@ -1196,7 +1198,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1196
1198
|
options?: HttpHandlerOptions,
|
|
1197
1199
|
): Effect.Effect<
|
|
1198
1200
|
GetRoutingRuleCommandOutput,
|
|
1199
|
-
Cause.
|
|
1201
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1200
1202
|
>;
|
|
1201
1203
|
|
|
1202
1204
|
/**
|
|
@@ -1207,7 +1209,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1207
1209
|
options?: HttpHandlerOptions,
|
|
1208
1210
|
): Effect.Effect<
|
|
1209
1211
|
GetStageCommandOutput,
|
|
1210
|
-
Cause.
|
|
1212
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1211
1213
|
>;
|
|
1212
1214
|
|
|
1213
1215
|
/**
|
|
@@ -1218,7 +1220,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1218
1220
|
options?: HttpHandlerOptions,
|
|
1219
1221
|
): Effect.Effect<
|
|
1220
1222
|
GetStagesCommandOutput,
|
|
1221
|
-
Cause.
|
|
1223
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1222
1224
|
>;
|
|
1223
1225
|
|
|
1224
1226
|
/**
|
|
@@ -1229,7 +1231,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1229
1231
|
options?: HttpHandlerOptions,
|
|
1230
1232
|
): Effect.Effect<
|
|
1231
1233
|
GetTagsCommandOutput,
|
|
1232
|
-
Cause.
|
|
1234
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1233
1235
|
>;
|
|
1234
1236
|
|
|
1235
1237
|
/**
|
|
@@ -1240,7 +1242,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1240
1242
|
options?: HttpHandlerOptions,
|
|
1241
1243
|
): Effect.Effect<
|
|
1242
1244
|
GetVpcLinkCommandOutput,
|
|
1243
|
-
Cause.
|
|
1245
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1244
1246
|
>;
|
|
1245
1247
|
|
|
1246
1248
|
/**
|
|
@@ -1251,7 +1253,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1251
1253
|
options?: HttpHandlerOptions,
|
|
1252
1254
|
): Effect.Effect<
|
|
1253
1255
|
GetVpcLinksCommandOutput,
|
|
1254
|
-
Cause.
|
|
1256
|
+
Cause.TimeoutError | SdkError | BadRequestError | TooManyRequestsError
|
|
1255
1257
|
>;
|
|
1256
1258
|
|
|
1257
1259
|
/**
|
|
@@ -1262,7 +1264,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1262
1264
|
options?: HttpHandlerOptions,
|
|
1263
1265
|
): Effect.Effect<
|
|
1264
1266
|
ImportApiCommandOutput,
|
|
1265
|
-
Cause.
|
|
1267
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1266
1268
|
>;
|
|
1267
1269
|
|
|
1268
1270
|
/**
|
|
@@ -1273,7 +1275,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1273
1275
|
options?: HttpHandlerOptions,
|
|
1274
1276
|
): Effect.Effect<
|
|
1275
1277
|
ListPortalProductsCommandOutput,
|
|
1276
|
-
Cause.
|
|
1278
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
1277
1279
|
>;
|
|
1278
1280
|
|
|
1279
1281
|
/**
|
|
@@ -1284,7 +1286,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1284
1286
|
options?: HttpHandlerOptions,
|
|
1285
1287
|
): Effect.Effect<
|
|
1286
1288
|
ListPortalsCommandOutput,
|
|
1287
|
-
Cause.
|
|
1289
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
1288
1290
|
>;
|
|
1289
1291
|
|
|
1290
1292
|
/**
|
|
@@ -1295,7 +1297,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1295
1297
|
options?: HttpHandlerOptions,
|
|
1296
1298
|
): Effect.Effect<
|
|
1297
1299
|
ListProductPagesCommandOutput,
|
|
1298
|
-
Cause.
|
|
1300
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1299
1301
|
>;
|
|
1300
1302
|
|
|
1301
1303
|
/**
|
|
@@ -1306,7 +1308,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1306
1308
|
options?: HttpHandlerOptions,
|
|
1307
1309
|
): Effect.Effect<
|
|
1308
1310
|
ListProductRestEndpointPagesCommandOutput,
|
|
1309
|
-
Cause.
|
|
1311
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1310
1312
|
>;
|
|
1311
1313
|
|
|
1312
1314
|
/**
|
|
@@ -1317,7 +1319,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1317
1319
|
options?: HttpHandlerOptions,
|
|
1318
1320
|
): Effect.Effect<
|
|
1319
1321
|
ListRoutingRulesCommandOutput,
|
|
1320
|
-
Cause.
|
|
1322
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1321
1323
|
>;
|
|
1322
1324
|
|
|
1323
1325
|
/**
|
|
@@ -1328,7 +1330,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1328
1330
|
options?: HttpHandlerOptions,
|
|
1329
1331
|
): Effect.Effect<
|
|
1330
1332
|
PreviewPortalCommandOutput,
|
|
1331
|
-
| Cause.
|
|
1333
|
+
| Cause.TimeoutError
|
|
1332
1334
|
| SdkError
|
|
1333
1335
|
| AccessDeniedError
|
|
1334
1336
|
| BadRequestError
|
|
@@ -1345,7 +1347,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1345
1347
|
options?: HttpHandlerOptions,
|
|
1346
1348
|
): Effect.Effect<
|
|
1347
1349
|
PublishPortalCommandOutput,
|
|
1348
|
-
| Cause.
|
|
1350
|
+
| Cause.TimeoutError
|
|
1349
1351
|
| SdkError
|
|
1350
1352
|
| AccessDeniedError
|
|
1351
1353
|
| BadRequestError
|
|
@@ -1362,7 +1364,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1362
1364
|
options?: HttpHandlerOptions,
|
|
1363
1365
|
): Effect.Effect<
|
|
1364
1366
|
PutPortalProductSharingPolicyCommandOutput,
|
|
1365
|
-
Cause.
|
|
1367
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1366
1368
|
>;
|
|
1367
1369
|
|
|
1368
1370
|
/**
|
|
@@ -1373,7 +1375,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1373
1375
|
options?: HttpHandlerOptions,
|
|
1374
1376
|
): Effect.Effect<
|
|
1375
1377
|
PutRoutingRuleCommandOutput,
|
|
1376
|
-
Cause.
|
|
1378
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1377
1379
|
>;
|
|
1378
1380
|
|
|
1379
1381
|
/**
|
|
@@ -1384,7 +1386,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1384
1386
|
options?: HttpHandlerOptions,
|
|
1385
1387
|
): Effect.Effect<
|
|
1386
1388
|
ReimportApiCommandOutput,
|
|
1387
|
-
Cause.
|
|
1389
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1388
1390
|
>;
|
|
1389
1391
|
|
|
1390
1392
|
/**
|
|
@@ -1395,7 +1397,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1395
1397
|
options?: HttpHandlerOptions,
|
|
1396
1398
|
): Effect.Effect<
|
|
1397
1399
|
ResetAuthorizersCacheCommandOutput,
|
|
1398
|
-
Cause.
|
|
1400
|
+
Cause.TimeoutError | SdkError | NotFoundError | TooManyRequestsError
|
|
1399
1401
|
>;
|
|
1400
1402
|
|
|
1401
1403
|
/**
|
|
@@ -1406,7 +1408,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1406
1408
|
options?: HttpHandlerOptions,
|
|
1407
1409
|
): Effect.Effect<
|
|
1408
1410
|
TagResourceCommandOutput,
|
|
1409
|
-
Cause.
|
|
1411
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1410
1412
|
>;
|
|
1411
1413
|
|
|
1412
1414
|
/**
|
|
@@ -1417,7 +1419,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1417
1419
|
options?: HttpHandlerOptions,
|
|
1418
1420
|
): Effect.Effect<
|
|
1419
1421
|
UntagResourceCommandOutput,
|
|
1420
|
-
Cause.
|
|
1422
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1421
1423
|
>;
|
|
1422
1424
|
|
|
1423
1425
|
/**
|
|
@@ -1428,7 +1430,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1428
1430
|
options?: HttpHandlerOptions,
|
|
1429
1431
|
): Effect.Effect<
|
|
1430
1432
|
UpdateApiCommandOutput,
|
|
1431
|
-
Cause.
|
|
1433
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1432
1434
|
>;
|
|
1433
1435
|
|
|
1434
1436
|
/**
|
|
@@ -1439,7 +1441,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1439
1441
|
options?: HttpHandlerOptions,
|
|
1440
1442
|
): Effect.Effect<
|
|
1441
1443
|
UpdateApiMappingCommandOutput,
|
|
1442
|
-
Cause.
|
|
1444
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1443
1445
|
>;
|
|
1444
1446
|
|
|
1445
1447
|
/**
|
|
@@ -1450,7 +1452,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1450
1452
|
options?: HttpHandlerOptions,
|
|
1451
1453
|
): Effect.Effect<
|
|
1452
1454
|
UpdateAuthorizerCommandOutput,
|
|
1453
|
-
Cause.
|
|
1455
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1454
1456
|
>;
|
|
1455
1457
|
|
|
1456
1458
|
/**
|
|
@@ -1461,7 +1463,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1461
1463
|
options?: HttpHandlerOptions,
|
|
1462
1464
|
): Effect.Effect<
|
|
1463
1465
|
UpdateDeploymentCommandOutput,
|
|
1464
|
-
Cause.
|
|
1466
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1465
1467
|
>;
|
|
1466
1468
|
|
|
1467
1469
|
/**
|
|
@@ -1472,7 +1474,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1472
1474
|
options?: HttpHandlerOptions,
|
|
1473
1475
|
): Effect.Effect<
|
|
1474
1476
|
UpdateDomainNameCommandOutput,
|
|
1475
|
-
Cause.
|
|
1477
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1476
1478
|
>;
|
|
1477
1479
|
|
|
1478
1480
|
/**
|
|
@@ -1483,7 +1485,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1483
1485
|
options?: HttpHandlerOptions,
|
|
1484
1486
|
): Effect.Effect<
|
|
1485
1487
|
UpdateIntegrationCommandOutput,
|
|
1486
|
-
Cause.
|
|
1488
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1487
1489
|
>;
|
|
1488
1490
|
|
|
1489
1491
|
/**
|
|
@@ -1494,7 +1496,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1494
1496
|
options?: HttpHandlerOptions,
|
|
1495
1497
|
): Effect.Effect<
|
|
1496
1498
|
UpdateIntegrationResponseCommandOutput,
|
|
1497
|
-
Cause.
|
|
1499
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1498
1500
|
>;
|
|
1499
1501
|
|
|
1500
1502
|
/**
|
|
@@ -1505,7 +1507,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1505
1507
|
options?: HttpHandlerOptions,
|
|
1506
1508
|
): Effect.Effect<
|
|
1507
1509
|
UpdateModelCommandOutput,
|
|
1508
|
-
Cause.
|
|
1510
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1509
1511
|
>;
|
|
1510
1512
|
|
|
1511
1513
|
/**
|
|
@@ -1516,7 +1518,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1516
1518
|
options?: HttpHandlerOptions,
|
|
1517
1519
|
): Effect.Effect<
|
|
1518
1520
|
UpdatePortalCommandOutput,
|
|
1519
|
-
| Cause.
|
|
1521
|
+
| Cause.TimeoutError
|
|
1520
1522
|
| SdkError
|
|
1521
1523
|
| AccessDeniedError
|
|
1522
1524
|
| BadRequestError
|
|
@@ -1533,7 +1535,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1533
1535
|
options?: HttpHandlerOptions,
|
|
1534
1536
|
): Effect.Effect<
|
|
1535
1537
|
UpdatePortalProductCommandOutput,
|
|
1536
|
-
Cause.
|
|
1538
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1537
1539
|
>;
|
|
1538
1540
|
|
|
1539
1541
|
/**
|
|
@@ -1544,7 +1546,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1544
1546
|
options?: HttpHandlerOptions,
|
|
1545
1547
|
): Effect.Effect<
|
|
1546
1548
|
UpdateProductPageCommandOutput,
|
|
1547
|
-
Cause.
|
|
1549
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1548
1550
|
>;
|
|
1549
1551
|
|
|
1550
1552
|
/**
|
|
@@ -1555,7 +1557,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1555
1557
|
options?: HttpHandlerOptions,
|
|
1556
1558
|
): Effect.Effect<
|
|
1557
1559
|
UpdateProductRestEndpointPageCommandOutput,
|
|
1558
|
-
Cause.
|
|
1560
|
+
Cause.TimeoutError | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1559
1561
|
>;
|
|
1560
1562
|
|
|
1561
1563
|
/**
|
|
@@ -1566,7 +1568,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1566
1568
|
options?: HttpHandlerOptions,
|
|
1567
1569
|
): Effect.Effect<
|
|
1568
1570
|
UpdateRouteCommandOutput,
|
|
1569
|
-
Cause.
|
|
1571
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1570
1572
|
>;
|
|
1571
1573
|
|
|
1572
1574
|
/**
|
|
@@ -1577,7 +1579,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1577
1579
|
options?: HttpHandlerOptions,
|
|
1578
1580
|
): Effect.Effect<
|
|
1579
1581
|
UpdateRouteResponseCommandOutput,
|
|
1580
|
-
Cause.
|
|
1582
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1581
1583
|
>;
|
|
1582
1584
|
|
|
1583
1585
|
/**
|
|
@@ -1588,7 +1590,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1588
1590
|
options?: HttpHandlerOptions,
|
|
1589
1591
|
): Effect.Effect<
|
|
1590
1592
|
UpdateStageCommandOutput,
|
|
1591
|
-
Cause.
|
|
1593
|
+
Cause.TimeoutError | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1592
1594
|
>;
|
|
1593
1595
|
|
|
1594
1596
|
/**
|
|
@@ -1599,7 +1601,7 @@ interface ApiGatewayV2Service$ {
|
|
|
1599
1601
|
options?: HttpHandlerOptions,
|
|
1600
1602
|
): Effect.Effect<
|
|
1601
1603
|
UpdateVpcLinkCommandOutput,
|
|
1602
|
-
Cause.
|
|
1604
|
+
Cause.TimeoutError | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1603
1605
|
>;
|
|
1604
1606
|
}
|
|
1605
1607
|
|
|
@@ -1624,10 +1626,10 @@ export const makeApiGatewayV2Service = Effect.gen(function*() {
|
|
|
1624
1626
|
* @since 1.0.0
|
|
1625
1627
|
* @category models
|
|
1626
1628
|
*/
|
|
1627
|
-
export class ApiGatewayV2Service extends
|
|
1629
|
+
export class ApiGatewayV2Service extends ServiceMap.Service<
|
|
1628
1630
|
ApiGatewayV2Service,
|
|
1629
1631
|
ApiGatewayV2Service$
|
|
1630
|
-
>() {
|
|
1632
|
+
>()("@effect-aws/client-api-gateway-v2/ApiGatewayV2Service") {
|
|
1631
1633
|
static readonly defaultLayer = Layer.effect(this, makeApiGatewayV2Service).pipe(Layer.provide(Instance.layer));
|
|
1632
1634
|
static readonly layer = (config: ApiGatewayV2Service.Config) =>
|
|
1633
1635
|
Layer.effect(this, makeApiGatewayV2Service).pipe(
|