Reviewing registry records
Overview
As a curator, you review records in Pending Approval status against your organization’s standards for security, compliance, and metadata quality.
View pending records
Filter by PENDING_APPROVAL status via console, AWS CLI, or ListRegistryRecords API.
Approve a record
Console
-
Open the record detail page for a record in Pending approval status.
-
Choose the Update status dropdown, then choose Approve.
-
In the Update status dialog, enter a Reason for the status change.
-
Choose Update.
AWS CLI
aws bedrock-agentcore-control update-registry-record-status \ --registry-id "<registryId>" \ --record-id "<recordId>" \ --status APPROVED \ --status-reason "Reviewed and approved" \ --region us-east-1
AWS SDK
import boto3 client = boto3.client('bedrock-agentcore-control') response = client.update_registry_record_status( registryId='<registryId>', recordId='<recordId>', status='APPROVED', statusReason='Reviewed and approved' ) print(f"Status: {response['status']}") # APPROVED print(f"StatusReason: {response['statusReason']}")
Reject a record
Console
-
Open the record detail page for a record in Pending approval status.
-
Choose the Update status dropdown, then choose Reject.
-
In the Update status dialog, enter a Reason for the rejection.
-
Choose Update.
AWS CLI
aws bedrock-agentcore-control update-registry-record-status \ --registry-id "<registryId>" \ --record-id "<recordId>" \ --status REJECTED \ --status-reason "Missing tool input schemas" \ --region us-east-1
AWS SDK
import boto3 client = boto3.client('bedrock-agentcore-control') response = client.update_registry_record_status( registryId='<registryId>', recordId='<recordId>', status='REJECTED', statusReason='Missing tool input schemas' ) print(f"Status: {response['status']}") # REJECTED print(f"StatusReason: {response['statusReason']}")
Note
Publisher can edit and resubmit, or curator can directly approve a rejected record.