Module Values_1.DimensionConditionSource

Specifies a condition for filtering capacity data based on dimension values. Used to create precise filters for metric queries and dimension lookups.

Sourcetype nonrec t = {
  1. dimension : Values_0.FilterByDimension.t option;
    (*

    The name of the dimension to filter by.

    *)
  2. comparison : Values_0.Comparison.t option;
    (*

    The comparison operator to use for the filter.

    *)
  3. values : Values_0.ConditionValueList.t option;
    (*

    The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.

    *)
}
Sourceval make : ?dimension:??? -> ?comparison:??? -> ?values:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list ]) 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