Module Values.AdvancedFieldSelectorSource

Defines criteria for selecting resources based on field values.

Sourcetype nonrec t = {
  1. field : String_.t;
    (*

    The name of the field to use for selection.

    *)
  2. equals : StringList.t option;
    (*

    Matches if the field value equals the specified value.

    *)
  3. startsWith : StringList.t option;
    (*

    Matches if the field value starts with the specified value.

    *)
  4. endsWith : StringList.t option;
    (*

    Matches if the field value ends with the specified value.

    *)
  5. notEquals : StringList.t option;
    (*

    Matches if the field value does not equal the specified value.

    *)
  6. notStartsWith : StringList.t option;
    (*

    Matches if the field value does not start with the specified value.

    *)
  7. notEndsWith : StringList.t option;
    (*

    Matches if the field value does not end with the specified value.

    *)
}
Sourceval context_ : string
Sourceval make : ?equals:??? -> ?startsWith:??? -> ?endsWith:??? -> ?notEquals:??? -> ?notStartsWith:??? -> ?notEndsWith:??? -> field:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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