Module Values.LifecycleRuleAndOperatorSource

The container for the Outposts bucket lifecycle rule and operator.

Sourcetype nonrec t = {
  1. prefix : Prefix.t option;
    (*

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

    *)
  2. tags : S3TagSet.t option;
    (*

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

    *)
  3. objectSizeGreaterThan : ObjectSizeGreaterThanBytes.t option;
    (*

    The non-inclusive minimum object size for the lifecycle rule. Setting this property to 7 means the rule applies to objects with a size that is greater than 7.

    *)
  4. objectSizeLessThan : ObjectSizeLessThanBytes.t option;
    (*

    The non-inclusive maximum object size for the lifecycle rule. Setting this property to 77 means the rule applies to objects with a size that is less than 77.

    *)
}
Sourceval make : ?prefix:??? -> ?tags:??? -> ?objectSizeGreaterThan:??? -> ?objectSizeLessThan:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKeyString.t ]) list ] list | `Long of ObjectSizeGreaterThanBytes.t | `String of Prefix.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t