Lists registry records within a registry
Source:R/bedrockagentcorecontrol_operations.R
bedrockagentcorecontrol_list_registry_records.RdLists registry records within a registry. You can optionally filter results using the name, status, and descriptorType parameters. When multiple filters are specified, they are combined using AND logic.
See https://www.paws-r-sdk.com/docs/bedrockagentcorecontrol_list_registry_records/ for full documentation.
Usage
bedrockagentcorecontrol_list_registry_records(
registryId,
maxResults = NULL,
nextToken = NULL,
name = NULL,
status = NULL,
descriptorType = NULL
)Arguments
- registryId
[required] The identifier of the registry to list records from. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.
- maxResults
The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the
nextTokenfield when making another request to return the next batch of results.- nextToken
If the total number of results is greater than the
maxResultsvalue provided in the request, enter the token returned in thenextTokenfield in the response in this field to return the next batch of results.- name
Filter registry records by name.
- status
Filter registry records by their current status. Possible values include
CREATING,DRAFT,APPROVED,PENDING_APPROVAL,REJECTED,DEPRECATED,UPDATING,CREATE_FAILED, andUPDATE_FAILED.- descriptorType
Filter registry records by their descriptor type. Possible values are
MCP,A2A,CUSTOM, andAGENT_SKILLS.