@effect-aws/client-cloudwatch-logs 1.2.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/CloudWatchLogsClientInstance/package.json +6 -0
  2. package/CloudWatchLogsService/package.json +6 -0
  3. package/CloudWatchLogsServiceConfig/package.json +6 -0
  4. package/Errors/package.json +6 -0
  5. package/LICENSE +1 -1
  6. package/dist/cjs/CloudWatchLogsClientInstance.d.ts +24 -0
  7. package/dist/cjs/CloudWatchLogsClientInstance.d.ts.map +1 -0
  8. package/dist/cjs/CloudWatchLogsClientInstance.js +50 -0
  9. package/dist/cjs/CloudWatchLogsClientInstance.js.map +1 -0
  10. package/{lib → dist/cjs}/CloudWatchLogsService.d.ts +16 -38
  11. package/dist/cjs/CloudWatchLogsService.d.ts.map +1 -0
  12. package/dist/cjs/CloudWatchLogsService.js +145 -0
  13. package/dist/cjs/CloudWatchLogsService.js.map +1 -0
  14. package/dist/cjs/CloudWatchLogsServiceConfig.d.ts +25 -0
  15. package/dist/cjs/CloudWatchLogsServiceConfig.d.ts.map +1 -0
  16. package/dist/cjs/CloudWatchLogsServiceConfig.js +35 -0
  17. package/dist/cjs/CloudWatchLogsServiceConfig.js.map +1 -0
  18. package/{lib → dist/cjs}/Errors.d.ts +6 -11
  19. package/dist/cjs/Errors.d.ts.map +1 -0
  20. package/dist/cjs/Errors.js +27 -0
  21. package/dist/cjs/Errors.js.map +1 -0
  22. package/dist/cjs/index.d.ts +39 -0
  23. package/dist/cjs/index.d.ts.map +1 -0
  24. package/dist/cjs/index.js +56 -0
  25. package/dist/cjs/index.js.map +1 -0
  26. package/dist/dts/CloudWatchLogsClientInstance.d.ts +24 -0
  27. package/dist/dts/CloudWatchLogsClientInstance.d.ts.map +1 -0
  28. package/dist/dts/CloudWatchLogsService.d.ts +488 -0
  29. package/dist/dts/CloudWatchLogsService.d.ts.map +1 -0
  30. package/dist/dts/CloudWatchLogsServiceConfig.d.ts +25 -0
  31. package/dist/dts/CloudWatchLogsServiceConfig.d.ts.map +1 -0
  32. package/dist/dts/Errors.d.ts +26 -0
  33. package/dist/dts/Errors.d.ts.map +1 -0
  34. package/dist/dts/index.d.ts +39 -0
  35. package/dist/dts/index.d.ts.map +1 -0
  36. package/dist/esm/CloudWatchLogsClientInstance.js +23 -0
  37. package/dist/esm/CloudWatchLogsClientInstance.js.map +1 -0
  38. package/dist/esm/CloudWatchLogsService.js +118 -0
  39. package/dist/esm/CloudWatchLogsService.js.map +1 -0
  40. package/dist/esm/CloudWatchLogsServiceConfig.js +31 -0
  41. package/dist/esm/CloudWatchLogsServiceConfig.js.map +1 -0
  42. package/dist/esm/Errors.js +24 -0
  43. package/dist/esm/Errors.js.map +1 -0
  44. package/dist/esm/index.js +27 -0
  45. package/dist/esm/index.js.map +1 -0
  46. package/dist/esm/package.json +4 -0
  47. package/package.json +60 -43
  48. package/src/CloudWatchLogsClientInstance.ts +33 -0
  49. package/src/CloudWatchLogsService.ts +1561 -0
  50. package/src/CloudWatchLogsServiceConfig.ts +52 -0
  51. package/src/Errors.ts +68 -0
  52. package/src/index.ts +44 -0
  53. package/CHANGELOG.md +0 -35
  54. package/docgen.json +0 -8
  55. package/lib/CloudWatchLogsClientInstance.d.ts +0 -31
  56. package/lib/CloudWatchLogsClientInstance.js +0 -57
  57. package/lib/CloudWatchLogsClientInstanceConfig.d.ts +0 -23
  58. package/lib/CloudWatchLogsClientInstanceConfig.js +0 -44
  59. package/lib/CloudWatchLogsService.js +0 -177
  60. package/lib/Errors.js +0 -27
  61. package/lib/esm/CloudWatchLogsClientInstance.js +0 -30
  62. package/lib/esm/CloudWatchLogsClientInstanceConfig.js +0 -40
  63. package/lib/esm/CloudWatchLogsService.js +0 -173
  64. package/lib/esm/Errors.js +0 -24
  65. package/lib/esm/index.js +0 -5
  66. package/lib/index.d.ts +0 -4
  67. package/lib/index.js +0 -21
  68. package/project.json +0 -77
  69. package/vitest.config.ts +0 -3
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/CloudWatchLogsClientInstance.js",
3
+ "module": "../dist/esm/CloudWatchLogsClientInstance.js",
4
+ "types": "../dist/dts/CloudWatchLogsClientInstance.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/CloudWatchLogsService.js",
3
+ "module": "../dist/esm/CloudWatchLogsService.js",
4
+ "types": "../dist/dts/CloudWatchLogsService.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/CloudWatchLogsServiceConfig.js",
3
+ "module": "../dist/esm/CloudWatchLogsServiceConfig.js",
4
+ "types": "../dist/dts/CloudWatchLogsServiceConfig.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/Errors.js",
3
+ "module": "../dist/esm/Errors.js",
4
+ "types": "../dist/dts/Errors.d.ts",
5
+ "sideEffects": []
6
+ }
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2024 Victor Korzunin
1
+ Copyright (c) 2025 Victor Korzunin
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { CloudWatchLogsClient } from "@aws-sdk/client-cloudwatch-logs";
5
+ import { Context, Effect, Layer } from "effect";
6
+ declare const CloudWatchLogsClientInstance_base: Context.TagClass<CloudWatchLogsClientInstance, "@effect-aws/client-cloudwatch-logs/CloudWatchLogsClientInstance", CloudWatchLogsClient>;
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export declare class CloudWatchLogsClientInstance extends CloudWatchLogsClientInstance_base {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export declare const make: Effect.Effect<CloudWatchLogsClient, never, import("effect/Scope").Scope>;
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export declare const layer: Layer.Layer<CloudWatchLogsClientInstance, never, never>;
23
+ export {};
24
+ //# sourceMappingURL=CloudWatchLogsClientInstance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudWatchLogsClientInstance.d.ts","sourceRoot":"","sources":["../../src/CloudWatchLogsClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,4BAA6B,SAAQ,iCAEK;CAAG;AAE1D;;;GAGG;AACH,eAAO,MAAM,IAAI,0EAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,yDAAmD,CAAC"}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.layer = exports.make = exports.CloudWatchLogsClientInstance = void 0;
27
+ /**
28
+ * @since 1.0.0
29
+ */
30
+ const client_cloudwatch_logs_1 = require("@aws-sdk/client-cloudwatch-logs");
31
+ const effect_1 = require("effect");
32
+ const CloudWatchLogsServiceConfig = __importStar(require("./CloudWatchLogsServiceConfig.js"));
33
+ /**
34
+ * @since 1.0.0
35
+ * @category tags
36
+ */
37
+ class CloudWatchLogsClientInstance extends effect_1.Context.Tag("@effect-aws/client-cloudwatch-logs/CloudWatchLogsClientInstance")() {
38
+ }
39
+ exports.CloudWatchLogsClientInstance = CloudWatchLogsClientInstance;
40
+ /**
41
+ * @since 1.0.0
42
+ * @category constructors
43
+ */
44
+ exports.make = effect_1.Effect.flatMap(CloudWatchLogsServiceConfig.toCloudWatchLogsClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_cloudwatch_logs_1.CloudWatchLogsClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
45
+ /**
46
+ * @since 1.0.0
47
+ * @category layers
48
+ */
49
+ exports.layer = effect_1.Layer.scoped(CloudWatchLogsClientInstance, exports.make);
50
+ //# sourceMappingURL=CloudWatchLogsClientInstance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudWatchLogsClientInstance.js","sourceRoot":"","sources":["../../src/CloudWatchLogsClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,4EAAuE;AACvE,mCAAgD;AAChD,8FAAgF;AAEhF;;;GAGG;AACH,MAAa,4BAA6B,SAAQ,gBAAO,CAAC,GAAG,CAC3D,iEAAiE,CAClE,EAAsD;CAAG;AAF1D,oEAE0D;AAE1D;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,2BAA2B,CAAC,4BAA4B,EACxD,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,6CAAoB,CAAC,MAAM,CAAC,CAAC,EACnD,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,4BAA4B,EAAE,YAAI,CAAC,CAAC"}
@@ -1,21 +1,11 @@
1
1
  /**
2
2
  * @since 1.0.0
3
3
  */
4
- import { type CloudWatchLogsClient, type CloudWatchLogsClientConfig, type AssociateKmsKeyCommandInput, type AssociateKmsKeyCommandOutput, type CancelExportTaskCommandInput, type CancelExportTaskCommandOutput, type CreateDeliveryCommandInput, type CreateDeliveryCommandOutput, type CreateExportTaskCommandInput, type CreateExportTaskCommandOutput, type CreateLogAnomalyDetectorCommandInput, type CreateLogAnomalyDetectorCommandOutput, type CreateLogGroupCommandInput, type CreateLogGroupCommandOutput, type CreateLogStreamCommandInput, type CreateLogStreamCommandOutput, type DeleteAccountPolicyCommandInput, type DeleteAccountPolicyCommandOutput, type DeleteDataProtectionPolicyCommandInput, type DeleteDataProtectionPolicyCommandOutput, type DeleteDeliveryCommandInput, type DeleteDeliveryCommandOutput, type DeleteDeliveryDestinationCommandInput, type DeleteDeliveryDestinationCommandOutput, type DeleteDeliveryDestinationPolicyCommandInput, type DeleteDeliveryDestinationPolicyCommandOutput, type DeleteDeliverySourceCommandInput, type DeleteDeliverySourceCommandOutput, type DeleteDestinationCommandInput, type DeleteDestinationCommandOutput, type DeleteIndexPolicyCommandInput, type DeleteIndexPolicyCommandOutput, type DeleteIntegrationCommandInput, type DeleteIntegrationCommandOutput, type DeleteLogAnomalyDetectorCommandInput, type DeleteLogAnomalyDetectorCommandOutput, type DeleteLogGroupCommandInput, type DeleteLogGroupCommandOutput, type DeleteLogStreamCommandInput, type DeleteLogStreamCommandOutput, type DeleteMetricFilterCommandInput, type DeleteMetricFilterCommandOutput, type DeleteQueryDefinitionCommandInput, type DeleteQueryDefinitionCommandOutput, type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput, type DeleteRetentionPolicyCommandInput, type DeleteRetentionPolicyCommandOutput, type DeleteSubscriptionFilterCommandInput, type DeleteSubscriptionFilterCommandOutput, type DeleteTransformerCommandInput, type DeleteTransformerCommandOutput, type DescribeAccountPoliciesCommandInput, type DescribeAccountPoliciesCommandOutput, type DescribeConfigurationTemplatesCommandInput, type DescribeConfigurationTemplatesCommandOutput, type DescribeDeliveriesCommandInput, type DescribeDeliveriesCommandOutput, type DescribeDeliveryDestinationsCommandInput, type DescribeDeliveryDestinationsCommandOutput, type DescribeDeliverySourcesCommandInput, type DescribeDeliverySourcesCommandOutput, type DescribeDestinationsCommandInput, type DescribeDestinationsCommandOutput, type DescribeExportTasksCommandInput, type DescribeExportTasksCommandOutput, type DescribeFieldIndexesCommandInput, type DescribeFieldIndexesCommandOutput, type DescribeIndexPoliciesCommandInput, type DescribeIndexPoliciesCommandOutput, type DescribeLogGroupsCommandInput, type DescribeLogGroupsCommandOutput, type DescribeLogStreamsCommandInput, type DescribeLogStreamsCommandOutput, type DescribeMetricFiltersCommandInput, type DescribeMetricFiltersCommandOutput, type DescribeQueriesCommandInput, type DescribeQueriesCommandOutput, type DescribeQueryDefinitionsCommandInput, type DescribeQueryDefinitionsCommandOutput, type DescribeResourcePoliciesCommandInput, type DescribeResourcePoliciesCommandOutput, type DescribeSubscriptionFiltersCommandInput, type DescribeSubscriptionFiltersCommandOutput, type DisassociateKmsKeyCommandInput, type DisassociateKmsKeyCommandOutput, type FilterLogEventsCommandInput, type FilterLogEventsCommandOutput, type GetDataProtectionPolicyCommandInput, type GetDataProtectionPolicyCommandOutput, type GetDeliveryCommandInput, type GetDeliveryCommandOutput, type GetDeliveryDestinationCommandInput, type GetDeliveryDestinationCommandOutput, type GetDeliveryDestinationPolicyCommandInput, type GetDeliveryDestinationPolicyCommandOutput, type GetDeliverySourceCommandInput, type GetDeliverySourceCommandOutput, type GetIntegrationCommandInput, type GetIntegrationCommandOutput, type GetLogAnomalyDetectorCommandInput, type GetLogAnomalyDetectorCommandOutput, type GetLogEventsCommandInput, type GetLogEventsCommandOutput, type GetLogGroupFieldsCommandInput, type GetLogGroupFieldsCommandOutput, type GetLogRecordCommandInput, type GetLogRecordCommandOutput, type GetQueryResultsCommandInput, type GetQueryResultsCommandOutput, type GetTransformerCommandInput, type GetTransformerCommandOutput, type ListAnomaliesCommandInput, type ListAnomaliesCommandOutput, type ListIntegrationsCommandInput, type ListIntegrationsCommandOutput, type ListLogAnomalyDetectorsCommandInput, type ListLogAnomalyDetectorsCommandOutput, type ListLogGroupsForQueryCommandInput, type ListLogGroupsForQueryCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListTagsLogGroupCommandInput, type ListTagsLogGroupCommandOutput, type PutAccountPolicyCommandInput, type PutAccountPolicyCommandOutput, type PutDataProtectionPolicyCommandInput, type PutDataProtectionPolicyCommandOutput, type PutDeliveryDestinationCommandInput, type PutDeliveryDestinationCommandOutput, type PutDeliveryDestinationPolicyCommandInput, type PutDeliveryDestinationPolicyCommandOutput, type PutDeliverySourceCommandInput, type PutDeliverySourceCommandOutput, type PutDestinationCommandInput, type PutDestinationCommandOutput, type PutDestinationPolicyCommandInput, type PutDestinationPolicyCommandOutput, type PutIndexPolicyCommandInput, type PutIndexPolicyCommandOutput, type PutIntegrationCommandInput, type PutIntegrationCommandOutput, type PutLogEventsCommandInput, type PutLogEventsCommandOutput, type PutMetricFilterCommandInput, type PutMetricFilterCommandOutput, type PutQueryDefinitionCommandInput, type PutQueryDefinitionCommandOutput, type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput, type PutRetentionPolicyCommandInput, type PutRetentionPolicyCommandOutput, type PutSubscriptionFilterCommandInput, type PutSubscriptionFilterCommandOutput, type PutTransformerCommandInput, type PutTransformerCommandOutput, type StartLiveTailCommandInput, type StartLiveTailCommandOutput, type StartQueryCommandInput, type StartQueryCommandOutput, type StopQueryCommandInput, type StopQueryCommandOutput, type TagLogGroupCommandInput, type TagLogGroupCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TestMetricFilterCommandInput, type TestMetricFilterCommandOutput, type TestTransformerCommandInput, type TestTransformerCommandOutput, type UntagLogGroupCommandInput, type UntagLogGroupCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAnomalyCommandInput, type UpdateAnomalyCommandOutput, type UpdateDeliveryConfigurationCommandInput, type UpdateDeliveryConfigurationCommandOutput, type UpdateLogAnomalyDetectorCommandInput, type UpdateLogAnomalyDetectorCommandOutput } from "@aws-sdk/client-cloudwatch-logs";
4
+ import { type AssociateKmsKeyCommandInput, type AssociateKmsKeyCommandOutput, type CancelExportTaskCommandInput, type CancelExportTaskCommandOutput, type CloudWatchLogsClient, type CloudWatchLogsClientConfig, type CreateDeliveryCommandInput, type CreateDeliveryCommandOutput, type CreateExportTaskCommandInput, type CreateExportTaskCommandOutput, type CreateLogAnomalyDetectorCommandInput, type CreateLogAnomalyDetectorCommandOutput, type CreateLogGroupCommandInput, type CreateLogGroupCommandOutput, type CreateLogStreamCommandInput, type CreateLogStreamCommandOutput, type DeleteAccountPolicyCommandInput, type DeleteAccountPolicyCommandOutput, type DeleteDataProtectionPolicyCommandInput, type DeleteDataProtectionPolicyCommandOutput, type DeleteDeliveryCommandInput, type DeleteDeliveryCommandOutput, type DeleteDeliveryDestinationCommandInput, type DeleteDeliveryDestinationCommandOutput, type DeleteDeliveryDestinationPolicyCommandInput, type DeleteDeliveryDestinationPolicyCommandOutput, type DeleteDeliverySourceCommandInput, type DeleteDeliverySourceCommandOutput, type DeleteDestinationCommandInput, type DeleteDestinationCommandOutput, type DeleteIndexPolicyCommandInput, type DeleteIndexPolicyCommandOutput, type DeleteIntegrationCommandInput, type DeleteIntegrationCommandOutput, type DeleteLogAnomalyDetectorCommandInput, type DeleteLogAnomalyDetectorCommandOutput, type DeleteLogGroupCommandInput, type DeleteLogGroupCommandOutput, type DeleteLogStreamCommandInput, type DeleteLogStreamCommandOutput, type DeleteMetricFilterCommandInput, type DeleteMetricFilterCommandOutput, type DeleteQueryDefinitionCommandInput, type DeleteQueryDefinitionCommandOutput, type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput, type DeleteRetentionPolicyCommandInput, type DeleteRetentionPolicyCommandOutput, type DeleteSubscriptionFilterCommandInput, type DeleteSubscriptionFilterCommandOutput, type DeleteTransformerCommandInput, type DeleteTransformerCommandOutput, type DescribeAccountPoliciesCommandInput, type DescribeAccountPoliciesCommandOutput, type DescribeConfigurationTemplatesCommandInput, type DescribeConfigurationTemplatesCommandOutput, type DescribeDeliveriesCommandInput, type DescribeDeliveriesCommandOutput, type DescribeDeliveryDestinationsCommandInput, type DescribeDeliveryDestinationsCommandOutput, type DescribeDeliverySourcesCommandInput, type DescribeDeliverySourcesCommandOutput, type DescribeDestinationsCommandInput, type DescribeDestinationsCommandOutput, type DescribeExportTasksCommandInput, type DescribeExportTasksCommandOutput, type DescribeFieldIndexesCommandInput, type DescribeFieldIndexesCommandOutput, type DescribeIndexPoliciesCommandInput, type DescribeIndexPoliciesCommandOutput, type DescribeLogGroupsCommandInput, type DescribeLogGroupsCommandOutput, type DescribeLogStreamsCommandInput, type DescribeLogStreamsCommandOutput, type DescribeMetricFiltersCommandInput, type DescribeMetricFiltersCommandOutput, type DescribeQueriesCommandInput, type DescribeQueriesCommandOutput, type DescribeQueryDefinitionsCommandInput, type DescribeQueryDefinitionsCommandOutput, type DescribeResourcePoliciesCommandInput, type DescribeResourcePoliciesCommandOutput, type DescribeSubscriptionFiltersCommandInput, type DescribeSubscriptionFiltersCommandOutput, type DisassociateKmsKeyCommandInput, type DisassociateKmsKeyCommandOutput, type FilterLogEventsCommandInput, type FilterLogEventsCommandOutput, type GetDataProtectionPolicyCommandInput, type GetDataProtectionPolicyCommandOutput, type GetDeliveryCommandInput, type GetDeliveryCommandOutput, type GetDeliveryDestinationCommandInput, type GetDeliveryDestinationCommandOutput, type GetDeliveryDestinationPolicyCommandInput, type GetDeliveryDestinationPolicyCommandOutput, type GetDeliverySourceCommandInput, type GetDeliverySourceCommandOutput, type GetIntegrationCommandInput, type GetIntegrationCommandOutput, type GetLogAnomalyDetectorCommandInput, type GetLogAnomalyDetectorCommandOutput, type GetLogEventsCommandInput, type GetLogEventsCommandOutput, type GetLogGroupFieldsCommandInput, type GetLogGroupFieldsCommandOutput, type GetLogRecordCommandInput, type GetLogRecordCommandOutput, type GetQueryResultsCommandInput, type GetQueryResultsCommandOutput, type GetTransformerCommandInput, type GetTransformerCommandOutput, type ListAnomaliesCommandInput, type ListAnomaliesCommandOutput, type ListIntegrationsCommandInput, type ListIntegrationsCommandOutput, type ListLogAnomalyDetectorsCommandInput, type ListLogAnomalyDetectorsCommandOutput, type ListLogGroupsForQueryCommandInput, type ListLogGroupsForQueryCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListTagsLogGroupCommandInput, type ListTagsLogGroupCommandOutput, type PutAccountPolicyCommandInput, type PutAccountPolicyCommandOutput, type PutDataProtectionPolicyCommandInput, type PutDataProtectionPolicyCommandOutput, type PutDeliveryDestinationCommandInput, type PutDeliveryDestinationCommandOutput, type PutDeliveryDestinationPolicyCommandInput, type PutDeliveryDestinationPolicyCommandOutput, type PutDeliverySourceCommandInput, type PutDeliverySourceCommandOutput, type PutDestinationCommandInput, type PutDestinationCommandOutput, type PutDestinationPolicyCommandInput, type PutDestinationPolicyCommandOutput, type PutIndexPolicyCommandInput, type PutIndexPolicyCommandOutput, type PutIntegrationCommandInput, type PutIntegrationCommandOutput, type PutLogEventsCommandInput, type PutLogEventsCommandOutput, type PutMetricFilterCommandInput, type PutMetricFilterCommandOutput, type PutQueryDefinitionCommandInput, type PutQueryDefinitionCommandOutput, type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput, type PutRetentionPolicyCommandInput, type PutRetentionPolicyCommandOutput, type PutSubscriptionFilterCommandInput, type PutSubscriptionFilterCommandOutput, type PutTransformerCommandInput, type PutTransformerCommandOutput, type StartLiveTailCommandInput, type StartLiveTailCommandOutput, type StartQueryCommandInput, type StartQueryCommandOutput, type StopQueryCommandInput, type StopQueryCommandOutput, type TagLogGroupCommandInput, type TagLogGroupCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TestMetricFilterCommandInput, type TestMetricFilterCommandOutput, type TestTransformerCommandInput, type TestTransformerCommandOutput, type UntagLogGroupCommandInput, type UntagLogGroupCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAnomalyCommandInput, type UpdateAnomalyCommandOutput, type UpdateDeliveryConfigurationCommandInput, type UpdateDeliveryConfigurationCommandOutput, type UpdateLogAnomalyDetectorCommandInput, type UpdateLogAnomalyDetectorCommandOutput } from "@aws-sdk/client-cloudwatch-logs";
5
+ import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
5
6
  import { Effect, Layer } from "effect";
6
- import { CloudWatchLogsClientInstance } from "./CloudWatchLogsClientInstance";
7
- import { CloudWatchLogsClientInstanceConfig } from "./CloudWatchLogsClientInstanceConfig";
8
- import { AccessDeniedError, ConflictError, DataAlreadyAcceptedError, InvalidOperationError, InvalidParameterError, InvalidSequenceTokenError, LimitExceededError, MalformedQueryError, OperationAbortedError, ResourceAlreadyExistsError, ResourceNotFoundError, ServiceQuotaExceededError, ServiceUnavailableError, ThrottlingError, TooManyTagsError, UnrecognizedClientError, ValidationError, SdkError } from "./Errors";
9
- /**
10
- * @since 1.0.0
11
- */
12
- export interface HttpHandlerOptions {
13
- /**
14
- * The maximum time in milliseconds that the connection phase of a request
15
- * may take before the connection attempt is abandoned.
16
- */
17
- requestTimeout?: number;
18
- }
7
+ import * as Instance from "./CloudWatchLogsClientInstance.js";
8
+ import type { AccessDeniedError, ConflictError, DataAlreadyAcceptedError, InvalidOperationError, InvalidParameterError, InvalidSequenceTokenError, LimitExceededError, MalformedQueryError, OperationAbortedError, ResourceAlreadyExistsError, ResourceNotFoundError, ServiceQuotaExceededError, ServiceUnavailableError, ThrottlingError, TooManyTagsError, UnrecognizedClientError, ValidationError } from "./Errors.js";
19
9
  interface CloudWatchLogsService$ {
20
10
  readonly _: unique symbol;
21
11
  /**
@@ -379,7 +369,7 @@ interface CloudWatchLogsService$ {
379
369
  * @since 1.0.0
380
370
  * @category constructors
381
371
  */
382
- export declare const makeCloudWatchLogsService: Effect.Effect<CloudWatchLogsService$, never, CloudWatchLogsClientInstance>;
372
+ export declare const makeCloudWatchLogsService: Effect.Effect<CloudWatchLogsService$, never, Instance.CloudWatchLogsClientInstance>;
383
373
  declare const CloudWatchLogsService_base: import("effect/Context").TagClass<CloudWatchLogsService, "@effect-aws/client-cloudwatch-logs/CloudWatchLogsService", CloudWatchLogsService$> & {
384
374
  readonly _: Effect.Effect<CloudWatchLogsService$["_"], never, CloudWatchLogsService>;
385
375
  associateKmsKey: (args: AssociateKmsKeyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<AssociateKmsKeyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
@@ -472,7 +462,7 @@ declare const CloudWatchLogsService_base: import("effect/Context").TagClass<Clou
472
462
  updateDeliveryConfiguration: (args: UpdateDeliveryConfigurationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateDeliveryConfigurationCommandOutput, AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
473
463
  updateLogAnomalyDetector: (args: UpdateLogAnomalyDetectorCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateLogAnomalyDetectorCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
474
464
  } & {
475
- use: <X>(body: (_: CloudWatchLogsService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, R | CloudWatchLogsService> : Effect.Effect<X, never, CloudWatchLogsService>;
465
+ use: <X>(body: (_: CloudWatchLogsService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, CloudWatchLogsService | R> : Effect.Effect<X, never, CloudWatchLogsService>;
476
466
  };
477
467
  /**
478
468
  * @since 1.0.0
@@ -480,31 +470,19 @@ declare const CloudWatchLogsService_base: import("effect/Context").TagClass<Clou
480
470
  */
481
471
  export declare class CloudWatchLogsService extends CloudWatchLogsService_base {
482
472
  static readonly defaultLayer: Layer.Layer<CloudWatchLogsService, never, never>;
483
- static readonly layer: (config: CloudWatchLogsClientConfig) => Layer.Layer<CloudWatchLogsService, never, never>;
473
+ static readonly layer: (config: CloudWatchLogsService.Config) => Layer.Layer<CloudWatchLogsService, never, never>;
484
474
  static readonly baseLayer: (evaluate: (defaultConfig: CloudWatchLogsClientConfig) => CloudWatchLogsClient) => Layer.Layer<CloudWatchLogsService, never, never>;
485
475
  }
486
476
  /**
487
477
  * @since 1.0.0
488
- * @category models
489
- * @alias CloudWatchLogsService
490
- */
491
- export declare const CloudWatchLogs: typeof CloudWatchLogsService;
492
- /**
493
- * @since 1.0.0
494
- * @category layers
495
- * @deprecated use CloudWatchLogs.baseLayer instead
496
478
  */
497
- export declare const BaseCloudWatchLogsServiceLayer: Layer.Layer<CloudWatchLogsService, never, CloudWatchLogsClientInstance>;
498
- /**
499
- * @since 1.0.0
500
- * @category layers
501
- * @deprecated use CloudWatchLogs.layer instead
502
- */
503
- export declare const CloudWatchLogsServiceLayer: Layer.Layer<CloudWatchLogsService, never, CloudWatchLogsClientInstanceConfig>;
504
- /**
505
- * @since 1.0.0
506
- * @category layers
507
- * @deprecated use CloudWatchLogs.defaultLayer instead
508
- */
509
- export declare const DefaultCloudWatchLogsServiceLayer: Layer.Layer<CloudWatchLogsService, never, never>;
479
+ export declare namespace CloudWatchLogsService {
480
+ /**
481
+ * @since 1.0.0
482
+ */
483
+ interface Config extends Omit<CloudWatchLogsClientConfig, "logger"> {
484
+ readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
485
+ }
486
+ }
510
487
  export {};
488
+ //# sourceMappingURL=CloudWatchLogsService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudWatchLogsService.d.ts","sourceRoot":"","sources":["../../src/CloudWatchLogsService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,145 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.CloudWatchLogsService = exports.makeCloudWatchLogsService = void 0;
27
+ /**
28
+ * @since 1.0.0
29
+ */
30
+ const client_cloudwatch_logs_1 = require("@aws-sdk/client-cloudwatch-logs");
31
+ const commons_1 = require("@effect-aws/commons");
32
+ const effect_1 = require("effect");
33
+ const Instance = __importStar(require("./CloudWatchLogsClientInstance.js"));
34
+ const CloudWatchLogsServiceConfig = __importStar(require("./CloudWatchLogsServiceConfig.js"));
35
+ const Errors_js_1 = require("./Errors.js");
36
+ const commands = {
37
+ AssociateKmsKeyCommand: client_cloudwatch_logs_1.AssociateKmsKeyCommand,
38
+ CancelExportTaskCommand: client_cloudwatch_logs_1.CancelExportTaskCommand,
39
+ CreateDeliveryCommand: client_cloudwatch_logs_1.CreateDeliveryCommand,
40
+ CreateExportTaskCommand: client_cloudwatch_logs_1.CreateExportTaskCommand,
41
+ CreateLogAnomalyDetectorCommand: client_cloudwatch_logs_1.CreateLogAnomalyDetectorCommand,
42
+ CreateLogGroupCommand: client_cloudwatch_logs_1.CreateLogGroupCommand,
43
+ CreateLogStreamCommand: client_cloudwatch_logs_1.CreateLogStreamCommand,
44
+ DeleteAccountPolicyCommand: client_cloudwatch_logs_1.DeleteAccountPolicyCommand,
45
+ DeleteDataProtectionPolicyCommand: client_cloudwatch_logs_1.DeleteDataProtectionPolicyCommand,
46
+ DeleteDeliveryCommand: client_cloudwatch_logs_1.DeleteDeliveryCommand,
47
+ DeleteDeliveryDestinationCommand: client_cloudwatch_logs_1.DeleteDeliveryDestinationCommand,
48
+ DeleteDeliveryDestinationPolicyCommand: client_cloudwatch_logs_1.DeleteDeliveryDestinationPolicyCommand,
49
+ DeleteDeliverySourceCommand: client_cloudwatch_logs_1.DeleteDeliverySourceCommand,
50
+ DeleteDestinationCommand: client_cloudwatch_logs_1.DeleteDestinationCommand,
51
+ DeleteIndexPolicyCommand: client_cloudwatch_logs_1.DeleteIndexPolicyCommand,
52
+ DeleteIntegrationCommand: client_cloudwatch_logs_1.DeleteIntegrationCommand,
53
+ DeleteLogAnomalyDetectorCommand: client_cloudwatch_logs_1.DeleteLogAnomalyDetectorCommand,
54
+ DeleteLogGroupCommand: client_cloudwatch_logs_1.DeleteLogGroupCommand,
55
+ DeleteLogStreamCommand: client_cloudwatch_logs_1.DeleteLogStreamCommand,
56
+ DeleteMetricFilterCommand: client_cloudwatch_logs_1.DeleteMetricFilterCommand,
57
+ DeleteQueryDefinitionCommand: client_cloudwatch_logs_1.DeleteQueryDefinitionCommand,
58
+ DeleteResourcePolicyCommand: client_cloudwatch_logs_1.DeleteResourcePolicyCommand,
59
+ DeleteRetentionPolicyCommand: client_cloudwatch_logs_1.DeleteRetentionPolicyCommand,
60
+ DeleteSubscriptionFilterCommand: client_cloudwatch_logs_1.DeleteSubscriptionFilterCommand,
61
+ DeleteTransformerCommand: client_cloudwatch_logs_1.DeleteTransformerCommand,
62
+ DescribeAccountPoliciesCommand: client_cloudwatch_logs_1.DescribeAccountPoliciesCommand,
63
+ DescribeConfigurationTemplatesCommand: client_cloudwatch_logs_1.DescribeConfigurationTemplatesCommand,
64
+ DescribeDeliveriesCommand: client_cloudwatch_logs_1.DescribeDeliveriesCommand,
65
+ DescribeDeliveryDestinationsCommand: client_cloudwatch_logs_1.DescribeDeliveryDestinationsCommand,
66
+ DescribeDeliverySourcesCommand: client_cloudwatch_logs_1.DescribeDeliverySourcesCommand,
67
+ DescribeDestinationsCommand: client_cloudwatch_logs_1.DescribeDestinationsCommand,
68
+ DescribeExportTasksCommand: client_cloudwatch_logs_1.DescribeExportTasksCommand,
69
+ DescribeFieldIndexesCommand: client_cloudwatch_logs_1.DescribeFieldIndexesCommand,
70
+ DescribeIndexPoliciesCommand: client_cloudwatch_logs_1.DescribeIndexPoliciesCommand,
71
+ DescribeLogGroupsCommand: client_cloudwatch_logs_1.DescribeLogGroupsCommand,
72
+ DescribeLogStreamsCommand: client_cloudwatch_logs_1.DescribeLogStreamsCommand,
73
+ DescribeMetricFiltersCommand: client_cloudwatch_logs_1.DescribeMetricFiltersCommand,
74
+ DescribeQueriesCommand: client_cloudwatch_logs_1.DescribeQueriesCommand,
75
+ DescribeQueryDefinitionsCommand: client_cloudwatch_logs_1.DescribeQueryDefinitionsCommand,
76
+ DescribeResourcePoliciesCommand: client_cloudwatch_logs_1.DescribeResourcePoliciesCommand,
77
+ DescribeSubscriptionFiltersCommand: client_cloudwatch_logs_1.DescribeSubscriptionFiltersCommand,
78
+ DisassociateKmsKeyCommand: client_cloudwatch_logs_1.DisassociateKmsKeyCommand,
79
+ FilterLogEventsCommand: client_cloudwatch_logs_1.FilterLogEventsCommand,
80
+ GetDataProtectionPolicyCommand: client_cloudwatch_logs_1.GetDataProtectionPolicyCommand,
81
+ GetDeliveryCommand: client_cloudwatch_logs_1.GetDeliveryCommand,
82
+ GetDeliveryDestinationCommand: client_cloudwatch_logs_1.GetDeliveryDestinationCommand,
83
+ GetDeliveryDestinationPolicyCommand: client_cloudwatch_logs_1.GetDeliveryDestinationPolicyCommand,
84
+ GetDeliverySourceCommand: client_cloudwatch_logs_1.GetDeliverySourceCommand,
85
+ GetIntegrationCommand: client_cloudwatch_logs_1.GetIntegrationCommand,
86
+ GetLogAnomalyDetectorCommand: client_cloudwatch_logs_1.GetLogAnomalyDetectorCommand,
87
+ GetLogEventsCommand: client_cloudwatch_logs_1.GetLogEventsCommand,
88
+ GetLogGroupFieldsCommand: client_cloudwatch_logs_1.GetLogGroupFieldsCommand,
89
+ GetLogRecordCommand: client_cloudwatch_logs_1.GetLogRecordCommand,
90
+ GetQueryResultsCommand: client_cloudwatch_logs_1.GetQueryResultsCommand,
91
+ GetTransformerCommand: client_cloudwatch_logs_1.GetTransformerCommand,
92
+ ListAnomaliesCommand: client_cloudwatch_logs_1.ListAnomaliesCommand,
93
+ ListIntegrationsCommand: client_cloudwatch_logs_1.ListIntegrationsCommand,
94
+ ListLogAnomalyDetectorsCommand: client_cloudwatch_logs_1.ListLogAnomalyDetectorsCommand,
95
+ ListLogGroupsForQueryCommand: client_cloudwatch_logs_1.ListLogGroupsForQueryCommand,
96
+ ListTagsForResourceCommand: client_cloudwatch_logs_1.ListTagsForResourceCommand,
97
+ ListTagsLogGroupCommand: client_cloudwatch_logs_1.ListTagsLogGroupCommand,
98
+ PutAccountPolicyCommand: client_cloudwatch_logs_1.PutAccountPolicyCommand,
99
+ PutDataProtectionPolicyCommand: client_cloudwatch_logs_1.PutDataProtectionPolicyCommand,
100
+ PutDeliveryDestinationCommand: client_cloudwatch_logs_1.PutDeliveryDestinationCommand,
101
+ PutDeliveryDestinationPolicyCommand: client_cloudwatch_logs_1.PutDeliveryDestinationPolicyCommand,
102
+ PutDeliverySourceCommand: client_cloudwatch_logs_1.PutDeliverySourceCommand,
103
+ PutDestinationCommand: client_cloudwatch_logs_1.PutDestinationCommand,
104
+ PutDestinationPolicyCommand: client_cloudwatch_logs_1.PutDestinationPolicyCommand,
105
+ PutIndexPolicyCommand: client_cloudwatch_logs_1.PutIndexPolicyCommand,
106
+ PutIntegrationCommand: client_cloudwatch_logs_1.PutIntegrationCommand,
107
+ PutLogEventsCommand: client_cloudwatch_logs_1.PutLogEventsCommand,
108
+ PutMetricFilterCommand: client_cloudwatch_logs_1.PutMetricFilterCommand,
109
+ PutQueryDefinitionCommand: client_cloudwatch_logs_1.PutQueryDefinitionCommand,
110
+ PutResourcePolicyCommand: client_cloudwatch_logs_1.PutResourcePolicyCommand,
111
+ PutRetentionPolicyCommand: client_cloudwatch_logs_1.PutRetentionPolicyCommand,
112
+ PutSubscriptionFilterCommand: client_cloudwatch_logs_1.PutSubscriptionFilterCommand,
113
+ PutTransformerCommand: client_cloudwatch_logs_1.PutTransformerCommand,
114
+ StartLiveTailCommand: client_cloudwatch_logs_1.StartLiveTailCommand,
115
+ StartQueryCommand: client_cloudwatch_logs_1.StartQueryCommand,
116
+ StopQueryCommand: client_cloudwatch_logs_1.StopQueryCommand,
117
+ TagLogGroupCommand: client_cloudwatch_logs_1.TagLogGroupCommand,
118
+ TagResourceCommand: client_cloudwatch_logs_1.TagResourceCommand,
119
+ TestMetricFilterCommand: client_cloudwatch_logs_1.TestMetricFilterCommand,
120
+ TestTransformerCommand: client_cloudwatch_logs_1.TestTransformerCommand,
121
+ UntagLogGroupCommand: client_cloudwatch_logs_1.UntagLogGroupCommand,
122
+ UntagResourceCommand: client_cloudwatch_logs_1.UntagResourceCommand,
123
+ UpdateAnomalyCommand: client_cloudwatch_logs_1.UpdateAnomalyCommand,
124
+ UpdateDeliveryConfigurationCommand: client_cloudwatch_logs_1.UpdateDeliveryConfigurationCommand,
125
+ UpdateLogAnomalyDetectorCommand: client_cloudwatch_logs_1.UpdateLogAnomalyDetectorCommand,
126
+ };
127
+ /**
128
+ * @since 1.0.0
129
+ * @category constructors
130
+ */
131
+ exports.makeCloudWatchLogsService = effect_1.Effect.gen(function* () {
132
+ const client = yield* Instance.CloudWatchLogsClientInstance;
133
+ return commons_1.Service.fromClientAndCommands(client, commands, Errors_js_1.AllServiceErrors);
134
+ });
135
+ /**
136
+ * @since 1.0.0
137
+ * @category models
138
+ */
139
+ class CloudWatchLogsService extends effect_1.Effect.Tag("@effect-aws/client-cloudwatch-logs/CloudWatchLogsService")() {
140
+ static defaultLayer = effect_1.Layer.effect(this, exports.makeCloudWatchLogsService).pipe(effect_1.Layer.provide(Instance.layer));
141
+ static layer = (config) => effect_1.Layer.effect(this, exports.makeCloudWatchLogsService).pipe(effect_1.Layer.provide(Instance.layer), effect_1.Layer.provide(CloudWatchLogsServiceConfig.setCloudWatchLogsServiceConfig(config)));
142
+ static baseLayer = (evaluate) => effect_1.Layer.effect(this, exports.makeCloudWatchLogsService).pipe(effect_1.Layer.provide(effect_1.Layer.effect(Instance.CloudWatchLogsClientInstance, effect_1.Effect.map(CloudWatchLogsServiceConfig.toCloudWatchLogsClientConfig, evaluate))));
143
+ }
144
+ exports.CloudWatchLogsService = CloudWatchLogsService;
145
+ //# sourceMappingURL=CloudWatchLogsService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudWatchLogsService.js","sourceRoot":"","sources":["../../src/CloudWatchLogsService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import type { CloudWatchLogsClientConfig } from "@aws-sdk/client-cloudwatch-logs";
5
+ import { Effect, Layer } from "effect";
6
+ import type { CloudWatchLogsService } from "./CloudWatchLogsService.js";
7
+ /**
8
+ * @since 1.0.0
9
+ * @category cloudwatch-logs service config
10
+ */
11
+ export declare const withCloudWatchLogsServiceConfig: {
12
+ (config: CloudWatchLogsService.Config): <A, E, R>(effect: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R>;
13
+ <A, E, R>(effect: Effect.Effect<A, E, R>, config: CloudWatchLogsService.Config): Effect.Effect<A, E, R>;
14
+ };
15
+ /**
16
+ * @since 1.0.0
17
+ * @category cloudwatch-logs service config
18
+ */
19
+ export declare const setCloudWatchLogsServiceConfig: (config: CloudWatchLogsService.Config) => Layer.Layer<never, never, never>;
20
+ /**
21
+ * @since 1.0.0
22
+ * @category adapters
23
+ */
24
+ export declare const toCloudWatchLogsClientConfig: Effect.Effect<CloudWatchLogsClientConfig>;
25
+ //# sourceMappingURL=CloudWatchLogsServiceConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudWatchLogsServiceConfig.d.ts","sourceRoot":"","sources":["../../src/CloudWatchLogsServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAElF,OAAO,EAAE,MAAM,EAAY,KAAK,EAAE,MAAM,QAAQ,CAAC;AAGjD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAWxE;;;GAGG;AACH,eAAO,MAAM,+BAA+B,EAAE;IAC5C,CAAC,MAAM,EAAE,qBAAqB,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC5G,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,qBAAqB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAKzG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,8BAA8B,WAAY,sBAAsB,MAAM,qCAClB,CAAC;AAElE;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,MAAM,CAAC,MAAM,CAAC,0BAA0B,CAQjF,CAAC"}
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.toCloudWatchLogsClientConfig = exports.setCloudWatchLogsServiceConfig = exports.withCloudWatchLogsServiceConfig = void 0;
4
+ const commons_1 = require("@effect-aws/commons");
5
+ const effect_1 = require("effect");
6
+ const Function_1 = require("effect/Function");
7
+ const GlobalValue_1 = require("effect/GlobalValue");
8
+ /**
9
+ * @since 1.0.0
10
+ * @category cloudwatch-logs service config
11
+ */
12
+ const currentCloudWatchLogsServiceConfig = (0, GlobalValue_1.globalValue)("@effect-aws/client-cloudwatch-logs/currentCloudWatchLogsServiceConfig", () => effect_1.FiberRef.unsafeMake({}));
13
+ /**
14
+ * @since 1.0.0
15
+ * @category cloudwatch-logs service config
16
+ */
17
+ exports.withCloudWatchLogsServiceConfig = (0, Function_1.dual)(2, (effect, config) => effect_1.Effect.locally(effect, currentCloudWatchLogsServiceConfig, config));
18
+ /**
19
+ * @since 1.0.0
20
+ * @category cloudwatch-logs service config
21
+ */
22
+ const setCloudWatchLogsServiceConfig = (config) => effect_1.Layer.locallyScoped(currentCloudWatchLogsServiceConfig, config);
23
+ exports.setCloudWatchLogsServiceConfig = setCloudWatchLogsServiceConfig;
24
+ /**
25
+ * @since 1.0.0
26
+ * @category adapters
27
+ */
28
+ exports.toCloudWatchLogsClientConfig = effect_1.Effect.gen(function* () {
29
+ const { logger: serviceLogger, ...config } = yield* effect_1.FiberRef.get(currentCloudWatchLogsServiceConfig);
30
+ const logger = serviceLogger === true
31
+ ? yield* commons_1.ServiceLogger.toClientLogger(commons_1.ServiceLogger.defaultServiceLogger)
32
+ : (serviceLogger ? yield* commons_1.ServiceLogger.toClientLogger(commons_1.ServiceLogger.make(serviceLogger)) : undefined);
33
+ return { logger, ...config };
34
+ });
35
+ //# sourceMappingURL=CloudWatchLogsServiceConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudWatchLogsServiceConfig.js","sourceRoot":"","sources":["../../src/CloudWatchLogsServiceConfig.ts"],"names":[],"mappings":";;;AAIA,iDAAoD;AACpD,mCAAiD;AACjD,8CAAuC;AACvC,oDAAiD;AAGjD;;;GAGG;AACH,MAAM,kCAAkC,GAAG,IAAA,yBAAW,EACpD,uEAAuE,EACvE,GAAG,EAAE,CAAC,iBAAQ,CAAC,UAAU,CAA+B,EAAE,CAAC,CAC5D,CAAC;AAEF;;;GAGG;AACU,QAAA,+BAA+B,GAGxC,IAAA,eAAI,EACN,CAAC,EACD,CAAU,MAA8B,EAAE,MAAoC,EAA0B,EAAE,CACxG,eAAM,CAAC,OAAO,CAAC,MAAM,EAAE,kCAAkC,EAAE,MAAM,CAAC,CACrE,CAAC;AAEF;;;GAGG;AACI,MAAM,8BAA8B,GAAG,CAAC,MAAoC,EAAE,EAAE,CACrF,cAAK,CAAC,aAAa,CAAC,kCAAkC,EAAE,MAAM,CAAC,CAAC;AADrD,QAAA,8BAA8B,kCACuB;AAElE;;;GAGG;AACU,QAAA,4BAA4B,GAA8C,eAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IACzG,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,GAAG,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,iBAAQ,CAAC,GAAG,CAAC,kCAAkC,CAAC,CAAC;IAErG,MAAM,MAAM,GAAG,aAAa,KAAK,IAAI;QACnC,CAAC,CAAC,KAAK,CAAC,CAAC,uBAAa,CAAC,cAAc,CAAC,uBAAa,CAAC,oBAAoB,CAAC;QACzE,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,uBAAa,CAAC,cAAc,CAAC,uBAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;IAEzG,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AAC/B,CAAC,CAAC,CAAC"}
@@ -1,11 +1,7 @@
1
1
  import type { AccessDeniedException, ConflictException, DataAlreadyAcceptedException, InvalidOperationException, InvalidParameterException, InvalidSequenceTokenException, LimitExceededException, MalformedQueryException, OperationAbortedException, ResourceAlreadyExistsException, ResourceNotFoundException, ServiceQuotaExceededException, ServiceUnavailableException, SessionStreamingException, SessionTimeoutException, ThrottlingException, TooManyTagsException, UnrecognizedClientException, ValidationException } from "@aws-sdk/client-cloudwatch-logs";
2
- import { Data } from "effect";
3
- export declare const AllServiceErrors: string[];
4
- export type TaggedException<T extends {
5
- name: string;
6
- }> = T & {
7
- readonly _tag: T["name"];
8
- };
2
+ import type { TaggedException } from "@effect-aws/commons";
3
+ import { SdkError as CommonSdkError } from "@effect-aws/commons";
4
+ export declare const AllServiceErrors: readonly ["AccessDeniedException", "ConflictException", "DataAlreadyAcceptedException", "InvalidOperationException", "InvalidParameterException", "InvalidSequenceTokenException", "LimitExceededException", "MalformedQueryException", "OperationAbortedException", "ResourceAlreadyExistsException", "ResourceNotFoundException", "ServiceQuotaExceededException", "ServiceUnavailableException", "SessionStreamingException", "SessionTimeoutException", "ThrottlingException", "TooManyTagsException", "UnrecognizedClientException", "ValidationException"];
9
5
  export type AccessDeniedError = TaggedException<AccessDeniedException>;
10
6
  export type ConflictError = TaggedException<ConflictException>;
11
7
  export type DataAlreadyAcceptedError = TaggedException<DataAlreadyAcceptedException>;
@@ -25,7 +21,6 @@ export type ThrottlingError = TaggedException<ThrottlingException>;
25
21
  export type TooManyTagsError = TaggedException<TooManyTagsException>;
26
22
  export type UnrecognizedClientError = TaggedException<UnrecognizedClientException>;
27
23
  export type ValidationError = TaggedException<ValidationException>;
28
- export type SdkError = TaggedException<Error & {
29
- name: "SdkError";
30
- }>;
31
- export declare const SdkError: Data.Case.Constructor<SdkError, "_tag">;
24
+ export type SdkError = CommonSdkError;
25
+ export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
26
+ //# sourceMappingURL=Errors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,iBAAiB,EACjB,4BAA4B,EAC5B,yBAAyB,EACzB,yBAAyB,EACzB,6BAA6B,EAC7B,sBAAsB,EACtB,uBAAuB,EACvB,yBAAyB,EACzB,8BAA8B,EAC9B,yBAAyB,EACzB,6BAA6B,EAC7B,2BAA2B,EAC3B,yBAAyB,EACzB,uBAAuB,EACvB,mBAAmB,EACnB,oBAAoB,EACpB,2BAA2B,EAC3B,mBAAmB,EACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEjE,eAAO,MAAM,gBAAgB,kiBAoBnB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,wBAAwB,GAAG,eAAe,CAAC,4BAA4B,CAAC,CAAC;AACrF,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,yBAAyB,GAAG,eAAe,CAAC,6BAA6B,CAAC,CAAC;AACvF,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACzE,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,uBAAuB,CAAC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,0BAA0B,GAAG,eAAe,CAAC,8BAA8B,CAAC,CAAC;AACzF,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,yBAAyB,GAAG,eAAe,CAAC,6BAA6B,CAAC,CAAC;AACvF,MAAM,MAAM,uBAAuB,GAAG,eAAe,CAAC,2BAA2B,CAAC,CAAC;AACnF,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,uBAAuB,CAAC,CAAC;AAC3E,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACnE,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,uBAAuB,GAAG,eAAe,CAAC,2BAA2B,CAAC,CAAC;AACnF,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AAEnE,MAAM,MAAM,QAAQ,GAAG,cAAc,CAAC;AACtC,eAAO,MAAM,QAAQ,gEAAiB,CAAC"}
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SdkError = exports.AllServiceErrors = void 0;
4
+ const commons_1 = require("@effect-aws/commons");
5
+ exports.AllServiceErrors = [
6
+ "AccessDeniedException",
7
+ "ConflictException",
8
+ "DataAlreadyAcceptedException",
9
+ "InvalidOperationException",
10
+ "InvalidParameterException",
11
+ "InvalidSequenceTokenException",
12
+ "LimitExceededException",
13
+ "MalformedQueryException",
14
+ "OperationAbortedException",
15
+ "ResourceAlreadyExistsException",
16
+ "ResourceNotFoundException",
17
+ "ServiceQuotaExceededException",
18
+ "ServiceUnavailableException",
19
+ "SessionStreamingException",
20
+ "SessionTimeoutException",
21
+ "ThrottlingException",
22
+ "TooManyTagsException",
23
+ "UnrecognizedClientException",
24
+ "ValidationException",
25
+ ];
26
+ exports.SdkError = commons_1.SdkError;
27
+ //# sourceMappingURL=Errors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":";;;AAsBA,iDAAiE;AAEpD,QAAA,gBAAgB,GAAG;IAC9B,uBAAuB;IACvB,mBAAmB;IACnB,8BAA8B;IAC9B,2BAA2B;IAC3B,2BAA2B;IAC3B,+BAA+B;IAC/B,wBAAwB;IACxB,yBAAyB;IACzB,2BAA2B;IAC3B,gCAAgC;IAChC,2BAA2B;IAC3B,+BAA+B;IAC/B,6BAA6B;IAC7B,2BAA2B;IAC3B,yBAAyB;IACzB,qBAAqB;IACrB,sBAAsB;IACtB,6BAA6B;IAC7B,qBAAqB;CACb,CAAC;AAuBE,QAAA,QAAQ,GAAG,kBAAc,CAAC"}
@@ -0,0 +1,39 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { CloudWatchLogsService } from "./CloudWatchLogsService.js";
5
+ /**
6
+ * @since 1.0.0
7
+ */
8
+ export * from "./Errors.js";
9
+ /**
10
+ * @since 1.0.0
11
+ */
12
+ export * as CloudWatchLogsClientInstance from "./CloudWatchLogsClientInstance.js";
13
+ /**
14
+ * @since 1.0.0
15
+ */
16
+ export * as CloudWatchLogsServiceConfig from "./CloudWatchLogsServiceConfig.js";
17
+ /**
18
+ * @since 1.0.0
19
+ */
20
+ export * from "./CloudWatchLogsService.js";
21
+ /**
22
+ * @since 1.0.0
23
+ * @category exports
24
+ * @alias CloudWatchLogsService
25
+ */
26
+ export declare namespace CloudWatchLogs {
27
+ /**
28
+ * @since 1.0.0
29
+ * @alias CloudWatchLogsService.Config
30
+ */
31
+ type Config = CloudWatchLogsService.Config;
32
+ }
33
+ /**
34
+ * @since 1.0.0
35
+ * @category exports
36
+ * @alias CloudWatchLogsService
37
+ */
38
+ export declare const CloudWatchLogs: typeof CloudWatchLogsService;
39
+ //# sourceMappingURL=index.d.ts.map