Module Values_2.SearchDataTablesRequestSource

Searches for data tables based on the table's ID, name, and description. In the future, this operation can support searching on attribute names and possibly primary values. Follows other search operations closely and supports both search criteria and filters.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t;
    (*

    The unique identifier for the Amazon Connect instance to search within.

    *)
  2. nextToken : Values_1.NextToken.t option;
    (*

    Specify the pagination token from a previous request to retrieve the next page of results.

    *)
  3. maxResults : Values_1.MaxResult1000.t option;
    (*

    The maximum number of data tables to return in one page of results.

    *)
  4. searchFilter : Values_1.DataTableSearchFilter.t option;
    (*

    Optional filters to apply to the search results, such as tag-based filtering for attribute-based access control.

    *)
  5. searchCriteria : Values_1.DataTableSearchCriteria.t option;
    (*

    Search criteria including string conditions for matching table names, descriptions, or resource IDs. Supports STARTS_WITH, CONTAINS, and EXACT comparison types.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> ?searchFilter:??? -> ?searchCriteria:??? -> instanceId:Values_0.InstanceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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