Module Values.DimensionValuesSource

Contains the specifications for the filters to use for your request.

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

    The name of the dimension that you want to filter on.

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

    The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.

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

    The match options that you can use to filter your results. You can specify only one of these values in the array.

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