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

DescribeMetricFiltersRequest

import type { DescribeMetricFiltersRequest } from "https://aws-api.deno.dev/v0.3/services/cloudwatchlogs.ts?docs=full";
interface DescribeMetricFiltersRequest {
filterNamePrefix?: string | null;
limit?: number | null;
logGroupName?: string | null;
metricName?: string | null;
metricNamespace?: string | null;
nextToken?: string | null;
}

§Properties

§
filterNamePrefix?: string | null
[src]

The prefix to match. CloudWatch Logs uses the value you set here only if you also include the logGroupName parameter in your request.

§
limit?: number | null
[src]

The maximum number of items returned. If you don't specify a value, the default is up to 50 items.

§
logGroupName?: string | null
[src]

The name of the log group.

§
metricName?: string | null
[src]

Filters results to include only those with the specified metric name. If you include this parameter in your request, you must also include the metricNamespace parameter.

§
metricNamespace?: string | null
[src]

Filters results to include only those in the specified namespace. If you include this parameter in your request, you must also include the metricName parameter.

§
nextToken?: string | null
[src]

The token for the next set of items to return. (You received this token from a previous call.)