Values.AdvancedFieldSelectorSourceDefines criteria for selecting resources based on field values.
type nonrec t = {field : String_.t;The name of the field to use for selection.
*)equals : StringList.t option;Matches if the field value equals the specified value.
*)startsWith : StringList.t option;Matches if the field value starts with the specified value.
*)endsWith : StringList.t option;Matches if the field value ends with the specified value.
*)notEquals : StringList.t option;Matches if the field value does not equal the specified value.
*)notStartsWith : StringList.t option;Matches if the field value does not start with the specified value.
*)notEndsWith : StringList.t option;Matches if the field value does not end with the specified value.
*)}