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

MetricsFilter

import type { MetricsFilter } from "https://aws-api.deno.dev/v0.4/services/s3.ts?docs=full";

Specifies a metrics configuration filter. The metrics configuration only includes objects that meet the filter's criteria. A filter must be a prefix, an object tag, an access point ARN, or a conjunction (MetricsAndOperator). For more information, see PutBucketMetricsConfiguration.

interface MetricsFilter {
AccessPointArn?: string | null;
And?: MetricsAndOperator | null;
Prefix?: string | null;
Tag?: Tag | null;
}

§Properties

§
AccessPointArn?: string | null
[src]

The access point ARN used when evaluating a metrics filter.

§

A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

§
Prefix?: string | null
[src]

The prefix used when evaluating a metrics filter.

§
Tag?: Tag | null
[src]

The tag used when evaluating a metrics filter.