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

EntityFilter

import type { EntityFilter } from "https://aws-api.deno.dev/v0.4/services/iotthingsgraph.ts?docs=full";

An object that filters an entity search. Multiple filters function as OR criteria in the search. For example a search that includes a NAMESPACE and a REFERENCED_ENTITY_ID filter searches for entities in the specified namespace that use the entity specified by the value of REFERENCED_ENTITY_ID.

interface EntityFilter {
name?: EntityFilterName | null;
value?: string[] | null;
}

§Properties

§
name?: EntityFilterName | null
[src]

The name of the entity search filter field. 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.

§
value?: string[] | null
[src]

An array of string values for the search filter field. Multiple values function as AND criteria in the search.