IBM COS SDK for JavaScript V2 - v1.0.0
    Preparing search index...

    Interface LifecycleRuleFilter

    The Filter is used to identify objects that a Lifecycle Rule applies to. A Filter can have exactly one of Prefix, Tag, ObjectSizeGreaterThan, ObjectSizeLessThan, or And specified. If the Filter element is left empty, the Lifecycle Rule applies to all objects in the bucket.

    interface LifecycleRuleFilter {
        Prefix?: string;
        Tag?: Tag;
        ObjectSizeGreaterThan?: number;
        ObjectSizeLessThan?: number;
        And?: LifecycleRuleAndOperator;
    }
    Index

    Properties

    Prefix?: string

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

    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?: Tag

    This tag must exist in the object's tag set in order for the rule to apply.

    This parameter applies to general purpose buckets only. It is not supported for directory bucket lifecycle configurations.

    ObjectSizeGreaterThan?: number

    Minimum object size to which the rule applies.

    ObjectSizeLessThan?: number

    Maximum object size to which the rule applies.

    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.