Module Values.DimensionValuesSource

Specifies the values and match options for dimension-based filtering in cost and usage queries.

Sourcetype nonrec t = {
  1. key : Dimension.t;
    (*

    The key of the dimension to filter on (for example, SERVICE, USAGE_TYPE, or OPERATION).

    *)
  2. values : StringList.t;
    (*

    The values to match for the specified dimension key.

    *)
  3. matchOptions : MatchOptions.t option;
    (*

    The match options for dimension values, such as EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH.

    *)
}
Sourceval context_ : string
Sourceval make : ?matchOptions:??? -> key:Dimension.t -> values:StringList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of String_.t ] 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