@effect-aws/client-cloudwatch-logs 1.3.0 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CloudWatchLogsClientInstance/package.json +6 -0
- package/CloudWatchLogsService/package.json +6 -0
- package/CloudWatchLogsServiceConfig/package.json +6 -0
- package/Errors/package.json +6 -0
- package/dist/cjs/CloudWatchLogsClientInstance.d.ts +24 -0
- package/dist/cjs/CloudWatchLogsClientInstance.d.ts.map +1 -0
- package/dist/cjs/CloudWatchLogsClientInstance.js +50 -0
- package/dist/cjs/CloudWatchLogsClientInstance.js.map +1 -0
- package/{lib → dist/cjs}/CloudWatchLogsService.d.ts +17 -130
- package/dist/cjs/CloudWatchLogsService.d.ts.map +1 -0
- package/dist/cjs/CloudWatchLogsService.js +148 -0
- package/dist/cjs/CloudWatchLogsService.js.map +1 -0
- package/dist/cjs/CloudWatchLogsServiceConfig.d.ts +25 -0
- package/dist/cjs/CloudWatchLogsServiceConfig.d.ts.map +1 -0
- package/dist/cjs/CloudWatchLogsServiceConfig.js +35 -0
- package/dist/cjs/CloudWatchLogsServiceConfig.js.map +1 -0
- package/{lib → dist/cjs}/Errors.d.ts +6 -11
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +27 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/CloudWatchLogsClientInstance.d.ts +24 -0
- package/dist/dts/CloudWatchLogsClientInstance.d.ts.map +1 -0
- package/dist/dts/CloudWatchLogsService.d.ts +397 -0
- package/dist/dts/CloudWatchLogsService.d.ts.map +1 -0
- package/dist/dts/CloudWatchLogsServiceConfig.d.ts +25 -0
- package/dist/dts/CloudWatchLogsServiceConfig.d.ts.map +1 -0
- package/dist/dts/Errors.d.ts +26 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/CloudWatchLogsClientInstance.js +23 -0
- package/dist/esm/CloudWatchLogsClientInstance.js.map +1 -0
- package/dist/esm/CloudWatchLogsService.js +121 -0
- package/dist/esm/CloudWatchLogsService.js.map +1 -0
- package/dist/esm/CloudWatchLogsServiceConfig.js +31 -0
- package/dist/esm/CloudWatchLogsServiceConfig.js.map +1 -0
- package/dist/esm/Errors.js +24 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +60 -43
- package/src/CloudWatchLogsClientInstance.ts +33 -0
- package/src/CloudWatchLogsService.ts +1568 -0
- package/src/CloudWatchLogsServiceConfig.ts +52 -0
- package/src/Errors.ts +68 -0
- package/src/index.ts +44 -0
- package/CHANGELOG.md +0 -41
- package/docgen.json +0 -8
- package/lib/CloudWatchLogsClientInstance.d.ts +0 -31
- package/lib/CloudWatchLogsClientInstance.js +0 -57
- package/lib/CloudWatchLogsClientInstanceConfig.d.ts +0 -23
- package/lib/CloudWatchLogsClientInstanceConfig.js +0 -44
- package/lib/CloudWatchLogsService.js +0 -177
- package/lib/Errors.js +0 -27
- package/lib/esm/CloudWatchLogsClientInstance.js +0 -30
- package/lib/esm/CloudWatchLogsClientInstanceConfig.js +0 -40
- package/lib/esm/CloudWatchLogsService.js +0 -173
- package/lib/esm/Errors.js +0 -24
- package/lib/esm/index.js +0 -5
- package/lib/index.d.ts +0 -4
- package/lib/index.js +0 -21
- package/project.json +0 -77
- package/vitest.config.ts +0 -3
|
@@ -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
|
|
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
|
|
7
|
-
import {
|
|
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,100 +369,9 @@ interface CloudWatchLogsService$ {
|
|
|
379
369
|
* @since 1.0.0
|
|
380
370
|
* @category constructors
|
|
381
371
|
*/
|
|
382
|
-
export declare const makeCloudWatchLogsService: Effect.Effect<CloudWatchLogsService$, never, CloudWatchLogsClientInstance>;
|
|
383
|
-
declare const CloudWatchLogsService_base: import("effect/Context").TagClass<CloudWatchLogsService, "@effect-aws/client-cloudwatch-logs/CloudWatchLogsService", CloudWatchLogsService$> & {
|
|
384
|
-
|
|
385
|
-
associateKmsKey: (args: AssociateKmsKeyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<AssociateKmsKeyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
386
|
-
cancelExportTask: (args: CancelExportTaskCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CancelExportTaskCommandOutput, InvalidOperationError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
387
|
-
createDelivery: (args: CreateDeliveryCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateDeliveryCommandOutput, AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
388
|
-
createExportTask: (args: CreateExportTaskCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateExportTaskCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceAlreadyExistsError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
389
|
-
createLogAnomalyDetector: (args: CreateLogAnomalyDetectorCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateLogAnomalyDetectorCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
390
|
-
createLogGroup: (args: CreateLogGroupCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateLogGroupCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceAlreadyExistsError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
391
|
-
createLogStream: (args: CreateLogStreamCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateLogStreamCommandOutput, InvalidParameterError | ResourceAlreadyExistsError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
392
|
-
deleteAccountPolicy: (args: DeleteAccountPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteAccountPolicyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
393
|
-
deleteDataProtectionPolicy: (args: DeleteDataProtectionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteDataProtectionPolicyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
394
|
-
deleteDelivery: (args: DeleteDeliveryCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteDeliveryCommandOutput, ConflictError | ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
395
|
-
deleteDeliveryDestination: (args: DeleteDeliveryDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteDeliveryDestinationCommandOutput, ConflictError | ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
396
|
-
deleteDeliveryDestinationPolicy: (args: DeleteDeliveryDestinationPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteDeliveryDestinationPolicyCommandOutput, ConflictError | ResourceNotFoundError | ServiceUnavailableError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
397
|
-
deleteDeliverySource: (args: DeleteDeliverySourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteDeliverySourceCommandOutput, ConflictError | ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
398
|
-
deleteDestination: (args: DeleteDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteDestinationCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
399
|
-
deleteIndexPolicy: (args: DeleteIndexPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteIndexPolicyCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
400
|
-
deleteIntegration: (args: DeleteIntegrationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteIntegrationCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
401
|
-
deleteLogAnomalyDetector: (args: DeleteLogAnomalyDetectorCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteLogAnomalyDetectorCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
402
|
-
deleteLogGroup: (args: DeleteLogGroupCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteLogGroupCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
403
|
-
deleteLogStream: (args: DeleteLogStreamCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteLogStreamCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
404
|
-
deleteMetricFilter: (args: DeleteMetricFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteMetricFilterCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
405
|
-
deleteQueryDefinition: (args: DeleteQueryDefinitionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteQueryDefinitionCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
406
|
-
deleteResourcePolicy: (args: DeleteResourcePolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteResourcePolicyCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
407
|
-
deleteRetentionPolicy: (args: DeleteRetentionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteRetentionPolicyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
408
|
-
deleteSubscriptionFilter: (args: DeleteSubscriptionFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteSubscriptionFilterCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
409
|
-
deleteTransformer: (args: DeleteTransformerCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteTransformerCommandOutput, InvalidOperationError | InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
410
|
-
describeAccountPolicies: (args: DescribeAccountPoliciesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeAccountPoliciesCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
411
|
-
describeConfigurationTemplates: (args: DescribeConfigurationTemplatesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeConfigurationTemplatesCommandOutput, ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
412
|
-
describeDeliveries: (args: DescribeDeliveriesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeDeliveriesCommandOutput, ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
413
|
-
describeDeliveryDestinations: (args: DescribeDeliveryDestinationsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeDeliveryDestinationsCommandOutput, ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
414
|
-
describeDeliverySources: (args: DescribeDeliverySourcesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeDeliverySourcesCommandOutput, ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
415
|
-
describeDestinations: (args: DescribeDestinationsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeDestinationsCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
416
|
-
describeExportTasks: (args: DescribeExportTasksCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeExportTasksCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
417
|
-
describeFieldIndexes: (args: DescribeFieldIndexesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeFieldIndexesCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
418
|
-
describeIndexPolicies: (args: DescribeIndexPoliciesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeIndexPoliciesCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
419
|
-
describeLogGroups: (args: DescribeLogGroupsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeLogGroupsCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
420
|
-
describeLogStreams: (args: DescribeLogStreamsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeLogStreamsCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
421
|
-
describeMetricFilters: (args: DescribeMetricFiltersCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeMetricFiltersCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
422
|
-
describeQueries: (args: DescribeQueriesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeQueriesCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
423
|
-
describeQueryDefinitions: (args: DescribeQueryDefinitionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeQueryDefinitionsCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
424
|
-
describeResourcePolicies: (args: DescribeResourcePoliciesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeResourcePoliciesCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
425
|
-
describeSubscriptionFilters: (args: DescribeSubscriptionFiltersCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeSubscriptionFiltersCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
426
|
-
disassociateKmsKey: (args: DisassociateKmsKeyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DisassociateKmsKeyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
427
|
-
filterLogEvents: (args: FilterLogEventsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<FilterLogEventsCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
428
|
-
getDataProtectionPolicy: (args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetDataProtectionPolicyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
429
|
-
getDelivery: (args: GetDeliveryCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetDeliveryCommandOutput, ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
430
|
-
getDeliveryDestination: (args: GetDeliveryDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetDeliveryDestinationCommandOutput, ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
431
|
-
getDeliveryDestinationPolicy: (args: GetDeliveryDestinationPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetDeliveryDestinationPolicyCommandOutput, ResourceNotFoundError | ServiceUnavailableError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
432
|
-
getDeliverySource: (args: GetDeliverySourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetDeliverySourceCommandOutput, ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
433
|
-
getIntegration: (args: GetIntegrationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetIntegrationCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
434
|
-
getLogAnomalyDetector: (args: GetLogAnomalyDetectorCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLogAnomalyDetectorCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
435
|
-
getLogEvents: (args: GetLogEventsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLogEventsCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
436
|
-
getLogGroupFields: (args: GetLogGroupFieldsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLogGroupFieldsCommandOutput, InvalidParameterError | LimitExceededError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
437
|
-
getLogRecord: (args: GetLogRecordCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLogRecordCommandOutput, InvalidParameterError | LimitExceededError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
438
|
-
getQueryResults: (args: GetQueryResultsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetQueryResultsCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
439
|
-
getTransformer: (args: GetTransformerCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetTransformerCommandOutput, InvalidOperationError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
440
|
-
listAnomalies: (args: ListAnomaliesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListAnomaliesCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
441
|
-
listIntegrations: (args: ListIntegrationsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListIntegrationsCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
442
|
-
listLogAnomalyDetectors: (args: ListLogAnomalyDetectorsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListLogAnomalyDetectorsCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
443
|
-
listLogGroupsForQuery: (args: ListLogGroupsForQueryCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListLogGroupsForQueryCommandOutput, AccessDeniedError | InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
444
|
-
listTagsForResource: (args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListTagsForResourceCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
445
|
-
listTagsLogGroup: (args: ListTagsLogGroupCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListTagsLogGroupCommandOutput, ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
446
|
-
putAccountPolicy: (args: PutAccountPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutAccountPolicyCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
447
|
-
putDataProtectionPolicy: (args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDataProtectionPolicyCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
448
|
-
putDeliveryDestination: (args: PutDeliveryDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDeliveryDestinationCommandOutput, ConflictError | ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
449
|
-
putDeliveryDestinationPolicy: (args: PutDeliveryDestinationPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDeliveryDestinationPolicyCommandOutput, ConflictError | ResourceNotFoundError | ServiceUnavailableError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
450
|
-
putDeliverySource: (args: PutDeliverySourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDeliverySourceCommandOutput, ConflictError | ResourceNotFoundError | ServiceQuotaExceededError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
451
|
-
putDestination: (args: PutDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDestinationCommandOutput, InvalidParameterError | OperationAbortedError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
452
|
-
putDestinationPolicy: (args: PutDestinationPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDestinationPolicyCommandOutput, InvalidParameterError | OperationAbortedError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
453
|
-
putIndexPolicy: (args: PutIndexPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutIndexPolicyCommandOutput, InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
454
|
-
putIntegration: (args: PutIntegrationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutIntegrationCommandOutput, InvalidParameterError | LimitExceededError | ServiceUnavailableError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
455
|
-
putLogEvents: (args: PutLogEventsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutLogEventsCommandOutput, DataAlreadyAcceptedError | InvalidParameterError | InvalidSequenceTokenError | ResourceNotFoundError | ServiceUnavailableError | UnrecognizedClientError | SdkError, CloudWatchLogsService>;
|
|
456
|
-
putMetricFilter: (args: PutMetricFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutMetricFilterCommandOutput, InvalidOperationError | InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
457
|
-
putQueryDefinition: (args: PutQueryDefinitionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutQueryDefinitionCommandOutput, InvalidParameterError | LimitExceededError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
458
|
-
putResourcePolicy: (args: PutResourcePolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutResourcePolicyCommandOutput, InvalidParameterError | LimitExceededError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
459
|
-
putRetentionPolicy: (args: PutRetentionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutRetentionPolicyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
460
|
-
putSubscriptionFilter: (args: PutSubscriptionFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutSubscriptionFilterCommandOutput, InvalidOperationError | InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
461
|
-
putTransformer: (args: PutTransformerCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutTransformerCommandOutput, InvalidOperationError | InvalidParameterError | LimitExceededError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
462
|
-
startLiveTail: (args: StartLiveTailCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<StartLiveTailCommandOutput, AccessDeniedError | InvalidOperationError | InvalidParameterError | LimitExceededError | ResourceNotFoundError | SdkError, CloudWatchLogsService>;
|
|
463
|
-
startQuery: (args: StartQueryCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<StartQueryCommandOutput, InvalidParameterError | LimitExceededError | MalformedQueryError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
464
|
-
stopQuery: (args: StopQueryCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<StopQueryCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
465
|
-
tagLogGroup: (args: TagLogGroupCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TagLogGroupCommandOutput, InvalidParameterError | ResourceNotFoundError | SdkError, CloudWatchLogsService>;
|
|
466
|
-
tagResource: (args: TagResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TagResourceCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | TooManyTagsError | SdkError, CloudWatchLogsService>;
|
|
467
|
-
testMetricFilter: (args: TestMetricFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TestMetricFilterCommandOutput, InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
468
|
-
testTransformer: (args: TestTransformerCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TestTransformerCommandOutput, InvalidOperationError | InvalidParameterError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
469
|
-
untagLogGroup: (args: UntagLogGroupCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UntagLogGroupCommandOutput, ResourceNotFoundError | SdkError, CloudWatchLogsService>;
|
|
470
|
-
untagResource: (args: UntagResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UntagResourceCommandOutput, InvalidParameterError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
471
|
-
updateAnomaly: (args: UpdateAnomalyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateAnomalyCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
472
|
-
updateDeliveryConfiguration: (args: UpdateDeliveryConfigurationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateDeliveryConfigurationCommandOutput, AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError | SdkError, CloudWatchLogsService>;
|
|
473
|
-
updateLogAnomalyDetector: (args: UpdateLogAnomalyDetectorCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateLogAnomalyDetectorCommandOutput, InvalidParameterError | OperationAbortedError | ResourceNotFoundError | ServiceUnavailableError | SdkError, CloudWatchLogsService>;
|
|
474
|
-
} & {
|
|
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>;
|
|
372
|
+
export declare const makeCloudWatchLogsService: Effect.Effect<CloudWatchLogsService$, never, Instance.CloudWatchLogsClientInstance>;
|
|
373
|
+
declare const CloudWatchLogsService_base: import("effect/Context").TagClass<CloudWatchLogsService, "@effect-aws/client-cloudwatch-logs/CloudWatchLogsService", CloudWatchLogsService$> & Effect.Tag.Proxy<CloudWatchLogsService, CloudWatchLogsService$> & {
|
|
374
|
+
use: <X>(body: (_: CloudWatchLogsService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, CloudWatchLogsService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, import("effect/Cause").UnknownException, CloudWatchLogsService> : Effect.Effect<X, never, CloudWatchLogsService>;
|
|
476
375
|
};
|
|
477
376
|
/**
|
|
478
377
|
* @since 1.0.0
|
|
@@ -480,31 +379,19 @@ declare const CloudWatchLogsService_base: import("effect/Context").TagClass<Clou
|
|
|
480
379
|
*/
|
|
481
380
|
export declare class CloudWatchLogsService extends CloudWatchLogsService_base {
|
|
482
381
|
static readonly defaultLayer: Layer.Layer<CloudWatchLogsService, never, never>;
|
|
483
|
-
static readonly layer: (config:
|
|
382
|
+
static readonly layer: (config: CloudWatchLogsService.Config) => Layer.Layer<CloudWatchLogsService, never, never>;
|
|
484
383
|
static readonly baseLayer: (evaluate: (defaultConfig: CloudWatchLogsClientConfig) => CloudWatchLogsClient) => Layer.Layer<CloudWatchLogsService, never, never>;
|
|
485
384
|
}
|
|
486
385
|
/**
|
|
487
386
|
* @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
387
|
*/
|
|
497
|
-
export declare
|
|
498
|
-
/**
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
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>;
|
|
388
|
+
export declare namespace CloudWatchLogsService {
|
|
389
|
+
/**
|
|
390
|
+
* @since 1.0.0
|
|
391
|
+
*/
|
|
392
|
+
interface Config extends Omit<CloudWatchLogsClientConfig, "logger"> {
|
|
393
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
510
396
|
export {};
|
|
397
|
+
//# 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,148 @@
|
|
|
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, {
|
|
134
|
+
errorTags: Errors_js_1.AllServiceErrors,
|
|
135
|
+
resolveClientConfig: CloudWatchLogsServiceConfig.toCloudWatchLogsClientConfig,
|
|
136
|
+
});
|
|
137
|
+
});
|
|
138
|
+
/**
|
|
139
|
+
* @since 1.0.0
|
|
140
|
+
* @category models
|
|
141
|
+
*/
|
|
142
|
+
class CloudWatchLogsService extends effect_1.Effect.Tag("@effect-aws/client-cloudwatch-logs/CloudWatchLogsService")() {
|
|
143
|
+
static defaultLayer = effect_1.Layer.effect(this, exports.makeCloudWatchLogsService).pipe(effect_1.Layer.provide(Instance.layer));
|
|
144
|
+
static layer = (config) => effect_1.Layer.effect(this, exports.makeCloudWatchLogsService).pipe(effect_1.Layer.provide(Instance.layer), effect_1.Layer.provide(CloudWatchLogsServiceConfig.setCloudWatchLogsServiceConfig(config)));
|
|
145
|
+
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))));
|
|
146
|
+
}
|
|
147
|
+
exports.CloudWatchLogsService = CloudWatchLogsService;
|
|
148
|
+
//# 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"}
|