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

LifecycleRuleFilter

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

The container for the filter of the lifecycle rule.

interface LifecycleRuleFilter {
ObjectSizeGreaterThan?: number | null;
ObjectSizeLessThan?: number | null;
Prefix?: string | null;
Tag?: S3Tag | null;
}

§Properties

§

The container for the AND condition for the lifecycle rule.

§
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.

! IMPORTANT: ! Replacement must be made for object keys containing special characters (such as carriage returns) when using XML requests. ! For more information, see XML related object key constraints.

§
Tag?: S3Tag | null
[src]