Module Values.Expression

Defines complex filtering conditions using logical operators (AND, OR, NOT) and various filter types.

Sourcetype nonrec t = {
  1. or_ : Expressions.t option;
    (*

    A list of expressions to combine with OR logic.

    *)
  2. and_ : Expressions.t option;
    (*

    A list of expressions to combine with AND logic.

    *)
  3. not : Expression.t option;
    (*

    An expression to negate with NOT logic.

    *)
  4. dimensions : DimensionValues.t option;
    (*

    The dimension values to include in the filter expression.

    *)
  5. tags : TagValues.t option;
    (*

    The tag values to include in the filter expression.

    *)
  6. costCategories : CostCategoryValues.t option;
    (*

    The cost category values to include in the filter expression.

    *)
}
Sourceval make : ?or_:Expressions.t -> ?and_:Expressions.t -> ?not:t -> ?dimensions:DimensionValues.t -> ?tags:TagValues.t -> ?costCategories:CostCategoryValues.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t