aws.iotthingsgraph.search_entities
Example SQL Queries
SELECT * FROMaws.iotthingsgraph.search_entitiesWHERE"entity_types" = 'VALUE';Description
Searches for entities of the specified type. You can search for entities in your namespace and the public namespace that you're tracking.
Table Definition
| Column Name | Column Data Type |
|---|---|
| entity_types Required Input Column The entity types for which to search. | VARCHAR[] |
Show child fields
| |
| filters Input Column 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. | STRUCT( |
Show child fields
| |
| namespace_version Input Column The version of the user's namespace. Defaults to the latest version of the user's namespace. | BIGINT |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| arn The entity ARN. | VARCHAR |
| created_at The time at which the entity was created. | TIMESTAMP_S |
| definition The definition document of the entity. | STRUCT( |
Show child fields
| |
| id The entity ID. | VARCHAR |
| type The entity type. | VARCHAR |