Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SearchEntitiesRequest

import type { SearchEntitiesRequest } from "https://aws-api.deno.dev/v0.4/services/iotthingsgraph.ts?docs=full";
interface SearchEntitiesRequest {
entityTypes: EntityType[];
filters?: EntityFilter[] | null;
maxResults?: number | null;
namespaceVersion?: number | null;
nextToken?: string | null;
}

§Properties

§
entityTypes: EntityType[]
[src]

The entity types for which to search.

§
filters?: EntityFilter[] | null
[src]

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.

§
maxResults?: number | null
[src]

The maximum number of results to return in the response.

§
namespaceVersion?: number | null
[src]

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

§
nextToken?: string | null
[src]

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