Amazon Bedrock AgentCore を活用した AI 搭載 AWS サポートコンパニオンの構築方法
AWS は、Amazon Bedrock AgentCore と Strands Agents を活用した AI ベースのサポートコンパニオンを構築し、インシデント調査における手動作業とコンテキスト切り替えのボトルネックを解消する実用的なソリューションを発表しました。
キーポイント
インシデント調査の非効率性への対応
従来の調査プロセスでは、コンソール、ドキュメント、コミュニティ情報の間を行き来する必要があり、解決に至るまでに最大 45 分のロスが発生していました。
Bedrock AgentCore と Strands Agents の統合
本ソリューションは、運用の複雑さを抽象化する Bedrock AgentCore を基盤とし、Strands Agents をオーケストレーションフレームワークとして採用しています。
Model Context Protocol (MCP) による連携
MCP プロトコルを介して AWS サービスと接続し、CloudWatch ログの分析、ドキュメント検索、re:Post のクエリ、サポートケース作成を単一の対話型インターフェースで完結させます。
迅速なデプロイとフロントエンド
AWS CloudFormation スクリプトによるワンクリック展開が可能であり、ユーザーは AWS Amplify で構築された Web フロントエンドを通じてエージェントと対話できます。
影響分析・編集コメントを表示
影響分析
この発表は、クラウド運用チームの生産性向上に直結する具体的な AI エージェントの実装例を示しており、単なる概念検証を超えた実用性を有しています。特に MCP の採用と AgentCore の運用管理機能の組み合わせは、企業レベルでの大規模 AI エージェント導入における標準的なパターンを確立する可能性があり、クラウドネイティブな AI 運用(AIOps)の進化に寄与します。
編集コメント
AWS が自社のクラウド運用課題を解決するために、最新の AI エージェント技術(AgentCore, MCP)を即座に実装した事例は非常に示唆に富んでいます。特に「開発者がどう動くか」ではなく「エージェントが何をするかに集中できる」という設計思想は、今後のエンタープライズ向け AI ツール開発の指針となるでしょう。
AWS インフラストラクチャの管理は、コンソール間の切り替え、ドキュメントの検索、手動でのサポートケース作成を伴うことが多くあります。各インシデントにおいて、エンジニアは AWS Management Console を開き、Amazon CloudWatch を確認し、AWS ドキュメントを検索し、コミュニティ投稿を確認し、サポートケースを起票します。このコンテキストの切り替えにより、解決作業が始まるまでに調査ごとに最大 30〜45 分が費やされてしまいます。
本稿では、Amazon Bedrock AgentCore を用いて AWS サポートコンパニオンを構築する方法を解説します。このエージェントは、オーケストレーションフレームワークとして Strands Agents を使用し、Model Context Protocol (MCP) を通じて AWS サービスに接続します。最終的には、単一の会話型インターフェースから CloudWatch ログの分析、AWS ドキュメントの検索、AWS re:Post からのコミュニティ知識への照会、サポートケースの作成をすべて実行できる動作するエージェントが完成します。本ソリューションは AWS CloudFormation を使用した単一のスクリプトでデプロイ可能であり、エージェントとの対話には AWS Amplify で構築された Web フロントエンドが含まれています。

インシデント調査のボトルネック
AWS サポートおよび運用チームは、すべてのインシデントに対して以下の反復パターンに従います:
- AWS Management Console を開き、影響を受けたサービスへ移動します。
- CloudWatch ログとメトリクスを確認し、エラーのパターンを検索します。
- 関連するトラブルシューティングガイダンスのために AWS ドキュメントを検索します。
- AWS re:Post のコミュニティ投稿で同様の問題について確認します。
- 調査結果をまとめ、適切な重大度でサポートケースを作成します。
- エビデンスとコンテキストをケースに添付します。
各ステップには異なるツールとインターフェースが必要です。手動での調査はチームが対応できる速度を制限し、あるツールで収集されたコンテキストは次のツールへ引き継がれません。
ソリューションの概要
本ソリューションでは、これらの手順を Amazon Bedrock AgentCore にデプロイされた単一の会話型エージェントに統合します。AgentCore は、生産環境向け AI エージェントの実行(セッションの分離、自動スケーリング、セキュリティ、観測性)における運用上の複雑さを処理するため、ユーザーはエージェントが何を行うかに集中し、どのように実行されるかについては気にする必要がありません。
このエージェントは以下のコンポーネントに接続されます:
エージェントランタイム – Strands Agents を使用した Python アプリケーションで、Docker コンテナとしてパッケージ化され、AgentCore Runtime にデプロイされます。このエージェントは、入力に基づいて基盤モデル(Amazon Bedrock 経由の Amazon Nova Pro)およびツールへの呼び出しを調整します。サポートされているモデルに切り替える場合でも、エージェントコードを変更する必要はありません。
MCP サーバー – 3 つの MCP サーバーにより、エージェントは AWS ドキュメント (aws-documentation-mcp-server)、AWS サポート API (aws-support-mcp-server)、および AWS サービス API (aws-api-mcp-server) にアクセスできます。MCP は、AI エージェントが外部ツールからコンテキストを受け取るための標準プロトコルを提供します。
AgentCore Gateway – ツールを再利用可能で安全なエンドポイントに集約します。ゲートウェイは、AWS Lambda ベックのターゲットと Amazon Cognito JSON Web トークン (JWT) 認証を通じて、コミュニティ知識である AWS re:Post へのアクセスを提供します。
AgentCore Memory – 短期間の会話コンテキストを維持し、セッション内でエージェントが以前のトラブルシューティング手順に基づいて作業を進められるようにします。
API およびフロントエンドレイヤー – Amazon API Gateway (Cognito による認証)、AWS WAF によるレート制限、およびリクエスト検証が、AgentCore Runtime を呼び出す Lambda 関数を前面に配置しています。AWS Amplify でホストされた React アプリケーションがユーザーインターフェースを提供し、サインアップとサインインには Cognito 認証を使用します。
ガードレール – Amazon Bedrock Guardrails の設定により、有害なコンテンツをフィルタリングし、プロンプトインジェクション攻撃のブロックを支援し、AWS キー、クレジットカード、社会保障番号などの個人識別情報(PII)を削除し、エージェントを AWS サポート関連のトピックに制限します。
インフラストラクチャ – 単一の CloudFormation テンプレートにより、すべてのリソースがデプロイされます。これには、AWS Identity and Access Management (IAM) ロール、Cognito ユーザープール、AWS Key Management Service (AWS KMS) キー、AWS Secrets Manager シークレット、および AWS Systems Manager Parameter Store パラメータが含まれます。

前提条件
開始する前に、以下の事項が揃っていることを確認してください:
- Python 3.11 以降。
- ARM64 向けの buildx サポートを備えた Docker。
- Amazon Bedrock、IAM、CloudFormation の権限を持つ AWS アカウント。
- デプロイ先の AWS リージョンで Amazon Nova Pro への Amazon Bedrock モデルアクセス権(他のサポート対象モデルを使用することも可能です)。
- 適切な認証情報でインストールおよび設定された AWS Command Line Interface (AWS CLI)。
- uv パッケージマネージャーのインストール済み状態。
- AWS Business、Enterprise On-Ramp、または Enterprise サポートプラン(Support MCP サーバーに必須)。
重要: このソリューションは課金対象となる AWS リソースを作成します。継続的な課金を避けるために、本記事末尾の「Cleanup セクション」の手順に従ってください。
ソリューションのデプロイ
デプロイには、すべてのインフラストラクチャのプロビジョニング、コンテナのビルド、および必要な設定値の出力を行う単一のスクリプトが使用されます。
ステップ 1: リポジトリのクローン
サンプルコードをクローンし、プロジェクトディレクトリに移動することから始めます:
git clone https://github.com/aws-samples/sample-support-agent-with-agentcore
cd sample-support-agent-with-agentcore
ステップ 2: AWS 認証情報の設定
AWS CLI が必要な権限を持つ認証情報で設定されていることを確認します:
aws sts get-caller-identity
ステップ 3: デプロイの実行
デプロイスクリプトに実行権限を付与し、コンテナビルドフラグ付きで実行します:
chmod +x deploy.sh
./deploy.sh --build-container
このスクリプトは、uv を用いた Python 環境のセットアップ、デプロイ前のセキュリティ検証(AWS CloudTrail の確認、テンプレートの検証、認証情報の種類チェック)、Amazon Elastic Container Registry (Amazon ECR) リポジトリの作成、Docker イメージのビルド、および CloudFormation スタックのデプロイを処理します。ターゲットリージョンで CloudTrail がアクティブであることを確認し、CloudFormation テンプレートを検証し、長期の IAM ユーザーキーではなく一時的なロール認証情報を使用していることを確認します。
スタックが完了すると、スクリプトはフロントエンドに必要な設定値として、Cognito User Pool ID、Cognito Client ID、Cognito Identity Pool ID、および Agent Runtime Amazon Resource Name (ARN) を出力します。

ステップ 4: Amplify フロントエンドのデプロイ
デプロイリージョンの AWS Amplify コンソールに移動し、以下の手順に従ってください:
- support-agent-frontend アプリを選択します。
- メインブランチで「Deploy updates」を選択します。
- 方法として「Drag and drop」を選択し、frontend/ディレクトリから support-agent-amplify-frontend.zip ファイルをアップロードします。
- 「Save and deploy」を選択します。
ステップ 5: アプリケーションの設定とアクセス
CloudFormation の出力値(User Pool ID、Client ID、Identity Pool ID、Runtime ARN)を使用してフロントエンド設定を更新してください。Sign Up オプションからユーザーアカウントを作成し、ワンタイムコードでメールを確認した後、サインインしてください。

ステップ 6: エージェントとの対話
チャットインターフェースは、AgentCore Runtime で実行されているエージェントに接続されます。このエージェントには、ドキュメントおよびサポート用の AWS MCP サーバーと、AgentCore Gateway を介した AWS re:Post がアクセス可能です。以下のようなクエリを試してみてください:
- 「Amazon Simple Storage Service (Amazon S3) バケットを保護するためのベストプラクティスは何ですか?」
- 「us-east-1 での Lambda 関数のタイムアウトのトラブルシューティングを手伝ってください」
- 「RDS インスタンスとの断続的な接続問題に関するサポートケースを作成してください」

エージェントコードの理解
エージェントは agent.py で定義されており、BedrockAgentCoreApp フレームワークを使用しています。このセクションでは、本番環境のエージェントで一般的に直面する課題に対処するための 3 つの実装パターンを紹介します。
並列 MCP の初期化。 3 つの MCP サーバーを順次読み込むと、起動遅延が顕著になります。エージェントは asyncio.gather を使用してすべてのクライアントを並列に初期化し、コールドスタート時間を短縮します。各クライアントは uvx を使用してサーバーに接続し、利用可能なツールを Strands Agent に登録します:
Initialize all clients in parallel
results = await asyncio.gather(
init_aws_docs(), # AWS Documentation MCP
init_aws_support(), # AWS Support MCP
init_aws_api(), # AWS API MCP
return_exceptions=True
)
Graceful timeout を備えたメモリ機能。 エージェントは AgentCore Memory(エージェントコア・メモリー)を使用して会話の文脈を維持します。各リクエストにおいて、直近の 3 つの会話ターンを 2 秒のタイムアウト付きで取得します。もし文脈の取得がタイムアウトした場合でも、応答をブロックするのではなく、その文脈なしで処理を続行します。応答生成後、会話は非同期で保存されます。メモリはセッション ID ごとにスコープが設定されるため、各ユーザーの会話は独自の文脈を維持します。
ゲートウェイトークンのリフレッシュ。 AgentCore Gateway クライアントは、Secrets Manager に格納された Cognito JWT トークンを使用して認証を行います。エージェントは各ゲートウェイ呼び出し前にトークンの有効期限を検証し、有効期限が 5 分以内になった場合は自動的にリフレッシュします。この機能がないと、1 時間のトークン寿命の後にゲートウェイ呼び出しが断続的に失敗するようになります。
セキュリティに関する考慮事項
本ソリューションは、デフォルトで複数のセキュリティ層を構成して展開されます。認証には Amazon Cognito が使用され、NIST SP 800-63B に準拠したパスワードポリシーが適用されています。AWS WAF(ウェブアプリケーション・ファイアウォール)によるレート制限と管理されたルールセットが API Gateway を保護します。各コンポーネントは独自の最小権限 IAM ロールを持ち、エージェントを呼び出す Lambda 関数は、ユーザーに返す前に応答内の認証情報パターンを隠蔽処理します。
Amazon Bedrock Guardrails は有害コンテンツをフィルタリングし、プロンプトインジェクション(HIGH に設定)をブロックし、個人識別情報(AWS キー、クレジットカード番号、社会保障番号など)をマスキングし、エージェントの動作範囲を AWS サポート関連のトピックに制限します。API Gateway のアクセスログは Amazon CloudWatch へ転送され、90 日間の保持期間が設定されています。また、AWS CloudTrail が API コールを記録します。暗号化設定、IAM ロールのスコーピング、ガードレールポリシーを含む完全なセキュリティ実装の詳細については、リポジトリ内の SECURITY.md を参照してください。
Cleanup
継続的な課金を避けるために、以下の順序でリソースを削除してください。
警告: これらの手順は元に戻せません。実行する前に必要なデータは必ずバックアップしてください。
- AWS Amplify コンソールから Amplify アプリを削除します。
- CloudFormation スタックを削除します:
aws cloudformation delete-stack --stack-name bedrock-agentcore-stack --region us-west-2
- ECR リポジトリを削除します(CloudFormation は非空のリポジトリは自動削除しないため):
aws ecr delete-repository --repository-name support-agent --region us-west-2 --force
- CloudFormation テンプレート用に使用された S3 バケットを削除します:
aws s3 rb s3://cfn-templates-ACCOUNTID-us-west-2 --force
結論
本記事では、Amazon Bedrock AgentCore を活用した AI パワー型の AWS サポートコンパニオンを構築しました。このエージェントは、基盤モデルの推論能力と、MCP および AgentCore Gateway を通じた AWS ドキュメント、サポート API、コミュニティ知識へのリアルタイムアクセスを組み合わせています。本ソリューションは単一のスクリプトでデプロイ可能であり、認証、レート制限、暗号化、ガードレール、監査ログ機能を備えています。
このエージェントは複数の調査ツールを単一の対話型インターフェースに統合しており、エンジニアがコンソール間を行き来することなく、問題の特定からサポートケース作成までを一貫して行えるようになります。
サンプルリポジトリには、ネットワーク分離、マルチアカウントデプロイメント、AgentCore トレースによる観測性(Observability)、人間によるエスカレーション閾値の設定、本番環境での運用準備のためのシークレットローテーションに関する追加ガイダンスも含まれています。まずは Amazon Bedrock AgentCore のドキュメント をご覧いただき、サンプルリポジトリをクローン して始めてみてください。
完全にマネージドされたインシデント調査サービスが必要な場合は、AWS DevOps Agent をご覧ください。本記事では、ツール、モデル、ガードレール、ワークフローに対して完全な制御権限を必要とする場合に、AgentCore Runtime 上でカスタムエージェントを構築する方法を示しています。
著者について

Jose Soto
Jose は AWS のテクニカルアカウントマネージャーです。彼は生成 AI や物理 AI 技術、およびそれらが業界全体でプロセスを自動化しシステムパフォーマンスを加速させる可能性について情熱を持っています。

Puneeth Ranjan Komaragiri
Puneeth は AWS のシニアテクニカルアカウントマネージャーです。彼はモニタリングと観測可能性、クラウド財務管理、そして生成 AI について情熱を持っています。現在の役職では、Puneeth は顧客と密接に協力し、その専門知識を活用して、スケーラビリティとレジリエンスのためにクラウドワークロードを設計・アーキテクチャ化するのを支援しています。
原文を表示
Managing AWS infrastructure often means switching between consoles, searching documentation, and manually creating support cases. For each incident, an engineer opens the AWS Management Console, checks Amazon CloudWatch, searches AWS documentation, reviews community posts, and files a support case. This context-switching adds up to 30–45 minutes per investigation before resolution work begins.
In this post, you build an AWS Support Companion using Amazon Bedrock AgentCore. The agent uses Strands Agents as the orchestration framework and connects to AWS services through the Model Context Protocol (MCP). By the end, you have a working agent that can analyze CloudWatch logs, search AWS documentation, query community knowledge from AWS re:Post, and create support cases, all from a single conversational interface. The solution deploys with a single script using AWS CloudFormation and includes a web frontend built on AWS Amplify for interacting with the agent.

The incident investigation bottleneck
AWS support and operations teams follow a repetitive pattern for every incident:
- Open the AWS Management Console and navigate to the affected service.
- Check CloudWatch logs and metrics for error patterns.
- Search AWS documentation for relevant troubleshooting guidance.
- Review community posts on AWS re:Post for similar issues.
- Compile findings and create a support case with the appropriate severity.
- Attach evidence and context to the case.
Each step requires a different tool and interface. Manual investigation limits the speed at which teams can respond, and the context gathered in one tool does not carry over to the next.
Solution overview
The solution consolidates these steps into a single conversational agent deployed on Amazon Bedrock AgentCore. AgentCore handles the operational complexity of running a production AI agent (session isolation, auto scaling, security, and observability), so you focus on what the agent does rather than how it runs.
The agent connects to the following components:
Agent runtime – A Python application using Strands Agents, packaged as a Docker container and deployed to AgentCore Runtime. The agent orchestrates calls to a foundation model (FM) (Amazon Nova Pro through Amazon Bedrock) and tools based on your input. You can swap to supported models without changing the agent code.
MCP servers – Three MCP servers give the agent access to AWS documentation (aws-documentation-mcp-server), AWS Support APIs (aws-support-mcp-server), and AWS service APIs (aws-api-mcp-server). MCP provides a standard protocol for AI agents to receive context from external tools.
AgentCore Gateway – Centralizes tools into reusable, secure endpoints. The gateway provides access to AWS re:Post for community knowledge through an AWS Lambda-backed target with Amazon Cognito JSON Web Token (JWT) authentication.
AgentCore Memory – Maintains short-term conversation context so the agent builds on previous troubleshooting steps within a session.
API and frontend layers – Amazon API Gateway with Cognito authorization, AWS WAF rate limiting, and request validation fronts a Lambda function that invokes the AgentCore Runtime. An AWS Amplify-hosted React application provides the user interface with Cognito authentication for sign-up and sign-in.
Guardrails – An Amazon Bedrock Guardrails configuration filters harmful content, helps block prompt injection attacks, redacts personally identifiable information (PII) such as AWS keys, credit cards, and Social Security numbers, and restricts the agent to AWS support topics.
Infrastructure – A single CloudFormation template deploys all resources, including AWS Identity and Access Management (IAM) roles, Cognito user pools, AWS Key Management Service (AWS KMS) keys, AWS Secrets Manager secrets, and AWS Systems Manager Parameter Store parameters.

Prerequisites
Before you begin, confirm that you have the following:
- Python 3.11 or later.
- Docker with buildx support for ARM64.
- An AWS account with permissions for Amazon Bedrock, IAM, and CloudFormation.
- Amazon Bedrock model access for Amazon Nova Pro in your deployment AWS Region (you can use a different supported model).
- The AWS Command Line Interface (AWS CLI) installed and configured with appropriate credentials.
- The uv package manager installed.
- An AWS Business, Enterprise On-Ramp, or Enterprise Support plan (required for the Support MCP server).
Important: This solution creates billable AWS resources. Follow the Cleanup section at the end of this post to avoid ongoing charges.
Deploy the solution
The deployment uses a single script that provisions all infrastructure, builds the container, and outputs the configuration values you need.
Step 1: Clone the repository
Start by cloning the sample code and changing into the project directory:
git clone https://github.com/aws-samples/sample-support-agent-with-agentcore
cd sample-support-agent-with-agentcoreStep 2: Configure AWS credentials
Confirm your AWS CLI is configured with credentials that have the required permissions:
aws sts get-caller-identityStep 3: Run the deployment
Make the deploy script executable and run it with the container build flag:
chmod +x deploy.sh
./deploy.sh --build-containerThe script handles Python environment setup with uv, pre-deployment security validation (AWS CloudTrail check, template validation, credential type check), Amazon Elastic Container Registry (Amazon ECR) repository creation, Docker image build, and CloudFormation stack deployment. It verifies that CloudTrail is active in the target Region, validates the CloudFormation template, and confirms you are using temporary role credentials rather than long-term IAM user keys.
When the stack completes, the script outputs the configuration values that you need for the frontend: Cognito User Pool ID, Cognito Client ID, Cognito Identity Pool ID, and Agent Runtime Amazon Resource Name (ARN).

Step 4: Deploy the Amplify frontend
Navigate to the AWS Amplify console in your deployment Region, then follow these steps:
- Select the support-agent-frontend app.
- Choose Deploy updates in the main branch.
- Select Drag and drop as the method, then upload the support-agent-amplify-frontend.zip file from the frontend/ directory.
- Choose Save and deploy.
Step 5: Configure and access the application
Update the frontend configuration with the CloudFormation output values (User Pool ID, Client ID, Identity Pool ID, and Runtime ARN). Create a user account through the Sign Up option, verify your email with the one-time code, and sign in.

Step 6: Interact with the agent
The chat interface connects to the agent running in AgentCore Runtime. The agent has access to AWS MCP servers for documentation and support, and AWS re:Post through AgentCore Gateway. Try queries like:
- “What are the best practices for securing an Amazon Simple Storage Service (Amazon S3) bucket?”
- “Help me troubleshoot a Lambda function timeout in us-east-1”
- “Create a support case for an intermittent connectivity issue with my RDS instance”

Understanding the agent code
The agent is defined in agent.py and uses the BedrockAgentCoreApp framework. This section highlights three implementation patterns that address common challenges with production agents.
Parallel MCP initialization. Loading three MCP servers sequentially adds noticeable startup latency. The agent initializes all three clients in parallel using asyncio.gather, which reduces cold start time. Each client connects to its server using uvx and registers the available tools with the Strands Agent:
# Initialize all clients in parallel
results = await asyncio.gather(
init_aws_docs(), # AWS Documentation MCP
init_aws_support(), # AWS Support MCP
init_aws_api(), # AWS API MCP
return_exceptions=True
)Memory with graceful timeout. The agent uses AgentCore Memory to maintain conversation context. On each request, it retrieves the last three conversation turns with a two-second timeout. If context retrieval times out, the agent proceeds without it rather than blocking the response. After generating a response, it saves the conversation asynchronously. Memory is scoped per session ID, so each user conversation maintains its own context.
Gateway token refresh. The AgentCore Gateway client authenticates using Cognito JWT tokens stored in Secrets Manager. The agent validates token expiration before each gateway call and refreshes automatically when the token is within five minutes of expiring. Without this, gateway calls fail intermittently after the one-hour token lifetime.
Security considerations
The solution deploys with multiple security layers configured by default. Authentication uses Amazon Cognito with NIST SP 800-63B-aligned password policies. AWS WAF with rate limiting and managed rule sets protects the API Gateway. Each component has its own least-privilege IAM role, and the agent invoker Lambda redacts credential patterns from responses before returning them to users.
Amazon Bedrock Guardrails filters harmful content, blocks prompt injection (set to HIGH), redacts PII (AWS keys, credit cards, SSNs), and restricts the agent to AWS support topics. API Gateway access logs flow to Amazon CloudWatch with 90-day retention, and AWS CloudTrail captures API calls. For the full security implementation details, including encryption configuration, IAM role scoping, and guardrail policies, see SECURITY.md in the repository.
Cleanup
To avoid ongoing charges, delete the resources in this order.
Warning: these steps are irreversible. Back up any data you need before proceeding.
- Delete the Amplify app from the AWS Amplify console.
- Delete the CloudFormation stack:
aws cloudformation delete-stack --stack-name bedrock-agentcore-stack --region us-west-2- Delete the ECR repository (CloudFormation doesn’t delete non-empty repositories):
aws ecr delete-repository --repository-name support-agent --region us-west-2 --force- Delete the S3 bucket used for CloudFormation templates:
aws s3 rb s3://cfn-templates-ACCOUNTID-us-west-2 --forceConclusion
In this post, you built an AI-powered AWS Support Companion using Amazon Bedrock AgentCore. The agent combines foundation model reasoning with real-time access to AWS documentation, support APIs, and community knowledge through MCP and AgentCore Gateway. The solution deploys with a single script and includes authentication, rate limiting, encryption, guardrails, and audit logging.
The agent consolidates multiple investigation tools into a single conversational interface, so engineers can move from problem identification to support case creation without switching between consoles.
The sample repository includes additional guidance on network isolation, multi-account deployment, observability with AgentCore tracing, human escalation thresholds, and secret rotation for production readiness. To get started, visit the Amazon Bedrock AgentCore documentation and clone the sample repository.
If you need a fully managed incident investigation service, see AWS DevOps Agent. This post shows you how to build a custom agent on AgentCore Runtime when you need full control over the tools, model, guardrails, and workflow.
About the authors

Jose Soto
Jose is a Technical Account Manager at AWS. He is passionate about generative AI and physical AI technologies and their potential to automate processes and accelerate system performance across industries.

Puneeth Ranjan Komaragiri
Puneeth is a Principal Technical Account Manager at AWS. He is passionate about monitoring and observability, cloud financial management, and generative AI. In his current role, Puneeth collaborates closely with customers, using his expertise to help them design and architect their cloud workloads for scale and resilience.
関連記事
Amazon Bedrock を活用してメールボックスを自動的にソート・優先順位付けする
Amazon Bedrock AgentCore と Mistral AI Studio を活用した、本番環境対応の EC モデルコンテキストプロトコルサーバーの構築と接続
Jamf の AI ガバナンスと Amazon Bedrock を活用し、Mac で AI アプリケーションを管理
今日のまとめ
AI日報で今日の重要ニュースをまとめ読み