Module Values.MetricsAndOperatorSource

A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

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

    The prefix used when evaluating an AND predicate.

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

    The list of tags used when evaluating an AND predicate. Tag filters are not supported for directory buckets.

    *)
  3. accessPointArn : AccessPointArn.t option;
    (*

    The access point ARN used when evaluating an AND predicate.

    *)
}
Sourceval make : ?prefix:??? -> ?tags:??? -> ?accessPointArn:??? -> 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