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

LifecycleRuleAndOperator

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

This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.

interface LifecycleRuleAndOperator {
ObjectSizeGreaterThan?: number | null;
ObjectSizeLessThan?: number | null;
Prefix?: string | null;
Tags?: Tag[] | null;
}

§Properties

§
ObjectSizeGreaterThan?: number | null
[src]

Minimum object size to which the rule applies.

§
ObjectSizeLessThan?: number | null
[src]

Maximum object size to which the rule applies.

§
Prefix?: string | null
[src]

Prefix identifying one or more objects to which the rule applies.

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

All of these tags must exist in the object's tag set in order for the rule to apply.