@effect-aws/client-cloudwatch-logs 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/dist/cjs/CloudWatchLogsService.d.ts +91 -90
- package/dist/cjs/CloudWatchLogsService.d.ts.map +1 -1
- package/dist/cjs/CloudWatchLogsService.js +1 -1
- package/dist/cjs/CloudWatchLogsService.js.map +1 -1
- package/dist/dts/CloudWatchLogsService.d.ts +91 -90
- package/dist/dts/CloudWatchLogsService.d.ts.map +1 -1
- package/dist/esm/CloudWatchLogsService.js +1 -1
- package/dist/esm/CloudWatchLogsService.js.map +1 -1
- package/package.json +2 -2
- package/src/CloudWatchLogsService.ts +271 -65
|
@@ -274,6 +274,7 @@ import {
|
|
|
274
274
|
} from "@aws-sdk/client-cloudwatch-logs";
|
|
275
275
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
276
276
|
import { Service } from "@effect-aws/commons";
|
|
277
|
+
import type { Cause } from "effect";
|
|
277
278
|
import { Effect, Layer } from "effect";
|
|
278
279
|
import * as Instance from "./CloudWatchLogsClientInstance.js";
|
|
279
280
|
import * as CloudWatchLogsServiceConfig from "./CloudWatchLogsServiceConfig.js";
|
|
@@ -401,7 +402,12 @@ interface CloudWatchLogsService$ {
|
|
|
401
402
|
options?: HttpHandlerOptions,
|
|
402
403
|
): Effect.Effect<
|
|
403
404
|
AssociateKmsKeyCommandOutput,
|
|
404
|
-
|
|
405
|
+
| Cause.TimeoutException
|
|
406
|
+
| SdkError
|
|
407
|
+
| InvalidParameterError
|
|
408
|
+
| OperationAbortedError
|
|
409
|
+
| ResourceNotFoundError
|
|
410
|
+
| ServiceUnavailableError
|
|
405
411
|
>;
|
|
406
412
|
|
|
407
413
|
/**
|
|
@@ -412,7 +418,12 @@ interface CloudWatchLogsService$ {
|
|
|
412
418
|
options?: HttpHandlerOptions,
|
|
413
419
|
): Effect.Effect<
|
|
414
420
|
CancelExportTaskCommandOutput,
|
|
415
|
-
|
|
421
|
+
| Cause.TimeoutException
|
|
422
|
+
| SdkError
|
|
423
|
+
| InvalidOperationError
|
|
424
|
+
| InvalidParameterError
|
|
425
|
+
| ResourceNotFoundError
|
|
426
|
+
| ServiceUnavailableError
|
|
416
427
|
>;
|
|
417
428
|
|
|
418
429
|
/**
|
|
@@ -423,6 +434,7 @@ interface CloudWatchLogsService$ {
|
|
|
423
434
|
options?: HttpHandlerOptions,
|
|
424
435
|
): Effect.Effect<
|
|
425
436
|
CreateDeliveryCommandOutput,
|
|
437
|
+
| Cause.TimeoutException
|
|
426
438
|
| SdkError
|
|
427
439
|
| AccessDeniedError
|
|
428
440
|
| ConflictError
|
|
@@ -441,6 +453,7 @@ interface CloudWatchLogsService$ {
|
|
|
441
453
|
options?: HttpHandlerOptions,
|
|
442
454
|
): Effect.Effect<
|
|
443
455
|
CreateExportTaskCommandOutput,
|
|
456
|
+
| Cause.TimeoutException
|
|
444
457
|
| SdkError
|
|
445
458
|
| InvalidParameterError
|
|
446
459
|
| LimitExceededError
|
|
@@ -458,6 +471,7 @@ interface CloudWatchLogsService$ {
|
|
|
458
471
|
options?: HttpHandlerOptions,
|
|
459
472
|
): Effect.Effect<
|
|
460
473
|
CreateLogAnomalyDetectorCommandOutput,
|
|
474
|
+
| Cause.TimeoutException
|
|
461
475
|
| SdkError
|
|
462
476
|
| InvalidParameterError
|
|
463
477
|
| LimitExceededError
|
|
@@ -474,6 +488,7 @@ interface CloudWatchLogsService$ {
|
|
|
474
488
|
options?: HttpHandlerOptions,
|
|
475
489
|
): Effect.Effect<
|
|
476
490
|
CreateLogGroupCommandOutput,
|
|
491
|
+
| Cause.TimeoutException
|
|
477
492
|
| SdkError
|
|
478
493
|
| InvalidParameterError
|
|
479
494
|
| LimitExceededError
|
|
@@ -490,7 +505,12 @@ interface CloudWatchLogsService$ {
|
|
|
490
505
|
options?: HttpHandlerOptions,
|
|
491
506
|
): Effect.Effect<
|
|
492
507
|
CreateLogStreamCommandOutput,
|
|
493
|
-
|
|
508
|
+
| Cause.TimeoutException
|
|
509
|
+
| SdkError
|
|
510
|
+
| InvalidParameterError
|
|
511
|
+
| ResourceAlreadyExistsError
|
|
512
|
+
| ResourceNotFoundError
|
|
513
|
+
| ServiceUnavailableError
|
|
494
514
|
>;
|
|
495
515
|
|
|
496
516
|
/**
|
|
@@ -501,7 +521,12 @@ interface CloudWatchLogsService$ {
|
|
|
501
521
|
options?: HttpHandlerOptions,
|
|
502
522
|
): Effect.Effect<
|
|
503
523
|
DeleteAccountPolicyCommandOutput,
|
|
504
|
-
|
|
524
|
+
| Cause.TimeoutException
|
|
525
|
+
| SdkError
|
|
526
|
+
| InvalidParameterError
|
|
527
|
+
| OperationAbortedError
|
|
528
|
+
| ResourceNotFoundError
|
|
529
|
+
| ServiceUnavailableError
|
|
505
530
|
>;
|
|
506
531
|
|
|
507
532
|
/**
|
|
@@ -512,7 +537,12 @@ interface CloudWatchLogsService$ {
|
|
|
512
537
|
options?: HttpHandlerOptions,
|
|
513
538
|
): Effect.Effect<
|
|
514
539
|
DeleteDataProtectionPolicyCommandOutput,
|
|
515
|
-
|
|
540
|
+
| Cause.TimeoutException
|
|
541
|
+
| SdkError
|
|
542
|
+
| InvalidParameterError
|
|
543
|
+
| OperationAbortedError
|
|
544
|
+
| ResourceNotFoundError
|
|
545
|
+
| ServiceUnavailableError
|
|
516
546
|
>;
|
|
517
547
|
|
|
518
548
|
/**
|
|
@@ -523,6 +553,7 @@ interface CloudWatchLogsService$ {
|
|
|
523
553
|
options?: HttpHandlerOptions,
|
|
524
554
|
): Effect.Effect<
|
|
525
555
|
DeleteDeliveryCommandOutput,
|
|
556
|
+
| Cause.TimeoutException
|
|
526
557
|
| SdkError
|
|
527
558
|
| ConflictError
|
|
528
559
|
| ResourceNotFoundError
|
|
@@ -540,6 +571,7 @@ interface CloudWatchLogsService$ {
|
|
|
540
571
|
options?: HttpHandlerOptions,
|
|
541
572
|
): Effect.Effect<
|
|
542
573
|
DeleteDeliveryDestinationCommandOutput,
|
|
574
|
+
| Cause.TimeoutException
|
|
543
575
|
| SdkError
|
|
544
576
|
| ConflictError
|
|
545
577
|
| ResourceNotFoundError
|
|
@@ -557,7 +589,12 @@ interface CloudWatchLogsService$ {
|
|
|
557
589
|
options?: HttpHandlerOptions,
|
|
558
590
|
): Effect.Effect<
|
|
559
591
|
DeleteDeliveryDestinationPolicyCommandOutput,
|
|
560
|
-
|
|
592
|
+
| Cause.TimeoutException
|
|
593
|
+
| SdkError
|
|
594
|
+
| ConflictError
|
|
595
|
+
| ResourceNotFoundError
|
|
596
|
+
| ServiceUnavailableError
|
|
597
|
+
| ValidationError
|
|
561
598
|
>;
|
|
562
599
|
|
|
563
600
|
/**
|
|
@@ -568,6 +605,7 @@ interface CloudWatchLogsService$ {
|
|
|
568
605
|
options?: HttpHandlerOptions,
|
|
569
606
|
): Effect.Effect<
|
|
570
607
|
DeleteDeliverySourceCommandOutput,
|
|
608
|
+
| Cause.TimeoutException
|
|
571
609
|
| SdkError
|
|
572
610
|
| ConflictError
|
|
573
611
|
| ResourceNotFoundError
|
|
@@ -585,7 +623,12 @@ interface CloudWatchLogsService$ {
|
|
|
585
623
|
options?: HttpHandlerOptions,
|
|
586
624
|
): Effect.Effect<
|
|
587
625
|
DeleteDestinationCommandOutput,
|
|
588
|
-
|
|
626
|
+
| Cause.TimeoutException
|
|
627
|
+
| SdkError
|
|
628
|
+
| InvalidParameterError
|
|
629
|
+
| OperationAbortedError
|
|
630
|
+
| ResourceNotFoundError
|
|
631
|
+
| ServiceUnavailableError
|
|
589
632
|
>;
|
|
590
633
|
|
|
591
634
|
/**
|
|
@@ -596,6 +639,7 @@ interface CloudWatchLogsService$ {
|
|
|
596
639
|
options?: HttpHandlerOptions,
|
|
597
640
|
): Effect.Effect<
|
|
598
641
|
DeleteIndexPolicyCommandOutput,
|
|
642
|
+
| Cause.TimeoutException
|
|
599
643
|
| SdkError
|
|
600
644
|
| InvalidParameterError
|
|
601
645
|
| LimitExceededError
|
|
@@ -612,7 +656,12 @@ interface CloudWatchLogsService$ {
|
|
|
612
656
|
options?: HttpHandlerOptions,
|
|
613
657
|
): Effect.Effect<
|
|
614
658
|
DeleteIntegrationCommandOutput,
|
|
615
|
-
|
|
659
|
+
| Cause.TimeoutException
|
|
660
|
+
| SdkError
|
|
661
|
+
| InvalidParameterError
|
|
662
|
+
| ResourceNotFoundError
|
|
663
|
+
| ServiceUnavailableError
|
|
664
|
+
| ValidationError
|
|
616
665
|
>;
|
|
617
666
|
|
|
618
667
|
/**
|
|
@@ -623,7 +672,12 @@ interface CloudWatchLogsService$ {
|
|
|
623
672
|
options?: HttpHandlerOptions,
|
|
624
673
|
): Effect.Effect<
|
|
625
674
|
DeleteLogAnomalyDetectorCommandOutput,
|
|
626
|
-
|
|
675
|
+
| Cause.TimeoutException
|
|
676
|
+
| SdkError
|
|
677
|
+
| InvalidParameterError
|
|
678
|
+
| OperationAbortedError
|
|
679
|
+
| ResourceNotFoundError
|
|
680
|
+
| ServiceUnavailableError
|
|
627
681
|
>;
|
|
628
682
|
|
|
629
683
|
/**
|
|
@@ -634,7 +688,12 @@ interface CloudWatchLogsService$ {
|
|
|
634
688
|
options?: HttpHandlerOptions,
|
|
635
689
|
): Effect.Effect<
|
|
636
690
|
DeleteLogGroupCommandOutput,
|
|
637
|
-
|
|
691
|
+
| Cause.TimeoutException
|
|
692
|
+
| SdkError
|
|
693
|
+
| InvalidParameterError
|
|
694
|
+
| OperationAbortedError
|
|
695
|
+
| ResourceNotFoundError
|
|
696
|
+
| ServiceUnavailableError
|
|
638
697
|
>;
|
|
639
698
|
|
|
640
699
|
/**
|
|
@@ -645,7 +704,12 @@ interface CloudWatchLogsService$ {
|
|
|
645
704
|
options?: HttpHandlerOptions,
|
|
646
705
|
): Effect.Effect<
|
|
647
706
|
DeleteLogStreamCommandOutput,
|
|
648
|
-
|
|
707
|
+
| Cause.TimeoutException
|
|
708
|
+
| SdkError
|
|
709
|
+
| InvalidParameterError
|
|
710
|
+
| OperationAbortedError
|
|
711
|
+
| ResourceNotFoundError
|
|
712
|
+
| ServiceUnavailableError
|
|
649
713
|
>;
|
|
650
714
|
|
|
651
715
|
/**
|
|
@@ -656,7 +720,12 @@ interface CloudWatchLogsService$ {
|
|
|
656
720
|
options?: HttpHandlerOptions,
|
|
657
721
|
): Effect.Effect<
|
|
658
722
|
DeleteMetricFilterCommandOutput,
|
|
659
|
-
|
|
723
|
+
| Cause.TimeoutException
|
|
724
|
+
| SdkError
|
|
725
|
+
| InvalidParameterError
|
|
726
|
+
| OperationAbortedError
|
|
727
|
+
| ResourceNotFoundError
|
|
728
|
+
| ServiceUnavailableError
|
|
660
729
|
>;
|
|
661
730
|
|
|
662
731
|
/**
|
|
@@ -667,7 +736,7 @@ interface CloudWatchLogsService$ {
|
|
|
667
736
|
options?: HttpHandlerOptions,
|
|
668
737
|
): Effect.Effect<
|
|
669
738
|
DeleteQueryDefinitionCommandOutput,
|
|
670
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
739
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
671
740
|
>;
|
|
672
741
|
|
|
673
742
|
/**
|
|
@@ -678,7 +747,7 @@ interface CloudWatchLogsService$ {
|
|
|
678
747
|
options?: HttpHandlerOptions,
|
|
679
748
|
): Effect.Effect<
|
|
680
749
|
DeleteResourcePolicyCommandOutput,
|
|
681
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
750
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
682
751
|
>;
|
|
683
752
|
|
|
684
753
|
/**
|
|
@@ -689,7 +758,12 @@ interface CloudWatchLogsService$ {
|
|
|
689
758
|
options?: HttpHandlerOptions,
|
|
690
759
|
): Effect.Effect<
|
|
691
760
|
DeleteRetentionPolicyCommandOutput,
|
|
692
|
-
|
|
761
|
+
| Cause.TimeoutException
|
|
762
|
+
| SdkError
|
|
763
|
+
| InvalidParameterError
|
|
764
|
+
| OperationAbortedError
|
|
765
|
+
| ResourceNotFoundError
|
|
766
|
+
| ServiceUnavailableError
|
|
693
767
|
>;
|
|
694
768
|
|
|
695
769
|
/**
|
|
@@ -700,7 +774,12 @@ interface CloudWatchLogsService$ {
|
|
|
700
774
|
options?: HttpHandlerOptions,
|
|
701
775
|
): Effect.Effect<
|
|
702
776
|
DeleteSubscriptionFilterCommandOutput,
|
|
703
|
-
|
|
777
|
+
| Cause.TimeoutException
|
|
778
|
+
| SdkError
|
|
779
|
+
| InvalidParameterError
|
|
780
|
+
| OperationAbortedError
|
|
781
|
+
| ResourceNotFoundError
|
|
782
|
+
| ServiceUnavailableError
|
|
704
783
|
>;
|
|
705
784
|
|
|
706
785
|
/**
|
|
@@ -711,6 +790,7 @@ interface CloudWatchLogsService$ {
|
|
|
711
790
|
options?: HttpHandlerOptions,
|
|
712
791
|
): Effect.Effect<
|
|
713
792
|
DeleteTransformerCommandOutput,
|
|
793
|
+
| Cause.TimeoutException
|
|
714
794
|
| SdkError
|
|
715
795
|
| InvalidOperationError
|
|
716
796
|
| InvalidParameterError
|
|
@@ -727,7 +807,12 @@ interface CloudWatchLogsService$ {
|
|
|
727
807
|
options?: HttpHandlerOptions,
|
|
728
808
|
): Effect.Effect<
|
|
729
809
|
DescribeAccountPoliciesCommandOutput,
|
|
730
|
-
|
|
810
|
+
| Cause.TimeoutException
|
|
811
|
+
| SdkError
|
|
812
|
+
| InvalidParameterError
|
|
813
|
+
| OperationAbortedError
|
|
814
|
+
| ResourceNotFoundError
|
|
815
|
+
| ServiceUnavailableError
|
|
731
816
|
>;
|
|
732
817
|
|
|
733
818
|
/**
|
|
@@ -738,7 +823,12 @@ interface CloudWatchLogsService$ {
|
|
|
738
823
|
options?: HttpHandlerOptions,
|
|
739
824
|
): Effect.Effect<
|
|
740
825
|
DescribeConfigurationTemplatesCommandOutput,
|
|
741
|
-
|
|
826
|
+
| Cause.TimeoutException
|
|
827
|
+
| SdkError
|
|
828
|
+
| ResourceNotFoundError
|
|
829
|
+
| ServiceUnavailableError
|
|
830
|
+
| ThrottlingError
|
|
831
|
+
| ValidationError
|
|
742
832
|
>;
|
|
743
833
|
|
|
744
834
|
/**
|
|
@@ -749,7 +839,12 @@ interface CloudWatchLogsService$ {
|
|
|
749
839
|
options?: HttpHandlerOptions,
|
|
750
840
|
): Effect.Effect<
|
|
751
841
|
DescribeDeliveriesCommandOutput,
|
|
752
|
-
|
|
842
|
+
| Cause.TimeoutException
|
|
843
|
+
| SdkError
|
|
844
|
+
| ServiceQuotaExceededError
|
|
845
|
+
| ServiceUnavailableError
|
|
846
|
+
| ThrottlingError
|
|
847
|
+
| ValidationError
|
|
753
848
|
>;
|
|
754
849
|
|
|
755
850
|
/**
|
|
@@ -760,7 +855,12 @@ interface CloudWatchLogsService$ {
|
|
|
760
855
|
options?: HttpHandlerOptions,
|
|
761
856
|
): Effect.Effect<
|
|
762
857
|
DescribeDeliveryDestinationsCommandOutput,
|
|
763
|
-
|
|
858
|
+
| Cause.TimeoutException
|
|
859
|
+
| SdkError
|
|
860
|
+
| ServiceQuotaExceededError
|
|
861
|
+
| ServiceUnavailableError
|
|
862
|
+
| ThrottlingError
|
|
863
|
+
| ValidationError
|
|
764
864
|
>;
|
|
765
865
|
|
|
766
866
|
/**
|
|
@@ -771,7 +871,12 @@ interface CloudWatchLogsService$ {
|
|
|
771
871
|
options?: HttpHandlerOptions,
|
|
772
872
|
): Effect.Effect<
|
|
773
873
|
DescribeDeliverySourcesCommandOutput,
|
|
774
|
-
|
|
874
|
+
| Cause.TimeoutException
|
|
875
|
+
| SdkError
|
|
876
|
+
| ServiceQuotaExceededError
|
|
877
|
+
| ServiceUnavailableError
|
|
878
|
+
| ThrottlingError
|
|
879
|
+
| ValidationError
|
|
775
880
|
>;
|
|
776
881
|
|
|
777
882
|
/**
|
|
@@ -782,7 +887,7 @@ interface CloudWatchLogsService$ {
|
|
|
782
887
|
options?: HttpHandlerOptions,
|
|
783
888
|
): Effect.Effect<
|
|
784
889
|
DescribeDestinationsCommandOutput,
|
|
785
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
890
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
786
891
|
>;
|
|
787
892
|
|
|
788
893
|
/**
|
|
@@ -793,7 +898,7 @@ interface CloudWatchLogsService$ {
|
|
|
793
898
|
options?: HttpHandlerOptions,
|
|
794
899
|
): Effect.Effect<
|
|
795
900
|
DescribeExportTasksCommandOutput,
|
|
796
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
901
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
797
902
|
>;
|
|
798
903
|
|
|
799
904
|
/**
|
|
@@ -804,6 +909,7 @@ interface CloudWatchLogsService$ {
|
|
|
804
909
|
options?: HttpHandlerOptions,
|
|
805
910
|
): Effect.Effect<
|
|
806
911
|
DescribeFieldIndexesCommandOutput,
|
|
912
|
+
| Cause.TimeoutException
|
|
807
913
|
| SdkError
|
|
808
914
|
| InvalidParameterError
|
|
809
915
|
| LimitExceededError
|
|
@@ -820,6 +926,7 @@ interface CloudWatchLogsService$ {
|
|
|
820
926
|
options?: HttpHandlerOptions,
|
|
821
927
|
): Effect.Effect<
|
|
822
928
|
DescribeIndexPoliciesCommandOutput,
|
|
929
|
+
| Cause.TimeoutException
|
|
823
930
|
| SdkError
|
|
824
931
|
| InvalidParameterError
|
|
825
932
|
| LimitExceededError
|
|
@@ -836,7 +943,7 @@ interface CloudWatchLogsService$ {
|
|
|
836
943
|
options?: HttpHandlerOptions,
|
|
837
944
|
): Effect.Effect<
|
|
838
945
|
DescribeLogGroupsCommandOutput,
|
|
839
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
946
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
840
947
|
>;
|
|
841
948
|
|
|
842
949
|
/**
|
|
@@ -847,7 +954,7 @@ interface CloudWatchLogsService$ {
|
|
|
847
954
|
options?: HttpHandlerOptions,
|
|
848
955
|
): Effect.Effect<
|
|
849
956
|
DescribeLogStreamsCommandOutput,
|
|
850
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
957
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
851
958
|
>;
|
|
852
959
|
|
|
853
960
|
/**
|
|
@@ -858,7 +965,7 @@ interface CloudWatchLogsService$ {
|
|
|
858
965
|
options?: HttpHandlerOptions,
|
|
859
966
|
): Effect.Effect<
|
|
860
967
|
DescribeMetricFiltersCommandOutput,
|
|
861
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
968
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
862
969
|
>;
|
|
863
970
|
|
|
864
971
|
/**
|
|
@@ -869,7 +976,7 @@ interface CloudWatchLogsService$ {
|
|
|
869
976
|
options?: HttpHandlerOptions,
|
|
870
977
|
): Effect.Effect<
|
|
871
978
|
DescribeQueriesCommandOutput,
|
|
872
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
979
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
873
980
|
>;
|
|
874
981
|
|
|
875
982
|
/**
|
|
@@ -880,7 +987,7 @@ interface CloudWatchLogsService$ {
|
|
|
880
987
|
options?: HttpHandlerOptions,
|
|
881
988
|
): Effect.Effect<
|
|
882
989
|
DescribeQueryDefinitionsCommandOutput,
|
|
883
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
990
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
884
991
|
>;
|
|
885
992
|
|
|
886
993
|
/**
|
|
@@ -891,7 +998,7 @@ interface CloudWatchLogsService$ {
|
|
|
891
998
|
options?: HttpHandlerOptions,
|
|
892
999
|
): Effect.Effect<
|
|
893
1000
|
DescribeResourcePoliciesCommandOutput,
|
|
894
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
1001
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
895
1002
|
>;
|
|
896
1003
|
|
|
897
1004
|
/**
|
|
@@ -902,7 +1009,7 @@ interface CloudWatchLogsService$ {
|
|
|
902
1009
|
options?: HttpHandlerOptions,
|
|
903
1010
|
): Effect.Effect<
|
|
904
1011
|
DescribeSubscriptionFiltersCommandOutput,
|
|
905
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1012
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
906
1013
|
>;
|
|
907
1014
|
|
|
908
1015
|
/**
|
|
@@ -913,7 +1020,12 @@ interface CloudWatchLogsService$ {
|
|
|
913
1020
|
options?: HttpHandlerOptions,
|
|
914
1021
|
): Effect.Effect<
|
|
915
1022
|
DisassociateKmsKeyCommandOutput,
|
|
916
|
-
|
|
1023
|
+
| Cause.TimeoutException
|
|
1024
|
+
| SdkError
|
|
1025
|
+
| InvalidParameterError
|
|
1026
|
+
| OperationAbortedError
|
|
1027
|
+
| ResourceNotFoundError
|
|
1028
|
+
| ServiceUnavailableError
|
|
917
1029
|
>;
|
|
918
1030
|
|
|
919
1031
|
/**
|
|
@@ -924,7 +1036,7 @@ interface CloudWatchLogsService$ {
|
|
|
924
1036
|
options?: HttpHandlerOptions,
|
|
925
1037
|
): Effect.Effect<
|
|
926
1038
|
FilterLogEventsCommandOutput,
|
|
927
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1039
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
928
1040
|
>;
|
|
929
1041
|
|
|
930
1042
|
/**
|
|
@@ -935,7 +1047,12 @@ interface CloudWatchLogsService$ {
|
|
|
935
1047
|
options?: HttpHandlerOptions,
|
|
936
1048
|
): Effect.Effect<
|
|
937
1049
|
GetDataProtectionPolicyCommandOutput,
|
|
938
|
-
|
|
1050
|
+
| Cause.TimeoutException
|
|
1051
|
+
| SdkError
|
|
1052
|
+
| InvalidParameterError
|
|
1053
|
+
| OperationAbortedError
|
|
1054
|
+
| ResourceNotFoundError
|
|
1055
|
+
| ServiceUnavailableError
|
|
939
1056
|
>;
|
|
940
1057
|
|
|
941
1058
|
/**
|
|
@@ -946,6 +1063,7 @@ interface CloudWatchLogsService$ {
|
|
|
946
1063
|
options?: HttpHandlerOptions,
|
|
947
1064
|
): Effect.Effect<
|
|
948
1065
|
GetDeliveryCommandOutput,
|
|
1066
|
+
| Cause.TimeoutException
|
|
949
1067
|
| SdkError
|
|
950
1068
|
| ResourceNotFoundError
|
|
951
1069
|
| ServiceQuotaExceededError
|
|
@@ -962,6 +1080,7 @@ interface CloudWatchLogsService$ {
|
|
|
962
1080
|
options?: HttpHandlerOptions,
|
|
963
1081
|
): Effect.Effect<
|
|
964
1082
|
GetDeliveryDestinationCommandOutput,
|
|
1083
|
+
| Cause.TimeoutException
|
|
965
1084
|
| SdkError
|
|
966
1085
|
| ResourceNotFoundError
|
|
967
1086
|
| ServiceQuotaExceededError
|
|
@@ -978,7 +1097,7 @@ interface CloudWatchLogsService$ {
|
|
|
978
1097
|
options?: HttpHandlerOptions,
|
|
979
1098
|
): Effect.Effect<
|
|
980
1099
|
GetDeliveryDestinationPolicyCommandOutput,
|
|
981
|
-
SdkError | ResourceNotFoundError | ServiceUnavailableError | ValidationError
|
|
1100
|
+
Cause.TimeoutException | SdkError | ResourceNotFoundError | ServiceUnavailableError | ValidationError
|
|
982
1101
|
>;
|
|
983
1102
|
|
|
984
1103
|
/**
|
|
@@ -989,6 +1108,7 @@ interface CloudWatchLogsService$ {
|
|
|
989
1108
|
options?: HttpHandlerOptions,
|
|
990
1109
|
): Effect.Effect<
|
|
991
1110
|
GetDeliverySourceCommandOutput,
|
|
1111
|
+
| Cause.TimeoutException
|
|
992
1112
|
| SdkError
|
|
993
1113
|
| ResourceNotFoundError
|
|
994
1114
|
| ServiceQuotaExceededError
|
|
@@ -1005,7 +1125,7 @@ interface CloudWatchLogsService$ {
|
|
|
1005
1125
|
options?: HttpHandlerOptions,
|
|
1006
1126
|
): Effect.Effect<
|
|
1007
1127
|
GetIntegrationCommandOutput,
|
|
1008
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1128
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1009
1129
|
>;
|
|
1010
1130
|
|
|
1011
1131
|
/**
|
|
@@ -1016,7 +1136,12 @@ interface CloudWatchLogsService$ {
|
|
|
1016
1136
|
options?: HttpHandlerOptions,
|
|
1017
1137
|
): Effect.Effect<
|
|
1018
1138
|
GetLogAnomalyDetectorCommandOutput,
|
|
1019
|
-
|
|
1139
|
+
| Cause.TimeoutException
|
|
1140
|
+
| SdkError
|
|
1141
|
+
| InvalidParameterError
|
|
1142
|
+
| OperationAbortedError
|
|
1143
|
+
| ResourceNotFoundError
|
|
1144
|
+
| ServiceUnavailableError
|
|
1020
1145
|
>;
|
|
1021
1146
|
|
|
1022
1147
|
/**
|
|
@@ -1027,7 +1152,7 @@ interface CloudWatchLogsService$ {
|
|
|
1027
1152
|
options?: HttpHandlerOptions,
|
|
1028
1153
|
): Effect.Effect<
|
|
1029
1154
|
GetLogEventsCommandOutput,
|
|
1030
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1155
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1031
1156
|
>;
|
|
1032
1157
|
|
|
1033
1158
|
/**
|
|
@@ -1038,7 +1163,12 @@ interface CloudWatchLogsService$ {
|
|
|
1038
1163
|
options?: HttpHandlerOptions,
|
|
1039
1164
|
): Effect.Effect<
|
|
1040
1165
|
GetLogGroupFieldsCommandOutput,
|
|
1041
|
-
|
|
1166
|
+
| Cause.TimeoutException
|
|
1167
|
+
| SdkError
|
|
1168
|
+
| InvalidParameterError
|
|
1169
|
+
| LimitExceededError
|
|
1170
|
+
| ResourceNotFoundError
|
|
1171
|
+
| ServiceUnavailableError
|
|
1042
1172
|
>;
|
|
1043
1173
|
|
|
1044
1174
|
/**
|
|
@@ -1049,7 +1179,12 @@ interface CloudWatchLogsService$ {
|
|
|
1049
1179
|
options?: HttpHandlerOptions,
|
|
1050
1180
|
): Effect.Effect<
|
|
1051
1181
|
GetLogRecordCommandOutput,
|
|
1052
|
-
|
|
1182
|
+
| Cause.TimeoutException
|
|
1183
|
+
| SdkError
|
|
1184
|
+
| InvalidParameterError
|
|
1185
|
+
| LimitExceededError
|
|
1186
|
+
| ResourceNotFoundError
|
|
1187
|
+
| ServiceUnavailableError
|
|
1053
1188
|
>;
|
|
1054
1189
|
|
|
1055
1190
|
/**
|
|
@@ -1060,7 +1195,7 @@ interface CloudWatchLogsService$ {
|
|
|
1060
1195
|
options?: HttpHandlerOptions,
|
|
1061
1196
|
): Effect.Effect<
|
|
1062
1197
|
GetQueryResultsCommandOutput,
|
|
1063
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1198
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1064
1199
|
>;
|
|
1065
1200
|
|
|
1066
1201
|
/**
|
|
@@ -1071,7 +1206,12 @@ interface CloudWatchLogsService$ {
|
|
|
1071
1206
|
options?: HttpHandlerOptions,
|
|
1072
1207
|
): Effect.Effect<
|
|
1073
1208
|
GetTransformerCommandOutput,
|
|
1074
|
-
|
|
1209
|
+
| Cause.TimeoutException
|
|
1210
|
+
| SdkError
|
|
1211
|
+
| InvalidOperationError
|
|
1212
|
+
| InvalidParameterError
|
|
1213
|
+
| ResourceNotFoundError
|
|
1214
|
+
| ServiceUnavailableError
|
|
1075
1215
|
>;
|
|
1076
1216
|
|
|
1077
1217
|
/**
|
|
@@ -1082,7 +1222,12 @@ interface CloudWatchLogsService$ {
|
|
|
1082
1222
|
options?: HttpHandlerOptions,
|
|
1083
1223
|
): Effect.Effect<
|
|
1084
1224
|
ListAnomaliesCommandOutput,
|
|
1085
|
-
|
|
1225
|
+
| Cause.TimeoutException
|
|
1226
|
+
| SdkError
|
|
1227
|
+
| InvalidParameterError
|
|
1228
|
+
| OperationAbortedError
|
|
1229
|
+
| ResourceNotFoundError
|
|
1230
|
+
| ServiceUnavailableError
|
|
1086
1231
|
>;
|
|
1087
1232
|
|
|
1088
1233
|
/**
|
|
@@ -1093,7 +1238,7 @@ interface CloudWatchLogsService$ {
|
|
|
1093
1238
|
options?: HttpHandlerOptions,
|
|
1094
1239
|
): Effect.Effect<
|
|
1095
1240
|
ListIntegrationsCommandOutput,
|
|
1096
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
1241
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
1097
1242
|
>;
|
|
1098
1243
|
|
|
1099
1244
|
/**
|
|
@@ -1104,7 +1249,12 @@ interface CloudWatchLogsService$ {
|
|
|
1104
1249
|
options?: HttpHandlerOptions,
|
|
1105
1250
|
): Effect.Effect<
|
|
1106
1251
|
ListLogAnomalyDetectorsCommandOutput,
|
|
1107
|
-
|
|
1252
|
+
| Cause.TimeoutException
|
|
1253
|
+
| SdkError
|
|
1254
|
+
| InvalidParameterError
|
|
1255
|
+
| OperationAbortedError
|
|
1256
|
+
| ResourceNotFoundError
|
|
1257
|
+
| ServiceUnavailableError
|
|
1108
1258
|
>;
|
|
1109
1259
|
|
|
1110
1260
|
/**
|
|
@@ -1115,7 +1265,12 @@ interface CloudWatchLogsService$ {
|
|
|
1115
1265
|
options?: HttpHandlerOptions,
|
|
1116
1266
|
): Effect.Effect<
|
|
1117
1267
|
ListLogGroupsForQueryCommandOutput,
|
|
1118
|
-
|
|
1268
|
+
| Cause.TimeoutException
|
|
1269
|
+
| SdkError
|
|
1270
|
+
| AccessDeniedError
|
|
1271
|
+
| InvalidParameterError
|
|
1272
|
+
| ResourceNotFoundError
|
|
1273
|
+
| ServiceUnavailableError
|
|
1119
1274
|
>;
|
|
1120
1275
|
|
|
1121
1276
|
/**
|
|
@@ -1126,7 +1281,7 @@ interface CloudWatchLogsService$ {
|
|
|
1126
1281
|
options?: HttpHandlerOptions,
|
|
1127
1282
|
): Effect.Effect<
|
|
1128
1283
|
ListTagsForResourceCommandOutput,
|
|
1129
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1284
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1130
1285
|
>;
|
|
1131
1286
|
|
|
1132
1287
|
/**
|
|
@@ -1137,7 +1292,7 @@ interface CloudWatchLogsService$ {
|
|
|
1137
1292
|
options?: HttpHandlerOptions,
|
|
1138
1293
|
): Effect.Effect<
|
|
1139
1294
|
ListTagsLogGroupCommandOutput,
|
|
1140
|
-
SdkError | ResourceNotFoundError | ServiceUnavailableError
|
|
1295
|
+
Cause.TimeoutException | SdkError | ResourceNotFoundError | ServiceUnavailableError
|
|
1141
1296
|
>;
|
|
1142
1297
|
|
|
1143
1298
|
/**
|
|
@@ -1148,7 +1303,12 @@ interface CloudWatchLogsService$ {
|
|
|
1148
1303
|
options?: HttpHandlerOptions,
|
|
1149
1304
|
): Effect.Effect<
|
|
1150
1305
|
PutAccountPolicyCommandOutput,
|
|
1151
|
-
|
|
1306
|
+
| Cause.TimeoutException
|
|
1307
|
+
| SdkError
|
|
1308
|
+
| InvalidParameterError
|
|
1309
|
+
| LimitExceededError
|
|
1310
|
+
| OperationAbortedError
|
|
1311
|
+
| ServiceUnavailableError
|
|
1152
1312
|
>;
|
|
1153
1313
|
|
|
1154
1314
|
/**
|
|
@@ -1159,6 +1319,7 @@ interface CloudWatchLogsService$ {
|
|
|
1159
1319
|
options?: HttpHandlerOptions,
|
|
1160
1320
|
): Effect.Effect<
|
|
1161
1321
|
PutDataProtectionPolicyCommandOutput,
|
|
1322
|
+
| Cause.TimeoutException
|
|
1162
1323
|
| SdkError
|
|
1163
1324
|
| InvalidParameterError
|
|
1164
1325
|
| LimitExceededError
|
|
@@ -1175,6 +1336,7 @@ interface CloudWatchLogsService$ {
|
|
|
1175
1336
|
options?: HttpHandlerOptions,
|
|
1176
1337
|
): Effect.Effect<
|
|
1177
1338
|
PutDeliveryDestinationCommandOutput,
|
|
1339
|
+
| Cause.TimeoutException
|
|
1178
1340
|
| SdkError
|
|
1179
1341
|
| ConflictError
|
|
1180
1342
|
| ResourceNotFoundError
|
|
@@ -1192,7 +1354,12 @@ interface CloudWatchLogsService$ {
|
|
|
1192
1354
|
options?: HttpHandlerOptions,
|
|
1193
1355
|
): Effect.Effect<
|
|
1194
1356
|
PutDeliveryDestinationPolicyCommandOutput,
|
|
1195
|
-
|
|
1357
|
+
| Cause.TimeoutException
|
|
1358
|
+
| SdkError
|
|
1359
|
+
| ConflictError
|
|
1360
|
+
| ResourceNotFoundError
|
|
1361
|
+
| ServiceUnavailableError
|
|
1362
|
+
| ValidationError
|
|
1196
1363
|
>;
|
|
1197
1364
|
|
|
1198
1365
|
/**
|
|
@@ -1203,6 +1370,7 @@ interface CloudWatchLogsService$ {
|
|
|
1203
1370
|
options?: HttpHandlerOptions,
|
|
1204
1371
|
): Effect.Effect<
|
|
1205
1372
|
PutDeliverySourceCommandOutput,
|
|
1373
|
+
| Cause.TimeoutException
|
|
1206
1374
|
| SdkError
|
|
1207
1375
|
| ConflictError
|
|
1208
1376
|
| ResourceNotFoundError
|
|
@@ -1220,7 +1388,7 @@ interface CloudWatchLogsService$ {
|
|
|
1220
1388
|
options?: HttpHandlerOptions,
|
|
1221
1389
|
): Effect.Effect<
|
|
1222
1390
|
PutDestinationCommandOutput,
|
|
1223
|
-
SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
|
|
1391
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
|
|
1224
1392
|
>;
|
|
1225
1393
|
|
|
1226
1394
|
/**
|
|
@@ -1231,7 +1399,7 @@ interface CloudWatchLogsService$ {
|
|
|
1231
1399
|
options?: HttpHandlerOptions,
|
|
1232
1400
|
): Effect.Effect<
|
|
1233
1401
|
PutDestinationPolicyCommandOutput,
|
|
1234
|
-
SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
|
|
1402
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
|
|
1235
1403
|
>;
|
|
1236
1404
|
|
|
1237
1405
|
/**
|
|
@@ -1242,6 +1410,7 @@ interface CloudWatchLogsService$ {
|
|
|
1242
1410
|
options?: HttpHandlerOptions,
|
|
1243
1411
|
): Effect.Effect<
|
|
1244
1412
|
PutIndexPolicyCommandOutput,
|
|
1413
|
+
| Cause.TimeoutException
|
|
1245
1414
|
| SdkError
|
|
1246
1415
|
| InvalidParameterError
|
|
1247
1416
|
| LimitExceededError
|
|
@@ -1258,7 +1427,12 @@ interface CloudWatchLogsService$ {
|
|
|
1258
1427
|
options?: HttpHandlerOptions,
|
|
1259
1428
|
): Effect.Effect<
|
|
1260
1429
|
PutIntegrationCommandOutput,
|
|
1261
|
-
|
|
1430
|
+
| Cause.TimeoutException
|
|
1431
|
+
| SdkError
|
|
1432
|
+
| InvalidParameterError
|
|
1433
|
+
| LimitExceededError
|
|
1434
|
+
| ServiceUnavailableError
|
|
1435
|
+
| ValidationError
|
|
1262
1436
|
>;
|
|
1263
1437
|
|
|
1264
1438
|
/**
|
|
@@ -1269,6 +1443,7 @@ interface CloudWatchLogsService$ {
|
|
|
1269
1443
|
options?: HttpHandlerOptions,
|
|
1270
1444
|
): Effect.Effect<
|
|
1271
1445
|
PutLogEventsCommandOutput,
|
|
1446
|
+
| Cause.TimeoutException
|
|
1272
1447
|
| SdkError
|
|
1273
1448
|
| DataAlreadyAcceptedError
|
|
1274
1449
|
| InvalidParameterError
|
|
@@ -1286,6 +1461,7 @@ interface CloudWatchLogsService$ {
|
|
|
1286
1461
|
options?: HttpHandlerOptions,
|
|
1287
1462
|
): Effect.Effect<
|
|
1288
1463
|
PutMetricFilterCommandOutput,
|
|
1464
|
+
| Cause.TimeoutException
|
|
1289
1465
|
| SdkError
|
|
1290
1466
|
| InvalidOperationError
|
|
1291
1467
|
| InvalidParameterError
|
|
@@ -1303,7 +1479,12 @@ interface CloudWatchLogsService$ {
|
|
|
1303
1479
|
options?: HttpHandlerOptions,
|
|
1304
1480
|
): Effect.Effect<
|
|
1305
1481
|
PutQueryDefinitionCommandOutput,
|
|
1306
|
-
|
|
1482
|
+
| Cause.TimeoutException
|
|
1483
|
+
| SdkError
|
|
1484
|
+
| InvalidParameterError
|
|
1485
|
+
| LimitExceededError
|
|
1486
|
+
| ResourceNotFoundError
|
|
1487
|
+
| ServiceUnavailableError
|
|
1307
1488
|
>;
|
|
1308
1489
|
|
|
1309
1490
|
/**
|
|
@@ -1314,7 +1495,7 @@ interface CloudWatchLogsService$ {
|
|
|
1314
1495
|
options?: HttpHandlerOptions,
|
|
1315
1496
|
): Effect.Effect<
|
|
1316
1497
|
PutResourcePolicyCommandOutput,
|
|
1317
|
-
SdkError | InvalidParameterError | LimitExceededError | ServiceUnavailableError
|
|
1498
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | LimitExceededError | ServiceUnavailableError
|
|
1318
1499
|
>;
|
|
1319
1500
|
|
|
1320
1501
|
/**
|
|
@@ -1325,7 +1506,12 @@ interface CloudWatchLogsService$ {
|
|
|
1325
1506
|
options?: HttpHandlerOptions,
|
|
1326
1507
|
): Effect.Effect<
|
|
1327
1508
|
PutRetentionPolicyCommandOutput,
|
|
1328
|
-
|
|
1509
|
+
| Cause.TimeoutException
|
|
1510
|
+
| SdkError
|
|
1511
|
+
| InvalidParameterError
|
|
1512
|
+
| OperationAbortedError
|
|
1513
|
+
| ResourceNotFoundError
|
|
1514
|
+
| ServiceUnavailableError
|
|
1329
1515
|
>;
|
|
1330
1516
|
|
|
1331
1517
|
/**
|
|
@@ -1336,6 +1522,7 @@ interface CloudWatchLogsService$ {
|
|
|
1336
1522
|
options?: HttpHandlerOptions,
|
|
1337
1523
|
): Effect.Effect<
|
|
1338
1524
|
PutSubscriptionFilterCommandOutput,
|
|
1525
|
+
| Cause.TimeoutException
|
|
1339
1526
|
| SdkError
|
|
1340
1527
|
| InvalidOperationError
|
|
1341
1528
|
| InvalidParameterError
|
|
@@ -1353,6 +1540,7 @@ interface CloudWatchLogsService$ {
|
|
|
1353
1540
|
options?: HttpHandlerOptions,
|
|
1354
1541
|
): Effect.Effect<
|
|
1355
1542
|
PutTransformerCommandOutput,
|
|
1543
|
+
| Cause.TimeoutException
|
|
1356
1544
|
| SdkError
|
|
1357
1545
|
| InvalidOperationError
|
|
1358
1546
|
| InvalidParameterError
|
|
@@ -1370,6 +1558,7 @@ interface CloudWatchLogsService$ {
|
|
|
1370
1558
|
options?: HttpHandlerOptions,
|
|
1371
1559
|
): Effect.Effect<
|
|
1372
1560
|
StartLiveTailCommandOutput,
|
|
1561
|
+
| Cause.TimeoutException
|
|
1373
1562
|
| SdkError
|
|
1374
1563
|
| AccessDeniedError
|
|
1375
1564
|
| InvalidOperationError
|
|
@@ -1386,6 +1575,7 @@ interface CloudWatchLogsService$ {
|
|
|
1386
1575
|
options?: HttpHandlerOptions,
|
|
1387
1576
|
): Effect.Effect<
|
|
1388
1577
|
StartQueryCommandOutput,
|
|
1578
|
+
| Cause.TimeoutException
|
|
1389
1579
|
| SdkError
|
|
1390
1580
|
| InvalidParameterError
|
|
1391
1581
|
| LimitExceededError
|
|
@@ -1402,7 +1592,7 @@ interface CloudWatchLogsService$ {
|
|
|
1402
1592
|
options?: HttpHandlerOptions,
|
|
1403
1593
|
): Effect.Effect<
|
|
1404
1594
|
StopQueryCommandOutput,
|
|
1405
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1595
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1406
1596
|
>;
|
|
1407
1597
|
|
|
1408
1598
|
/**
|
|
@@ -1413,7 +1603,7 @@ interface CloudWatchLogsService$ {
|
|
|
1413
1603
|
options?: HttpHandlerOptions,
|
|
1414
1604
|
): Effect.Effect<
|
|
1415
1605
|
TagLogGroupCommandOutput,
|
|
1416
|
-
SdkError | InvalidParameterError | ResourceNotFoundError
|
|
1606
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError
|
|
1417
1607
|
>;
|
|
1418
1608
|
|
|
1419
1609
|
/**
|
|
@@ -1424,7 +1614,12 @@ interface CloudWatchLogsService$ {
|
|
|
1424
1614
|
options?: HttpHandlerOptions,
|
|
1425
1615
|
): Effect.Effect<
|
|
1426
1616
|
TagResourceCommandOutput,
|
|
1427
|
-
|
|
1617
|
+
| Cause.TimeoutException
|
|
1618
|
+
| SdkError
|
|
1619
|
+
| InvalidParameterError
|
|
1620
|
+
| ResourceNotFoundError
|
|
1621
|
+
| ServiceUnavailableError
|
|
1622
|
+
| TooManyTagsError
|
|
1428
1623
|
>;
|
|
1429
1624
|
|
|
1430
1625
|
/**
|
|
@@ -1435,7 +1630,7 @@ interface CloudWatchLogsService$ {
|
|
|
1435
1630
|
options?: HttpHandlerOptions,
|
|
1436
1631
|
): Effect.Effect<
|
|
1437
1632
|
TestMetricFilterCommandOutput,
|
|
1438
|
-
SdkError | InvalidParameterError | ServiceUnavailableError
|
|
1633
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
|
|
1439
1634
|
>;
|
|
1440
1635
|
|
|
1441
1636
|
/**
|
|
@@ -1446,7 +1641,7 @@ interface CloudWatchLogsService$ {
|
|
|
1446
1641
|
options?: HttpHandlerOptions,
|
|
1447
1642
|
): Effect.Effect<
|
|
1448
1643
|
TestTransformerCommandOutput,
|
|
1449
|
-
SdkError | InvalidOperationError | InvalidParameterError | ServiceUnavailableError
|
|
1644
|
+
Cause.TimeoutException | SdkError | InvalidOperationError | InvalidParameterError | ServiceUnavailableError
|
|
1450
1645
|
>;
|
|
1451
1646
|
|
|
1452
1647
|
/**
|
|
@@ -1457,7 +1652,7 @@ interface CloudWatchLogsService$ {
|
|
|
1457
1652
|
options?: HttpHandlerOptions,
|
|
1458
1653
|
): Effect.Effect<
|
|
1459
1654
|
UntagLogGroupCommandOutput,
|
|
1460
|
-
SdkError | ResourceNotFoundError
|
|
1655
|
+
Cause.TimeoutException | SdkError | ResourceNotFoundError
|
|
1461
1656
|
>;
|
|
1462
1657
|
|
|
1463
1658
|
/**
|
|
@@ -1468,7 +1663,7 @@ interface CloudWatchLogsService$ {
|
|
|
1468
1663
|
options?: HttpHandlerOptions,
|
|
1469
1664
|
): Effect.Effect<
|
|
1470
1665
|
UntagResourceCommandOutput,
|
|
1471
|
-
SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1666
|
+
Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
|
|
1472
1667
|
>;
|
|
1473
1668
|
|
|
1474
1669
|
/**
|
|
@@ -1479,7 +1674,12 @@ interface CloudWatchLogsService$ {
|
|
|
1479
1674
|
options?: HttpHandlerOptions,
|
|
1480
1675
|
): Effect.Effect<
|
|
1481
1676
|
UpdateAnomalyCommandOutput,
|
|
1482
|
-
|
|
1677
|
+
| Cause.TimeoutException
|
|
1678
|
+
| SdkError
|
|
1679
|
+
| InvalidParameterError
|
|
1680
|
+
| OperationAbortedError
|
|
1681
|
+
| ResourceNotFoundError
|
|
1682
|
+
| ServiceUnavailableError
|
|
1483
1683
|
>;
|
|
1484
1684
|
|
|
1485
1685
|
/**
|
|
@@ -1490,6 +1690,7 @@ interface CloudWatchLogsService$ {
|
|
|
1490
1690
|
options?: HttpHandlerOptions,
|
|
1491
1691
|
): Effect.Effect<
|
|
1492
1692
|
UpdateDeliveryConfigurationCommandOutput,
|
|
1693
|
+
| Cause.TimeoutException
|
|
1493
1694
|
| SdkError
|
|
1494
1695
|
| AccessDeniedError
|
|
1495
1696
|
| ConflictError
|
|
@@ -1507,7 +1708,12 @@ interface CloudWatchLogsService$ {
|
|
|
1507
1708
|
options?: HttpHandlerOptions,
|
|
1508
1709
|
): Effect.Effect<
|
|
1509
1710
|
UpdateLogAnomalyDetectorCommandOutput,
|
|
1510
|
-
|
|
1711
|
+
| Cause.TimeoutException
|
|
1712
|
+
| SdkError
|
|
1713
|
+
| InvalidParameterError
|
|
1714
|
+
| OperationAbortedError
|
|
1715
|
+
| ResourceNotFoundError
|
|
1716
|
+
| ServiceUnavailableError
|
|
1511
1717
|
>;
|
|
1512
1718
|
}
|
|
1513
1719
|
|
|
@@ -1518,7 +1724,7 @@ interface CloudWatchLogsService$ {
|
|
|
1518
1724
|
export const makeCloudWatchLogsService = Effect.gen(function*() {
|
|
1519
1725
|
const client = yield* Instance.CloudWatchLogsClientInstance;
|
|
1520
1726
|
|
|
1521
|
-
return Service.fromClientAndCommands<CloudWatchLogsService$>(
|
|
1727
|
+
return yield* Service.fromClientAndCommands<CloudWatchLogsService$>(
|
|
1522
1728
|
client,
|
|
1523
1729
|
commands,
|
|
1524
1730
|
{
|