Module Values.IntelligentTieringAndOperatorSource

A container for specifying S3 Intelligent-Tiering filters. The filters determine the subset of objects to which the rule applies.

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

    An object key name prefix that identifies the subset of objects to which the configuration applies.

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

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

    *)
}
Sourceval make : ?prefix:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ObjectKey.t ]) list ] list | `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