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

MetricsAndOperator

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

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.

interface MetricsAndOperator {
AccessPointArn?: string | null;
Prefix?: string | null;
Tags?: Tag[] | null;
}

§Properties

§
AccessPointArn?: string | null
[src]

The access point ARN used when evaluating an AND predicate.

§
Prefix?: string | null
[src]

The prefix used when evaluating an AND predicate.

§
Tags?: Tag[] | null
[src]

The list of tags used when evaluating an AND predicate.