AgentCore Evaluator の CloudFormation リソースは ap-northeast-1 では未サポート
agentcore add evaluator → agentcore deploy で以下のエラーが出た。
CDK deploy failed: ❌ AgentCore-MyProject-default failed: ValidationError:
Template format error: Unrecognized resource types: [AWS::BedrockAgentCore::Evaluator]AWS::BedrockAgentCore::Evaluator が ap-northeast-1 の CloudFormation に登録されていないのが原因だった。
# ap-northeast-1: 未登録
aws cloudformation describe-type \
--type RESOURCE \
--type-name AWS::BedrockAgentCore::Evaluator \
--region ap-northeast-1
# => TypeNotFoundException
# us-east-1: 登録済み
aws cloudformation describe-type \
--type RESOURCE \
--type-name AWS::BedrockAgentCore::Evaluator \
--region us-east-1 \
--query 'ProvisioningType' --output text
# => FULLY_MUTABLEEvaluator を使う場合は aws-targets.json のリージョンを us-east-1 に変更する。AgentCore Runtime や Memory は ap-northeast-1 でも動くので、Evaluator 固有の制約だ。
