Module Values_2.VisibilityConditionsSource

The list of key-value pairs used to filter your search results. If a search result contains a key from your list, it is included in the final search response if the value associated with the key in the result matches the value you specified. If the value doesn't match, the result is excluded from the search response. Any resources that don't have a key from the list that you've provided will also be included in the search response.

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

    The key that specifies the tag that you're using to filter the search results. It must be in the following format: Tags.<key>.

    *)
  2. value : VisibilityConditionsValue.t option;
    (*

    The value for the tag that you're using to filter the search results.

    *)
}
Sourceval make : ?key:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of VisibilityConditionsKey.t ]) 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