@effect-aws/client-cloudwatch-logs 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.
Files changed (38) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -3
  3. package/dist/dts/CloudWatchLogsClientInstance.d.ts +4 -2
  4. package/dist/dts/CloudWatchLogsClientInstance.d.ts.map +1 -1
  5. package/dist/dts/CloudWatchLogsService.d.ts +112 -112
  6. package/dist/dts/CloudWatchLogsService.d.ts.map +1 -1
  7. package/dist/dts/CloudWatchLogsServiceConfig.d.ts +2 -1
  8. package/dist/dts/CloudWatchLogsServiceConfig.d.ts.map +1 -1
  9. package/dist/esm/CloudWatchLogsClientInstance.js +5 -3
  10. package/dist/esm/CloudWatchLogsClientInstance.js.map +1 -1
  11. package/dist/esm/CloudWatchLogsService.js +4 -2
  12. package/dist/esm/CloudWatchLogsService.js.map +1 -1
  13. package/dist/esm/CloudWatchLogsServiceConfig.js +7 -6
  14. package/dist/esm/CloudWatchLogsServiceConfig.js.map +1 -1
  15. package/package.json +8 -14
  16. package/src/CloudWatchLogsClientInstance.ts +9 -5
  17. package/src/CloudWatchLogsService.ts +113 -126
  18. package/src/CloudWatchLogsServiceConfig.ts +8 -7
  19. package/dist/cjs/CloudWatchLogsClientInstance.d.ts +0 -24
  20. package/dist/cjs/CloudWatchLogsClientInstance.d.ts.map +0 -1
  21. package/dist/cjs/CloudWatchLogsClientInstance.js +0 -50
  22. package/dist/cjs/CloudWatchLogsClientInstance.js.map +0 -1
  23. package/dist/cjs/CloudWatchLogsService.d.ts +0 -474
  24. package/dist/cjs/CloudWatchLogsService.d.ts.map +0 -1
  25. package/dist/cjs/CloudWatchLogsService.js +0 -166
  26. package/dist/cjs/CloudWatchLogsService.js.map +0 -1
  27. package/dist/cjs/CloudWatchLogsServiceConfig.d.ts +0 -25
  28. package/dist/cjs/CloudWatchLogsServiceConfig.d.ts.map +0 -1
  29. package/dist/cjs/CloudWatchLogsServiceConfig.js +0 -35
  30. package/dist/cjs/CloudWatchLogsServiceConfig.js.map +0 -1
  31. package/dist/cjs/Errors.d.ts +0 -28
  32. package/dist/cjs/Errors.d.ts.map +0 -1
  33. package/dist/cjs/Errors.js +0 -27
  34. package/dist/cjs/Errors.js.map +0 -1
  35. package/dist/cjs/index.d.ts +0 -44
  36. package/dist/cjs/index.d.ts.map +0 -1
  37. package/dist/cjs/index.js +0 -56
  38. package/dist/cjs/index.js.map +0 -1
@@ -328,8 +328,10 @@ import {
328
328
  } from "@aws-sdk/client-cloudwatch-logs";
329
329
  import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
330
330
  import { Service } from "@effect-aws/commons";
331
- import type { Cause } from "effect";
332
- import { Effect, Layer } from "effect";
331
+ import type * as Cause from "effect/Cause";
332
+ import * as Effect from "effect/Effect";
333
+ import * as Layer from "effect/Layer";
334
+ import * as ServiceMap from "effect/ServiceMap";
333
335
  import * as Instance from "./CloudWatchLogsClientInstance.js";
334
336
  import * as CloudWatchLogsServiceConfig from "./CloudWatchLogsServiceConfig.js";
335
337
  import type {
@@ -476,7 +478,7 @@ interface CloudWatchLogsService$ {
476
478
  options?: HttpHandlerOptions,
477
479
  ): Effect.Effect<
478
480
  AssociateKmsKeyCommandOutput,
479
- | Cause.TimeoutException
481
+ | Cause.TimeoutError
480
482
  | SdkError
481
483
  | InvalidParameterError
482
484
  | OperationAbortedError
@@ -492,7 +494,7 @@ interface CloudWatchLogsService$ {
492
494
  options?: HttpHandlerOptions,
493
495
  ): Effect.Effect<
494
496
  AssociateSourceToS3TableIntegrationCommandOutput,
495
- | Cause.TimeoutException
497
+ | Cause.TimeoutError
496
498
  | SdkError
497
499
  | AccessDeniedError
498
500
  | InternalServerError
@@ -509,7 +511,7 @@ interface CloudWatchLogsService$ {
509
511
  options?: HttpHandlerOptions,
510
512
  ): Effect.Effect<
511
513
  CancelExportTaskCommandOutput,
512
- | Cause.TimeoutException
514
+ | Cause.TimeoutError
513
515
  | SdkError
514
516
  | InvalidOperationError
515
517
  | InvalidParameterError
@@ -525,7 +527,7 @@ interface CloudWatchLogsService$ {
525
527
  options?: HttpHandlerOptions,
526
528
  ): Effect.Effect<
527
529
  CancelImportTaskCommandOutput,
528
- | Cause.TimeoutException
530
+ | Cause.TimeoutError
529
531
  | SdkError
530
532
  | AccessDeniedError
531
533
  | InvalidOperationError
@@ -542,7 +544,7 @@ interface CloudWatchLogsService$ {
542
544
  options?: HttpHandlerOptions,
543
545
  ): Effect.Effect<
544
546
  CreateDeliveryCommandOutput,
545
- | Cause.TimeoutException
547
+ | Cause.TimeoutError
546
548
  | SdkError
547
549
  | AccessDeniedError
548
550
  | ConflictError
@@ -561,7 +563,7 @@ interface CloudWatchLogsService$ {
561
563
  options?: HttpHandlerOptions,
562
564
  ): Effect.Effect<
563
565
  CreateExportTaskCommandOutput,
564
- | Cause.TimeoutException
566
+ | Cause.TimeoutError
565
567
  | SdkError
566
568
  | InvalidParameterError
567
569
  | LimitExceededError
@@ -579,7 +581,7 @@ interface CloudWatchLogsService$ {
579
581
  options?: HttpHandlerOptions,
580
582
  ): Effect.Effect<
581
583
  CreateImportTaskCommandOutput,
582
- | Cause.TimeoutException
584
+ | Cause.TimeoutError
583
585
  | SdkError
584
586
  | AccessDeniedError
585
587
  | ConflictError
@@ -598,7 +600,7 @@ interface CloudWatchLogsService$ {
598
600
  options?: HttpHandlerOptions,
599
601
  ): Effect.Effect<
600
602
  CreateLogAnomalyDetectorCommandOutput,
601
- | Cause.TimeoutException
603
+ | Cause.TimeoutError
602
604
  | SdkError
603
605
  | InvalidParameterError
604
606
  | LimitExceededError
@@ -615,7 +617,7 @@ interface CloudWatchLogsService$ {
615
617
  options?: HttpHandlerOptions,
616
618
  ): Effect.Effect<
617
619
  CreateLogGroupCommandOutput,
618
- | Cause.TimeoutException
620
+ | Cause.TimeoutError
619
621
  | SdkError
620
622
  | InvalidParameterError
621
623
  | LimitExceededError
@@ -632,7 +634,7 @@ interface CloudWatchLogsService$ {
632
634
  options?: HttpHandlerOptions,
633
635
  ): Effect.Effect<
634
636
  CreateLogStreamCommandOutput,
635
- | Cause.TimeoutException
637
+ | Cause.TimeoutError
636
638
  | SdkError
637
639
  | InvalidParameterError
638
640
  | ResourceAlreadyExistsError
@@ -648,7 +650,7 @@ interface CloudWatchLogsService$ {
648
650
  options?: HttpHandlerOptions,
649
651
  ): Effect.Effect<
650
652
  CreateScheduledQueryCommandOutput,
651
- | Cause.TimeoutException
653
+ | Cause.TimeoutError
652
654
  | SdkError
653
655
  | AccessDeniedError
654
656
  | ConflictError
@@ -667,7 +669,7 @@ interface CloudWatchLogsService$ {
667
669
  options?: HttpHandlerOptions,
668
670
  ): Effect.Effect<
669
671
  DeleteAccountPolicyCommandOutput,
670
- | Cause.TimeoutException
672
+ | Cause.TimeoutError
671
673
  | SdkError
672
674
  | InvalidParameterError
673
675
  | OperationAbortedError
@@ -683,7 +685,7 @@ interface CloudWatchLogsService$ {
683
685
  options?: HttpHandlerOptions,
684
686
  ): Effect.Effect<
685
687
  DeleteDataProtectionPolicyCommandOutput,
686
- | Cause.TimeoutException
688
+ | Cause.TimeoutError
687
689
  | SdkError
688
690
  | InvalidParameterError
689
691
  | OperationAbortedError
@@ -699,7 +701,7 @@ interface CloudWatchLogsService$ {
699
701
  options?: HttpHandlerOptions,
700
702
  ): Effect.Effect<
701
703
  DeleteDeliveryCommandOutput,
702
- | Cause.TimeoutException
704
+ | Cause.TimeoutError
703
705
  | SdkError
704
706
  | ConflictError
705
707
  | ResourceNotFoundError
@@ -717,7 +719,7 @@ interface CloudWatchLogsService$ {
717
719
  options?: HttpHandlerOptions,
718
720
  ): Effect.Effect<
719
721
  DeleteDeliveryDestinationCommandOutput,
720
- | Cause.TimeoutException
722
+ | Cause.TimeoutError
721
723
  | SdkError
722
724
  | ConflictError
723
725
  | ResourceNotFoundError
@@ -735,12 +737,7 @@ interface CloudWatchLogsService$ {
735
737
  options?: HttpHandlerOptions,
736
738
  ): Effect.Effect<
737
739
  DeleteDeliveryDestinationPolicyCommandOutput,
738
- | Cause.TimeoutException
739
- | SdkError
740
- | ConflictError
741
- | ResourceNotFoundError
742
- | ServiceUnavailableError
743
- | ValidationError
740
+ Cause.TimeoutError | SdkError | ConflictError | ResourceNotFoundError | ServiceUnavailableError | ValidationError
744
741
  >;
745
742
 
746
743
  /**
@@ -751,7 +748,7 @@ interface CloudWatchLogsService$ {
751
748
  options?: HttpHandlerOptions,
752
749
  ): Effect.Effect<
753
750
  DeleteDeliverySourceCommandOutput,
754
- | Cause.TimeoutException
751
+ | Cause.TimeoutError
755
752
  | SdkError
756
753
  | ConflictError
757
754
  | ResourceNotFoundError
@@ -769,7 +766,7 @@ interface CloudWatchLogsService$ {
769
766
  options?: HttpHandlerOptions,
770
767
  ): Effect.Effect<
771
768
  DeleteDestinationCommandOutput,
772
- | Cause.TimeoutException
769
+ | Cause.TimeoutError
773
770
  | SdkError
774
771
  | InvalidParameterError
775
772
  | OperationAbortedError
@@ -785,7 +782,7 @@ interface CloudWatchLogsService$ {
785
782
  options?: HttpHandlerOptions,
786
783
  ): Effect.Effect<
787
784
  DeleteIndexPolicyCommandOutput,
788
- | Cause.TimeoutException
785
+ | Cause.TimeoutError
789
786
  | SdkError
790
787
  | InvalidParameterError
791
788
  | LimitExceededError
@@ -802,7 +799,7 @@ interface CloudWatchLogsService$ {
802
799
  options?: HttpHandlerOptions,
803
800
  ): Effect.Effect<
804
801
  DeleteIntegrationCommandOutput,
805
- | Cause.TimeoutException
802
+ | Cause.TimeoutError
806
803
  | SdkError
807
804
  | InvalidParameterError
808
805
  | ResourceNotFoundError
@@ -818,7 +815,7 @@ interface CloudWatchLogsService$ {
818
815
  options?: HttpHandlerOptions,
819
816
  ): Effect.Effect<
820
817
  DeleteLogAnomalyDetectorCommandOutput,
821
- | Cause.TimeoutException
818
+ | Cause.TimeoutError
822
819
  | SdkError
823
820
  | InvalidParameterError
824
821
  | OperationAbortedError
@@ -834,7 +831,7 @@ interface CloudWatchLogsService$ {
834
831
  options?: HttpHandlerOptions,
835
832
  ): Effect.Effect<
836
833
  DeleteLogGroupCommandOutput,
837
- | Cause.TimeoutException
834
+ | Cause.TimeoutError
838
835
  | SdkError
839
836
  | InvalidParameterError
840
837
  | OperationAbortedError
@@ -851,7 +848,7 @@ interface CloudWatchLogsService$ {
851
848
  options?: HttpHandlerOptions,
852
849
  ): Effect.Effect<
853
850
  DeleteLogStreamCommandOutput,
854
- | Cause.TimeoutException
851
+ | Cause.TimeoutError
855
852
  | SdkError
856
853
  | InvalidParameterError
857
854
  | OperationAbortedError
@@ -868,7 +865,7 @@ interface CloudWatchLogsService$ {
868
865
  options?: HttpHandlerOptions,
869
866
  ): Effect.Effect<
870
867
  DeleteMetricFilterCommandOutput,
871
- | Cause.TimeoutException
868
+ | Cause.TimeoutError
872
869
  | SdkError
873
870
  | InvalidParameterError
874
871
  | OperationAbortedError
@@ -884,7 +881,7 @@ interface CloudWatchLogsService$ {
884
881
  options?: HttpHandlerOptions,
885
882
  ): Effect.Effect<
886
883
  DeleteQueryDefinitionCommandOutput,
887
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
884
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
888
885
  >;
889
886
 
890
887
  /**
@@ -895,7 +892,7 @@ interface CloudWatchLogsService$ {
895
892
  options?: HttpHandlerOptions,
896
893
  ): Effect.Effect<
897
894
  DeleteResourcePolicyCommandOutput,
898
- | Cause.TimeoutException
895
+ | Cause.TimeoutError
899
896
  | SdkError
900
897
  | InvalidParameterError
901
898
  | OperationAbortedError
@@ -911,7 +908,7 @@ interface CloudWatchLogsService$ {
911
908
  options?: HttpHandlerOptions,
912
909
  ): Effect.Effect<
913
910
  DeleteRetentionPolicyCommandOutput,
914
- | Cause.TimeoutException
911
+ | Cause.TimeoutError
915
912
  | SdkError
916
913
  | InvalidParameterError
917
914
  | OperationAbortedError
@@ -927,7 +924,7 @@ interface CloudWatchLogsService$ {
927
924
  options?: HttpHandlerOptions,
928
925
  ): Effect.Effect<
929
926
  DeleteScheduledQueryCommandOutput,
930
- | Cause.TimeoutException
927
+ | Cause.TimeoutError
931
928
  | SdkError
932
929
  | AccessDeniedError
933
930
  | InternalServerError
@@ -944,7 +941,7 @@ interface CloudWatchLogsService$ {
944
941
  options?: HttpHandlerOptions,
945
942
  ): Effect.Effect<
946
943
  DeleteSubscriptionFilterCommandOutput,
947
- | Cause.TimeoutException
944
+ | Cause.TimeoutError
948
945
  | SdkError
949
946
  | InvalidParameterError
950
947
  | OperationAbortedError
@@ -960,7 +957,7 @@ interface CloudWatchLogsService$ {
960
957
  options?: HttpHandlerOptions,
961
958
  ): Effect.Effect<
962
959
  DeleteTransformerCommandOutput,
963
- | Cause.TimeoutException
960
+ | Cause.TimeoutError
964
961
  | SdkError
965
962
  | InvalidOperationError
966
963
  | InvalidParameterError
@@ -977,7 +974,7 @@ interface CloudWatchLogsService$ {
977
974
  options?: HttpHandlerOptions,
978
975
  ): Effect.Effect<
979
976
  DescribeAccountPoliciesCommandOutput,
980
- | Cause.TimeoutException
977
+ | Cause.TimeoutError
981
978
  | SdkError
982
979
  | InvalidParameterError
983
980
  | OperationAbortedError
@@ -993,12 +990,7 @@ interface CloudWatchLogsService$ {
993
990
  options?: HttpHandlerOptions,
994
991
  ): Effect.Effect<
995
992
  DescribeConfigurationTemplatesCommandOutput,
996
- | Cause.TimeoutException
997
- | SdkError
998
- | ResourceNotFoundError
999
- | ServiceUnavailableError
1000
- | ThrottlingError
1001
- | ValidationError
993
+ Cause.TimeoutError | SdkError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError
1002
994
  >;
1003
995
 
1004
996
  /**
@@ -1009,7 +1001,7 @@ interface CloudWatchLogsService$ {
1009
1001
  options?: HttpHandlerOptions,
1010
1002
  ): Effect.Effect<
1011
1003
  DescribeDeliveriesCommandOutput,
1012
- | Cause.TimeoutException
1004
+ | Cause.TimeoutError
1013
1005
  | SdkError
1014
1006
  | ServiceQuotaExceededError
1015
1007
  | ServiceUnavailableError
@@ -1025,7 +1017,7 @@ interface CloudWatchLogsService$ {
1025
1017
  options?: HttpHandlerOptions,
1026
1018
  ): Effect.Effect<
1027
1019
  DescribeDeliveryDestinationsCommandOutput,
1028
- | Cause.TimeoutException
1020
+ | Cause.TimeoutError
1029
1021
  | SdkError
1030
1022
  | ServiceQuotaExceededError
1031
1023
  | ServiceUnavailableError
@@ -1041,7 +1033,7 @@ interface CloudWatchLogsService$ {
1041
1033
  options?: HttpHandlerOptions,
1042
1034
  ): Effect.Effect<
1043
1035
  DescribeDeliverySourcesCommandOutput,
1044
- | Cause.TimeoutException
1036
+ | Cause.TimeoutError
1045
1037
  | SdkError
1046
1038
  | ServiceQuotaExceededError
1047
1039
  | ServiceUnavailableError
@@ -1057,7 +1049,7 @@ interface CloudWatchLogsService$ {
1057
1049
  options?: HttpHandlerOptions,
1058
1050
  ): Effect.Effect<
1059
1051
  DescribeDestinationsCommandOutput,
1060
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1052
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1061
1053
  >;
1062
1054
 
1063
1055
  /**
@@ -1068,7 +1060,7 @@ interface CloudWatchLogsService$ {
1068
1060
  options?: HttpHandlerOptions,
1069
1061
  ): Effect.Effect<
1070
1062
  DescribeExportTasksCommandOutput,
1071
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1063
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1072
1064
  >;
1073
1065
 
1074
1066
  /**
@@ -1079,7 +1071,7 @@ interface CloudWatchLogsService$ {
1079
1071
  options?: HttpHandlerOptions,
1080
1072
  ): Effect.Effect<
1081
1073
  DescribeFieldIndexesCommandOutput,
1082
- | Cause.TimeoutException
1074
+ | Cause.TimeoutError
1083
1075
  | SdkError
1084
1076
  | InvalidParameterError
1085
1077
  | LimitExceededError
@@ -1096,7 +1088,7 @@ interface CloudWatchLogsService$ {
1096
1088
  options?: HttpHandlerOptions,
1097
1089
  ): Effect.Effect<
1098
1090
  DescribeImportTaskBatchesCommandOutput,
1099
- | Cause.TimeoutException
1091
+ | Cause.TimeoutError
1100
1092
  | SdkError
1101
1093
  | AccessDeniedError
1102
1094
  | InvalidOperationError
@@ -1113,7 +1105,7 @@ interface CloudWatchLogsService$ {
1113
1105
  options?: HttpHandlerOptions,
1114
1106
  ): Effect.Effect<
1115
1107
  DescribeImportTasksCommandOutput,
1116
- | Cause.TimeoutException
1108
+ | Cause.TimeoutError
1117
1109
  | SdkError
1118
1110
  | AccessDeniedError
1119
1111
  | InvalidOperationError
@@ -1130,7 +1122,7 @@ interface CloudWatchLogsService$ {
1130
1122
  options?: HttpHandlerOptions,
1131
1123
  ): Effect.Effect<
1132
1124
  DescribeIndexPoliciesCommandOutput,
1133
- | Cause.TimeoutException
1125
+ | Cause.TimeoutError
1134
1126
  | SdkError
1135
1127
  | InvalidParameterError
1136
1128
  | LimitExceededError
@@ -1147,7 +1139,7 @@ interface CloudWatchLogsService$ {
1147
1139
  options?: HttpHandlerOptions,
1148
1140
  ): Effect.Effect<
1149
1141
  DescribeLogGroupsCommandOutput,
1150
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1142
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1151
1143
  >;
1152
1144
 
1153
1145
  /**
@@ -1158,7 +1150,7 @@ interface CloudWatchLogsService$ {
1158
1150
  options?: HttpHandlerOptions,
1159
1151
  ): Effect.Effect<
1160
1152
  DescribeLogStreamsCommandOutput,
1161
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1153
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1162
1154
  >;
1163
1155
 
1164
1156
  /**
@@ -1169,7 +1161,7 @@ interface CloudWatchLogsService$ {
1169
1161
  options?: HttpHandlerOptions,
1170
1162
  ): Effect.Effect<
1171
1163
  DescribeMetricFiltersCommandOutput,
1172
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1164
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1173
1165
  >;
1174
1166
 
1175
1167
  /**
@@ -1180,7 +1172,7 @@ interface CloudWatchLogsService$ {
1180
1172
  options?: HttpHandlerOptions,
1181
1173
  ): Effect.Effect<
1182
1174
  DescribeQueriesCommandOutput,
1183
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1175
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1184
1176
  >;
1185
1177
 
1186
1178
  /**
@@ -1191,7 +1183,7 @@ interface CloudWatchLogsService$ {
1191
1183
  options?: HttpHandlerOptions,
1192
1184
  ): Effect.Effect<
1193
1185
  DescribeQueryDefinitionsCommandOutput,
1194
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1186
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1195
1187
  >;
1196
1188
 
1197
1189
  /**
@@ -1202,7 +1194,7 @@ interface CloudWatchLogsService$ {
1202
1194
  options?: HttpHandlerOptions,
1203
1195
  ): Effect.Effect<
1204
1196
  DescribeResourcePoliciesCommandOutput,
1205
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1197
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1206
1198
  >;
1207
1199
 
1208
1200
  /**
@@ -1213,7 +1205,7 @@ interface CloudWatchLogsService$ {
1213
1205
  options?: HttpHandlerOptions,
1214
1206
  ): Effect.Effect<
1215
1207
  DescribeSubscriptionFiltersCommandOutput,
1216
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1208
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1217
1209
  >;
1218
1210
 
1219
1211
  /**
@@ -1224,7 +1216,7 @@ interface CloudWatchLogsService$ {
1224
1216
  options?: HttpHandlerOptions,
1225
1217
  ): Effect.Effect<
1226
1218
  DisassociateKmsKeyCommandOutput,
1227
- | Cause.TimeoutException
1219
+ | Cause.TimeoutError
1228
1220
  | SdkError
1229
1221
  | InvalidParameterError
1230
1222
  | OperationAbortedError
@@ -1240,7 +1232,7 @@ interface CloudWatchLogsService$ {
1240
1232
  options?: HttpHandlerOptions,
1241
1233
  ): Effect.Effect<
1242
1234
  DisassociateSourceFromS3TableIntegrationCommandOutput,
1243
- | Cause.TimeoutException
1235
+ | Cause.TimeoutError
1244
1236
  | SdkError
1245
1237
  | AccessDeniedError
1246
1238
  | InternalServerError
@@ -1257,7 +1249,7 @@ interface CloudWatchLogsService$ {
1257
1249
  options?: HttpHandlerOptions,
1258
1250
  ): Effect.Effect<
1259
1251
  FilterLogEventsCommandOutput,
1260
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1252
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1261
1253
  >;
1262
1254
 
1263
1255
  /**
@@ -1268,7 +1260,7 @@ interface CloudWatchLogsService$ {
1268
1260
  options?: HttpHandlerOptions,
1269
1261
  ): Effect.Effect<
1270
1262
  GetDataProtectionPolicyCommandOutput,
1271
- | Cause.TimeoutException
1263
+ | Cause.TimeoutError
1272
1264
  | SdkError
1273
1265
  | InvalidParameterError
1274
1266
  | OperationAbortedError
@@ -1284,7 +1276,7 @@ interface CloudWatchLogsService$ {
1284
1276
  options?: HttpHandlerOptions,
1285
1277
  ): Effect.Effect<
1286
1278
  GetDeliveryCommandOutput,
1287
- | Cause.TimeoutException
1279
+ | Cause.TimeoutError
1288
1280
  | SdkError
1289
1281
  | ResourceNotFoundError
1290
1282
  | ServiceQuotaExceededError
@@ -1301,7 +1293,7 @@ interface CloudWatchLogsService$ {
1301
1293
  options?: HttpHandlerOptions,
1302
1294
  ): Effect.Effect<
1303
1295
  GetDeliveryDestinationCommandOutput,
1304
- | Cause.TimeoutException
1296
+ | Cause.TimeoutError
1305
1297
  | SdkError
1306
1298
  | ResourceNotFoundError
1307
1299
  | ServiceQuotaExceededError
@@ -1318,7 +1310,7 @@ interface CloudWatchLogsService$ {
1318
1310
  options?: HttpHandlerOptions,
1319
1311
  ): Effect.Effect<
1320
1312
  GetDeliveryDestinationPolicyCommandOutput,
1321
- Cause.TimeoutException | SdkError | ResourceNotFoundError | ServiceUnavailableError | ValidationError
1313
+ Cause.TimeoutError | SdkError | ResourceNotFoundError | ServiceUnavailableError | ValidationError
1322
1314
  >;
1323
1315
 
1324
1316
  /**
@@ -1329,7 +1321,7 @@ interface CloudWatchLogsService$ {
1329
1321
  options?: HttpHandlerOptions,
1330
1322
  ): Effect.Effect<
1331
1323
  GetDeliverySourceCommandOutput,
1332
- | Cause.TimeoutException
1324
+ | Cause.TimeoutError
1333
1325
  | SdkError
1334
1326
  | ResourceNotFoundError
1335
1327
  | ServiceQuotaExceededError
@@ -1346,7 +1338,7 @@ interface CloudWatchLogsService$ {
1346
1338
  options?: HttpHandlerOptions,
1347
1339
  ): Effect.Effect<
1348
1340
  GetIntegrationCommandOutput,
1349
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1341
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1350
1342
  >;
1351
1343
 
1352
1344
  /**
@@ -1357,7 +1349,7 @@ interface CloudWatchLogsService$ {
1357
1349
  options?: HttpHandlerOptions,
1358
1350
  ): Effect.Effect<
1359
1351
  GetLogAnomalyDetectorCommandOutput,
1360
- | Cause.TimeoutException
1352
+ | Cause.TimeoutError
1361
1353
  | SdkError
1362
1354
  | InvalidParameterError
1363
1355
  | OperationAbortedError
@@ -1373,7 +1365,7 @@ interface CloudWatchLogsService$ {
1373
1365
  options?: HttpHandlerOptions,
1374
1366
  ): Effect.Effect<
1375
1367
  GetLogEventsCommandOutput,
1376
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1368
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1377
1369
  >;
1378
1370
 
1379
1371
  /**
@@ -1384,7 +1376,7 @@ interface CloudWatchLogsService$ {
1384
1376
  options?: HttpHandlerOptions,
1385
1377
  ): Effect.Effect<
1386
1378
  GetLogFieldsCommandOutput,
1387
- | Cause.TimeoutException
1379
+ | Cause.TimeoutError
1388
1380
  | SdkError
1389
1381
  | InvalidParameterError
1390
1382
  | OperationAbortedError
@@ -1400,7 +1392,7 @@ interface CloudWatchLogsService$ {
1400
1392
  options?: HttpHandlerOptions,
1401
1393
  ): Effect.Effect<
1402
1394
  GetLogGroupFieldsCommandOutput,
1403
- | Cause.TimeoutException
1395
+ | Cause.TimeoutError
1404
1396
  | SdkError
1405
1397
  | InvalidParameterError
1406
1398
  | LimitExceededError
@@ -1416,7 +1408,7 @@ interface CloudWatchLogsService$ {
1416
1408
  options?: HttpHandlerOptions,
1417
1409
  ): Effect.Effect<
1418
1410
  GetLogObjectCommandOutput,
1419
- | Cause.TimeoutException
1411
+ | Cause.TimeoutError
1420
1412
  | SdkError
1421
1413
  | AccessDeniedError
1422
1414
  | InvalidOperationError
@@ -1433,7 +1425,7 @@ interface CloudWatchLogsService$ {
1433
1425
  options?: HttpHandlerOptions,
1434
1426
  ): Effect.Effect<
1435
1427
  GetLogRecordCommandOutput,
1436
- | Cause.TimeoutException
1428
+ | Cause.TimeoutError
1437
1429
  | SdkError
1438
1430
  | InvalidParameterError
1439
1431
  | LimitExceededError
@@ -1449,7 +1441,7 @@ interface CloudWatchLogsService$ {
1449
1441
  options?: HttpHandlerOptions,
1450
1442
  ): Effect.Effect<
1451
1443
  GetQueryResultsCommandOutput,
1452
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1444
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1453
1445
  >;
1454
1446
 
1455
1447
  /**
@@ -1460,7 +1452,7 @@ interface CloudWatchLogsService$ {
1460
1452
  options?: HttpHandlerOptions,
1461
1453
  ): Effect.Effect<
1462
1454
  GetScheduledQueryCommandOutput,
1463
- | Cause.TimeoutException
1455
+ | Cause.TimeoutError
1464
1456
  | SdkError
1465
1457
  | AccessDeniedError
1466
1458
  | InternalServerError
@@ -1477,7 +1469,7 @@ interface CloudWatchLogsService$ {
1477
1469
  options?: HttpHandlerOptions,
1478
1470
  ): Effect.Effect<
1479
1471
  GetScheduledQueryHistoryCommandOutput,
1480
- | Cause.TimeoutException
1472
+ | Cause.TimeoutError
1481
1473
  | SdkError
1482
1474
  | AccessDeniedError
1483
1475
  | InternalServerError
@@ -1494,7 +1486,7 @@ interface CloudWatchLogsService$ {
1494
1486
  options?: HttpHandlerOptions,
1495
1487
  ): Effect.Effect<
1496
1488
  GetTransformerCommandOutput,
1497
- | Cause.TimeoutException
1489
+ | Cause.TimeoutError
1498
1490
  | SdkError
1499
1491
  | InvalidOperationError
1500
1492
  | InvalidParameterError
@@ -1510,7 +1502,7 @@ interface CloudWatchLogsService$ {
1510
1502
  options?: HttpHandlerOptions,
1511
1503
  ): Effect.Effect<
1512
1504
  ListAggregateLogGroupSummariesCommandOutput,
1513
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError | ValidationError
1505
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError | ValidationError
1514
1506
  >;
1515
1507
 
1516
1508
  /**
@@ -1521,7 +1513,7 @@ interface CloudWatchLogsService$ {
1521
1513
  options?: HttpHandlerOptions,
1522
1514
  ): Effect.Effect<
1523
1515
  ListAnomaliesCommandOutput,
1524
- | Cause.TimeoutException
1516
+ | Cause.TimeoutError
1525
1517
  | SdkError
1526
1518
  | InvalidParameterError
1527
1519
  | OperationAbortedError
@@ -1537,7 +1529,7 @@ interface CloudWatchLogsService$ {
1537
1529
  options?: HttpHandlerOptions,
1538
1530
  ): Effect.Effect<
1539
1531
  ListIntegrationsCommandOutput,
1540
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1532
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1541
1533
  >;
1542
1534
 
1543
1535
  /**
@@ -1548,7 +1540,7 @@ interface CloudWatchLogsService$ {
1548
1540
  options?: HttpHandlerOptions,
1549
1541
  ): Effect.Effect<
1550
1542
  ListLogAnomalyDetectorsCommandOutput,
1551
- | Cause.TimeoutException
1543
+ | Cause.TimeoutError
1552
1544
  | SdkError
1553
1545
  | InvalidParameterError
1554
1546
  | OperationAbortedError
@@ -1564,7 +1556,7 @@ interface CloudWatchLogsService$ {
1564
1556
  options?: HttpHandlerOptions,
1565
1557
  ): Effect.Effect<
1566
1558
  ListLogGroupsCommandOutput,
1567
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1559
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1568
1560
  >;
1569
1561
 
1570
1562
  /**
@@ -1575,7 +1567,7 @@ interface CloudWatchLogsService$ {
1575
1567
  options?: HttpHandlerOptions,
1576
1568
  ): Effect.Effect<
1577
1569
  ListLogGroupsForQueryCommandOutput,
1578
- | Cause.TimeoutException
1570
+ | Cause.TimeoutError
1579
1571
  | SdkError
1580
1572
  | AccessDeniedError
1581
1573
  | InvalidParameterError
@@ -1591,7 +1583,7 @@ interface CloudWatchLogsService$ {
1591
1583
  options?: HttpHandlerOptions,
1592
1584
  ): Effect.Effect<
1593
1585
  ListScheduledQueriesCommandOutput,
1594
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1586
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1595
1587
  >;
1596
1588
 
1597
1589
  /**
@@ -1602,7 +1594,7 @@ interface CloudWatchLogsService$ {
1602
1594
  options?: HttpHandlerOptions,
1603
1595
  ): Effect.Effect<
1604
1596
  ListSourcesForS3TableIntegrationCommandOutput,
1605
- | Cause.TimeoutException
1597
+ | Cause.TimeoutError
1606
1598
  | SdkError
1607
1599
  | AccessDeniedError
1608
1600
  | InternalServerError
@@ -1619,7 +1611,7 @@ interface CloudWatchLogsService$ {
1619
1611
  options?: HttpHandlerOptions,
1620
1612
  ): Effect.Effect<
1621
1613
  ListTagsForResourceCommandOutput,
1622
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1614
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1623
1615
  >;
1624
1616
 
1625
1617
  /**
@@ -1630,7 +1622,7 @@ interface CloudWatchLogsService$ {
1630
1622
  options?: HttpHandlerOptions,
1631
1623
  ): Effect.Effect<
1632
1624
  ListTagsLogGroupCommandOutput,
1633
- Cause.TimeoutException | SdkError | ResourceNotFoundError | ServiceUnavailableError
1625
+ Cause.TimeoutError | SdkError | ResourceNotFoundError | ServiceUnavailableError
1634
1626
  >;
1635
1627
 
1636
1628
  /**
@@ -1641,7 +1633,7 @@ interface CloudWatchLogsService$ {
1641
1633
  options?: HttpHandlerOptions,
1642
1634
  ): Effect.Effect<
1643
1635
  PutAccountPolicyCommandOutput,
1644
- | Cause.TimeoutException
1636
+ | Cause.TimeoutError
1645
1637
  | SdkError
1646
1638
  | InvalidParameterError
1647
1639
  | LimitExceededError
@@ -1657,7 +1649,7 @@ interface CloudWatchLogsService$ {
1657
1649
  options?: HttpHandlerOptions,
1658
1650
  ): Effect.Effect<
1659
1651
  PutDataProtectionPolicyCommandOutput,
1660
- | Cause.TimeoutException
1652
+ | Cause.TimeoutError
1661
1653
  | SdkError
1662
1654
  | InvalidParameterError
1663
1655
  | LimitExceededError
@@ -1674,7 +1666,7 @@ interface CloudWatchLogsService$ {
1674
1666
  options?: HttpHandlerOptions,
1675
1667
  ): Effect.Effect<
1676
1668
  PutDeliveryDestinationCommandOutput,
1677
- | Cause.TimeoutException
1669
+ | Cause.TimeoutError
1678
1670
  | SdkError
1679
1671
  | ConflictError
1680
1672
  | ResourceNotFoundError
@@ -1692,12 +1684,7 @@ interface CloudWatchLogsService$ {
1692
1684
  options?: HttpHandlerOptions,
1693
1685
  ): Effect.Effect<
1694
1686
  PutDeliveryDestinationPolicyCommandOutput,
1695
- | Cause.TimeoutException
1696
- | SdkError
1697
- | ConflictError
1698
- | ResourceNotFoundError
1699
- | ServiceUnavailableError
1700
- | ValidationError
1687
+ Cause.TimeoutError | SdkError | ConflictError | ResourceNotFoundError | ServiceUnavailableError | ValidationError
1701
1688
  >;
1702
1689
 
1703
1690
  /**
@@ -1708,7 +1695,7 @@ interface CloudWatchLogsService$ {
1708
1695
  options?: HttpHandlerOptions,
1709
1696
  ): Effect.Effect<
1710
1697
  PutDeliverySourceCommandOutput,
1711
- | Cause.TimeoutException
1698
+ | Cause.TimeoutError
1712
1699
  | SdkError
1713
1700
  | ConflictError
1714
1701
  | ResourceNotFoundError
@@ -1726,7 +1713,7 @@ interface CloudWatchLogsService$ {
1726
1713
  options?: HttpHandlerOptions,
1727
1714
  ): Effect.Effect<
1728
1715
  PutDestinationCommandOutput,
1729
- Cause.TimeoutException | SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
1716
+ Cause.TimeoutError | SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
1730
1717
  >;
1731
1718
 
1732
1719
  /**
@@ -1737,7 +1724,7 @@ interface CloudWatchLogsService$ {
1737
1724
  options?: HttpHandlerOptions,
1738
1725
  ): Effect.Effect<
1739
1726
  PutDestinationPolicyCommandOutput,
1740
- Cause.TimeoutException | SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
1727
+ Cause.TimeoutError | SdkError | InvalidParameterError | OperationAbortedError | ServiceUnavailableError
1741
1728
  >;
1742
1729
 
1743
1730
  /**
@@ -1748,7 +1735,7 @@ interface CloudWatchLogsService$ {
1748
1735
  options?: HttpHandlerOptions,
1749
1736
  ): Effect.Effect<
1750
1737
  PutIndexPolicyCommandOutput,
1751
- | Cause.TimeoutException
1738
+ | Cause.TimeoutError
1752
1739
  | SdkError
1753
1740
  | InvalidParameterError
1754
1741
  | LimitExceededError
@@ -1765,7 +1752,7 @@ interface CloudWatchLogsService$ {
1765
1752
  options?: HttpHandlerOptions,
1766
1753
  ): Effect.Effect<
1767
1754
  PutIntegrationCommandOutput,
1768
- | Cause.TimeoutException
1755
+ | Cause.TimeoutError
1769
1756
  | SdkError
1770
1757
  | InvalidParameterError
1771
1758
  | LimitExceededError
@@ -1781,7 +1768,7 @@ interface CloudWatchLogsService$ {
1781
1768
  options?: HttpHandlerOptions,
1782
1769
  ): Effect.Effect<
1783
1770
  PutLogEventsCommandOutput,
1784
- | Cause.TimeoutException
1771
+ | Cause.TimeoutError
1785
1772
  | SdkError
1786
1773
  | DataAlreadyAcceptedError
1787
1774
  | InvalidParameterError
@@ -1799,7 +1786,7 @@ interface CloudWatchLogsService$ {
1799
1786
  options?: HttpHandlerOptions,
1800
1787
  ): Effect.Effect<
1801
1788
  PutLogGroupDeletionProtectionCommandOutput,
1802
- | Cause.TimeoutException
1789
+ | Cause.TimeoutError
1803
1790
  | SdkError
1804
1791
  | AccessDeniedError
1805
1792
  | InvalidOperationError
@@ -1817,7 +1804,7 @@ interface CloudWatchLogsService$ {
1817
1804
  options?: HttpHandlerOptions,
1818
1805
  ): Effect.Effect<
1819
1806
  PutMetricFilterCommandOutput,
1820
- | Cause.TimeoutException
1807
+ | Cause.TimeoutError
1821
1808
  | SdkError
1822
1809
  | InvalidOperationError
1823
1810
  | InvalidParameterError
@@ -1835,7 +1822,7 @@ interface CloudWatchLogsService$ {
1835
1822
  options?: HttpHandlerOptions,
1836
1823
  ): Effect.Effect<
1837
1824
  PutQueryDefinitionCommandOutput,
1838
- | Cause.TimeoutException
1825
+ | Cause.TimeoutError
1839
1826
  | SdkError
1840
1827
  | InvalidParameterError
1841
1828
  | LimitExceededError
@@ -1851,7 +1838,7 @@ interface CloudWatchLogsService$ {
1851
1838
  options?: HttpHandlerOptions,
1852
1839
  ): Effect.Effect<
1853
1840
  PutResourcePolicyCommandOutput,
1854
- | Cause.TimeoutException
1841
+ | Cause.TimeoutError
1855
1842
  | SdkError
1856
1843
  | InvalidParameterError
1857
1844
  | LimitExceededError
@@ -1868,7 +1855,7 @@ interface CloudWatchLogsService$ {
1868
1855
  options?: HttpHandlerOptions,
1869
1856
  ): Effect.Effect<
1870
1857
  PutRetentionPolicyCommandOutput,
1871
- | Cause.TimeoutException
1858
+ | Cause.TimeoutError
1872
1859
  | SdkError
1873
1860
  | InvalidParameterError
1874
1861
  | OperationAbortedError
@@ -1884,7 +1871,7 @@ interface CloudWatchLogsService$ {
1884
1871
  options?: HttpHandlerOptions,
1885
1872
  ): Effect.Effect<
1886
1873
  PutSubscriptionFilterCommandOutput,
1887
- | Cause.TimeoutException
1874
+ | Cause.TimeoutError
1888
1875
  | SdkError
1889
1876
  | InvalidOperationError
1890
1877
  | InvalidParameterError
@@ -1902,7 +1889,7 @@ interface CloudWatchLogsService$ {
1902
1889
  options?: HttpHandlerOptions,
1903
1890
  ): Effect.Effect<
1904
1891
  PutTransformerCommandOutput,
1905
- | Cause.TimeoutException
1892
+ | Cause.TimeoutError
1906
1893
  | SdkError
1907
1894
  | InvalidOperationError
1908
1895
  | InvalidParameterError
@@ -1920,7 +1907,7 @@ interface CloudWatchLogsService$ {
1920
1907
  options?: HttpHandlerOptions,
1921
1908
  ): Effect.Effect<
1922
1909
  StartLiveTailCommandOutput,
1923
- | Cause.TimeoutException
1910
+ | Cause.TimeoutError
1924
1911
  | SdkError
1925
1912
  | AccessDeniedError
1926
1913
  | InvalidOperationError
@@ -1937,7 +1924,7 @@ interface CloudWatchLogsService$ {
1937
1924
  options?: HttpHandlerOptions,
1938
1925
  ): Effect.Effect<
1939
1926
  StartQueryCommandOutput,
1940
- | Cause.TimeoutException
1927
+ | Cause.TimeoutError
1941
1928
  | SdkError
1942
1929
  | InvalidParameterError
1943
1930
  | LimitExceededError
@@ -1954,7 +1941,7 @@ interface CloudWatchLogsService$ {
1954
1941
  options?: HttpHandlerOptions,
1955
1942
  ): Effect.Effect<
1956
1943
  StopQueryCommandOutput,
1957
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1944
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
1958
1945
  >;
1959
1946
 
1960
1947
  /**
@@ -1965,7 +1952,7 @@ interface CloudWatchLogsService$ {
1965
1952
  options?: HttpHandlerOptions,
1966
1953
  ): Effect.Effect<
1967
1954
  TagLogGroupCommandOutput,
1968
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError
1955
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError
1969
1956
  >;
1970
1957
 
1971
1958
  /**
@@ -1976,7 +1963,7 @@ interface CloudWatchLogsService$ {
1976
1963
  options?: HttpHandlerOptions,
1977
1964
  ): Effect.Effect<
1978
1965
  TagResourceCommandOutput,
1979
- | Cause.TimeoutException
1966
+ | Cause.TimeoutError
1980
1967
  | SdkError
1981
1968
  | InvalidParameterError
1982
1969
  | ResourceNotFoundError
@@ -1992,7 +1979,7 @@ interface CloudWatchLogsService$ {
1992
1979
  options?: HttpHandlerOptions,
1993
1980
  ): Effect.Effect<
1994
1981
  TestMetricFilterCommandOutput,
1995
- Cause.TimeoutException | SdkError | InvalidParameterError | ServiceUnavailableError
1982
+ Cause.TimeoutError | SdkError | InvalidParameterError | ServiceUnavailableError
1996
1983
  >;
1997
1984
 
1998
1985
  /**
@@ -2003,7 +1990,7 @@ interface CloudWatchLogsService$ {
2003
1990
  options?: HttpHandlerOptions,
2004
1991
  ): Effect.Effect<
2005
1992
  TestTransformerCommandOutput,
2006
- Cause.TimeoutException | SdkError | InvalidOperationError | InvalidParameterError | ServiceUnavailableError
1993
+ Cause.TimeoutError | SdkError | InvalidOperationError | InvalidParameterError | ServiceUnavailableError
2007
1994
  >;
2008
1995
 
2009
1996
  /**
@@ -2014,7 +2001,7 @@ interface CloudWatchLogsService$ {
2014
2001
  options?: HttpHandlerOptions,
2015
2002
  ): Effect.Effect<
2016
2003
  UntagLogGroupCommandOutput,
2017
- Cause.TimeoutException | SdkError | ResourceNotFoundError
2004
+ Cause.TimeoutError | SdkError | ResourceNotFoundError
2018
2005
  >;
2019
2006
 
2020
2007
  /**
@@ -2025,7 +2012,7 @@ interface CloudWatchLogsService$ {
2025
2012
  options?: HttpHandlerOptions,
2026
2013
  ): Effect.Effect<
2027
2014
  UntagResourceCommandOutput,
2028
- Cause.TimeoutException | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
2015
+ Cause.TimeoutError | SdkError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError
2029
2016
  >;
2030
2017
 
2031
2018
  /**
@@ -2036,7 +2023,7 @@ interface CloudWatchLogsService$ {
2036
2023
  options?: HttpHandlerOptions,
2037
2024
  ): Effect.Effect<
2038
2025
  UpdateAnomalyCommandOutput,
2039
- | Cause.TimeoutException
2026
+ | Cause.TimeoutError
2040
2027
  | SdkError
2041
2028
  | InvalidParameterError
2042
2029
  | OperationAbortedError
@@ -2052,7 +2039,7 @@ interface CloudWatchLogsService$ {
2052
2039
  options?: HttpHandlerOptions,
2053
2040
  ): Effect.Effect<
2054
2041
  UpdateDeliveryConfigurationCommandOutput,
2055
- | Cause.TimeoutException
2042
+ | Cause.TimeoutError
2056
2043
  | SdkError
2057
2044
  | AccessDeniedError
2058
2045
  | ConflictError
@@ -2070,7 +2057,7 @@ interface CloudWatchLogsService$ {
2070
2057
  options?: HttpHandlerOptions,
2071
2058
  ): Effect.Effect<
2072
2059
  UpdateLogAnomalyDetectorCommandOutput,
2073
- | Cause.TimeoutException
2060
+ | Cause.TimeoutError
2074
2061
  | SdkError
2075
2062
  | InvalidParameterError
2076
2063
  | OperationAbortedError
@@ -2086,7 +2073,7 @@ interface CloudWatchLogsService$ {
2086
2073
  options?: HttpHandlerOptions,
2087
2074
  ): Effect.Effect<
2088
2075
  UpdateScheduledQueryCommandOutput,
2089
- | Cause.TimeoutException
2076
+ | Cause.TimeoutError
2090
2077
  | SdkError
2091
2078
  | AccessDeniedError
2092
2079
  | InternalServerError
@@ -2117,10 +2104,10 @@ export const makeCloudWatchLogsService = Effect.gen(function*() {
2117
2104
  * @since 1.0.0
2118
2105
  * @category models
2119
2106
  */
2120
- export class CloudWatchLogsService extends Effect.Tag("@effect-aws/client-cloudwatch-logs/CloudWatchLogsService")<
2107
+ export class CloudWatchLogsService extends ServiceMap.Service<
2121
2108
  CloudWatchLogsService,
2122
2109
  CloudWatchLogsService$
2123
- >() {
2110
+ >()("@effect-aws/client-cloudwatch-logs/CloudWatchLogsService") {
2124
2111
  static readonly defaultLayer = Layer.effect(this, makeCloudWatchLogsService).pipe(Layer.provide(Instance.layer));
2125
2112
  static readonly layer = (config: CloudWatchLogsService.Config) =>
2126
2113
  Layer.effect(this, makeCloudWatchLogsService).pipe(