Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MetricFilter

import type { MetricFilter } from "https://aws-api.deno.dev/v0.3/services/cloudwatchlogs.ts?docs=full";

Metric filters express how CloudWatch Logs would extract metric observations from ingested log events and transform them into metric data in a CloudWatch metric.

interface MetricFilter {
creationTime?: number | null;
filterName?: string | null;
filterPattern?: string | null;
logGroupName?: string | null;
metricTransformations?: MetricTransformation[] | null;
}

§Properties

§
creationTime?: number | null
[src]

The creation time of the metric filter, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

§
filterName?: string | null
[src]

The name of the metric filter.

§
filterPattern?: string | null
[src]
§
logGroupName?: string | null
[src]

The name of the log group.

§
metricTransformations?: MetricTransformation[] | null
[src]

The metric transformations.