Module Values.StringSearchSource

A structure that defines how to search for string values. You can specify a search option and the value to search for.

Sourcetype nonrec t = {
  1. searchOption : SearchOption.t;
    (*

    The type of search operation to perform on the string value. Determines how the search value is matched against the target field.

    *)
  2. searchValue : SearchValue.t;
    (*

    The string value to use in the search operation. This value is compared against the target field using the specified search option.

    *)
}
Sourceval context_ : string
Sourceval make : searchOption:SearchOption.t -> searchValue:SearchValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SearchValue.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