Searches for registry records using semantic, lexical, or hybrid queries
Source:R/bedrockagentcore_operations.R
bedrockagentcore_search_registry_records.RdSearches for registry records using semantic, lexical, or hybrid queries. Returns metadata for matching records ordered by relevance within the specified registry.
See https://www.paws-r-sdk.com/docs/bedrockagentcore_search_registry_records/ for full documentation.
Usage
bedrockagentcore_search_registry_records(
searchQuery,
registryIds,
maxResults = NULL,
filters = NULL
)Arguments
- searchQuery
[required] The search query to find matching registry records.
- registryIds
[required] The list of registry identifiers to search within. Currently, you can specify exactly one registry identifier. You can provide either the full Amazon Web Services Resource Name (ARN) or the 12-character alphanumeric registry ID.
- maxResults
The maximum number of records to return in a single call. Valid values are 1 through 20. The default value is 10.
- filters
A metadata filter expression to narrow search results. Uses structured JSON operators including field-level operators (
$eq,$ne,$in) and logical operators ($and,$or) on filterable fields (name,descriptorType,version). For example, to filter by descriptor type:{"descriptorType": {"$eq": "MCP"}}. To combine filters:{"$and": [{"descriptorType": {"$eq": "MCP"}}, {"name": {"$eq": "my-tool"}}]}.