BedrockAgentCoreControl / Paginator / ListRegistryRecords
ListRegistryRecords¶
- class BedrockAgentCoreControl.Paginator.ListRegistryRecords¶
paginator = client.get_paginator('list_registry_records')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
BedrockAgentCoreControl.Client.list_registry_records().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( registryId='string', name='string', status='DRAFT'|'PENDING_APPROVAL'|'APPROVED'|'REJECTED'|'DEPRECATED'|'CREATING'|'UPDATING'|'CREATE_FAILED'|'UPDATE_FAILED', descriptorType='MCP'|'A2A'|'CUSTOM'|'AGENT_SKILLS', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
registryId (string) –
[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.
name (string) – Filter registry records by name.
status (string) – Filter registry records by their current status. Possible values include
CREATING,DRAFT,APPROVED,PENDING_APPROVAL,REJECTED,DEPRECATED,UPDATING,CREATE_FAILED, andUPDATE_FAILED.descriptorType (string) – Filter registry records by their descriptor type. Possible values are
MCP,A2A,CUSTOM, andAGENT_SKILLS.PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'registryRecords': [ { 'registryArn': 'string', 'recordArn': 'string', 'recordId': 'string', 'name': 'string', 'description': 'string', 'descriptorType': 'MCP'|'A2A'|'CUSTOM'|'AGENT_SKILLS', 'recordVersion': 'string', 'status': 'DRAFT'|'PENDING_APPROVAL'|'APPROVED'|'REJECTED'|'DEPRECATED'|'CREATING'|'UPDATING'|'CREATE_FAILED'|'UPDATE_FAILED', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
registryRecords (list) –
The list of registry record summaries. For details about the fields in each summary, see the
RegistryRecordSummarydata type.(dict) –
Contains summary information about a registry record.
registryArn (string) –
The Amazon Resource Name (ARN) of the registry that contains the record.
recordArn (string) –
The Amazon Resource Name (ARN) of the registry record.
recordId (string) –
The unique identifier of the registry record.
name (string) –
The name of the registry record.
description (string) –
The description of the registry record.
descriptorType (string) –
The descriptor type of the registry record. Possible values are
MCP,A2A,CUSTOM, andAGENT_SKILLS.recordVersion (string) –
The version of the registry record.
status (string) –
The current status of the registry record. Possible values include
CREATING,DRAFT,APPROVED,PENDING_APPROVAL,REJECTED,DEPRECATED,UPDATING,CREATE_FAILED, andUPDATE_FAILED.createdAt (datetime) –
The timestamp when the registry record was created.
updatedAt (datetime) –
The timestamp when the registry record was last updated.
NextToken (string) –
A token to resume pagination.