View a markdown version of this page

レジストリレコードの確認 - Amazon Bedrock AgentCore

レジストリレコードの確認

今後の名前空間の移行

AWS エージェントレジストリは現在、bedrock-agentcore 名前空間のパブリックプレビュー中です。2026 年 8 月 6 日以降、サービスはエージェントレジストリ名前空間に移動します。 AWS エージェントレジストリを使用する場合は、エンドポイント、IAM ポリシー、SDK クライアント、CLI スクリプト、レジストリデータを更新する必要があります。パブリックプレビューからの移行の詳細については、「包括的なレジストリ移行ガイド」を参照してください。

概要

キュレーターは、セキュリティ、コンプライアンス、メタデータ品質に関する組織の標準に照らして、承認保留中ステータスのレコードを確認します。

保留中のレコードを表示する

コンソール、 AWS CLI、または ListRegistryRecords API を使用して PENDING_APPROVAL ステータスでフィルタリングします。

レコードを承認する

コンソール

  1. 保留中の承認ステータスのレコードのレコード詳細ページを開きます。

  2. 更新ステータスドロップダウンを選択し、承認を選択します。

  3. Update status ダイアログで、ステータス変更の理由を入力します。

  4. [更新] を選択します。

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']}")

レコードを拒否する

コンソール

  1. 保留中の承認ステータスのレコードのレコード詳細ページを開きます。

  2. 更新ステータスドロップダウンを選択し、拒否を選択します。

  3. ステータスの更新ダイアログで、拒否の理由を入力します。

  4. [更新] を選択します。

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']}")
注記

パブリッシャーは編集して再送信するか、キュレーターは拒否されたレコードを直接承認できます。