Skip to main content

discoverable_registry_records

Creates, updates, deletes, gets or lists a discoverable_registry_records resource.

Overview

Namediscoverable_registry_records
TypeResource
Idaws.agent_registry.discoverable_registry_records

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
registry_recordsarrayThe registry records that match the search query, ordered by relevance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_discoverable_registry_recordsselectregionSearches the discoverable registry records in a registry using a natural language query. Returns metadata for the matching records ordered by relevance.
batch_get_discoverable_registry_recordselectregionRetrieves multiple discoverable registry records by ID from a single registry. Records that cannot be retrieved are reported individually in the errors list rather than failing the entire request.
list_discoverable_registry_recordsselectregistry_id, regionLists the discoverable registry records in a registry. You can optionally filter and paginate the results.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
registry_idstring

SELECT examples

Searches the discoverable registry records in a registry using a natural language query. Returns metadata for the matching records ordered by relevance.

SELECT
registry_records
FROM aws.agent_registry.discoverable_registry_records
WHERE region = '{{ region }}' -- required
;