Module Values.SearchEntitiesRequestSource

Searches for entities of the specified type. You can search for entities in your namespace and the public namespace that you're tracking.

Sourcetype nonrec t = {
  1. entityTypes : EntityTypes.t;
    (*

    The entity types for which to search.

    *)
  2. filters : EntityFilters.t option;
    (*

    Optional filter to apply to the search. Valid filters are NAME NAMESPACE, SEMANTIC_TYPE_PATH and REFERENCED_ENTITY_ID. REFERENCED_ENTITY_ID filters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state. Multiple filters function as OR criteria in the query. Multiple values passed inside the filter function as AND criteria.

    *)
  3. nextToken : NextToken.t option;
    (*

    The string that specifies the next page of results. Use this when you're paginating results.

    *)
  4. maxResults : MaxResults.t option;
    (*

    The maximum number of results to return in the response.

    *)
  5. namespaceVersion : Version.t option;
    (*

    The version of the user's namespace. Defaults to the latest version of the user's namespace.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?nextToken:??? -> ?maxResults:??? -> ?namespaceVersion:??? -> entityTypes:EntityTypes.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `String of EntityFilterValue.t ] list ]) list ] list | `Long of Version.t | `String of NextToken.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