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

AnalyticsFilter

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

The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.

interface AnalyticsFilter {
And?: AnalyticsAndOperator | null;
Prefix?: string | null;
Tag?: Tag | null;
}

§Properties

§

A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.

§
Prefix?: string | null
[src]

The prefix to use when evaluating an analytics filter.

§
Tag?: Tag | null
[src]

The tag to use when evaluating an analytics filter.