Module Values.Expression

Use Expression to filter in various Budgets APIs.

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

    Return results that match either Dimension object.

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

    Return results that match both Dimension objects.

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

    Return results that don't match a Dimension object.

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

    The specific Dimension to use for Expression.

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

    The specific Tag to use for Expression.

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

    The filter that's based on CostCategoryValues.

    *)
}
Sourceval make : ?or_:Expressions.t -> ?and_:Expressions.t -> ?not:t -> ?dimensions:ExpressionDimensionValues.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