Upgrade to Pro — share decks privately, control downloads, hide ads and more …

サーバーレスで実装する AI エージェント

サーバーレスで実装する AI エージェント

AIエージェントを実装するときに、どうやって本番環境にデプロイしよう?と思われる方、いるんじゃないでしょうか。
本セッションではAWSでAIエージェントを実装する際のアーキテクチャの基本をお伝えして行きます。

Avatar for Yuya Matsumoto

Yuya Matsumoto

March 17, 2026
Tweet

More Decks by Yuya Matsumoto

Other Decks in Technology

Transcript

  1. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. サーバーレスで実装する AI エージェント 松本 侑也 (Yuya, Matsumoto)
  2. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. ⾃⼰紹介 松本 侑也 アマゾンウェブサービスジャパン ソリューションアーキテクト 普段は公共のお客様を中⼼にご⽀援しています。 ⽣成 AI 活⽤⽀援 好きな AWS サービス Amazon API Gateway 2
  3. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 本セッションの対象者とゴール 対象者 • ⽣成 AI エージェントをこれから開発・活⽤していきたいエンジニア • ⽣成 AI エージェントは開発したことがあるけれど、改めてどんなアーキテクチャパターンが あるのか整理したい⽅ ゴール • ⽣成 AI エージェントに求められる機能と、実装するためのAWSサービスを知る ※ 本セッションでは触れないこと • ⼤規模⾔語モデル (LLM) やプロンプトの基礎、LLM を⽤いた Chain-of-Thought, ReAct などの エージェント実装の要となる技術の詳細や、Tool Use (Function Calling) などの機能の詳細 • エージェント開発での詳細なテクニック、デバッグ⽅法、評価⼿法 • AWS サービスの詳細説明 3
  4. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. ⽣成 AI 技術は仕事を「任せ」られる⽅向に進化 テキスト⼊⼒の 続きを⽣成する キーワード: ⾔語モデル 会話形式⼊⼒の 続きを (外部知識と 連携し) ⽣成する キーワード: AI アシスタント RAG タスク完了に⾄る 計画を⽣成する キーワード: Reasoning model (Thinking model) タスク完了に⾄る 計画を実⾏する キーワード : AI エージェント AI Agent (2025) 画⾯⼊⼒・操作を 扱えるように キーワード: Computer Use 外部連携可能な データ形式を⽣成 し処理を起動する キーワード: Function Calling Code Interpreter ChatGPT (2023) 4
  5. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. ユーザーのクエリに対して、⾃律的に実⾏計画を⽴てタスク (API) を実⾏することで ⽬的を達成する⽣成 AI アプリケーション AI エージェントとは ユーザー エージェント (LLM) AnyCompany 社の現在の株価状況をレポートしてください。 今後、株式購⼊の参考にしたいです。 ⽂脈によると、AnyCompay は企業の名前だな。 銘柄コードを取得して、銘柄コードから株価と財務諸表を取得することができそうだ。 最近のニュースは Web から検索してくる必要がありそうだ。 これらの情報をまとめたら、回答が⽣成できそうだ。 AnyCompany の 2025-XX-XX 時点の株価は YYYY です。今週は株価は上昇傾向です。 財務状況は良好です。 最近のニュースは以下のとおりです。 - xxxx ( URL )
  6. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 6 AI エージェントの仕組み ⽬的 (ゴールを伝える) AI エージェント 環境 ②ツールの利⽤ ③観測 ⽬的 結果 ①計画 ⽬的とツールを与えるのみでタスクを⾃律的に完了する技術 ① 完了までの計画を作成 ② 計画を進めるためにツールを利⽤ ③ 実⾏結果を観測し進捗を更新 結果を出⼒
  7. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. 7 Agenda 1. ユーザーが起点となり動作する AI エージェント 2. ⼈間が不在でも動作し続ける AI エージェント 3. AI エージェントの開発を加速するツール
  8. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. 1. ユーザーが起点となり動作する AI エージェント 2. ⼈間が不在でも動作し続ける AI エージェント 3. AI エージェントの開発を加速するツール 8 Agenda
  9. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. Demo 9
  10. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 10 AI エージェントを実装するには··· 参考: https://strandsagents.com/docs/user-guide/concepts/agents/agent-loop/#how-the-loop-works 「計画」「ツールの実⾏」「観測」のループを実装する必要がある
  11. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 11 フレームワークを使わずに書くと··· Strands使わずにAgentを書く例 Toolの説明や過去の会話履歴を 含めたプロンプトの作成
  12. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 必要な情報は事前定義し、プロンプトに含めることで LLM に次の判断をさせる エージェント⽤プロンプトを簡略化した例 あなたは AnyCompany 社の従業員の有給取得申請が⾏えるエージェントです。 ユーザーの質問に対して、利⽤できるアクション (API) を駆使して対応できます。 利⽤できるアクションは次のとおりです。 { { “名前”: “有給取得”: “説明”: “有給休暇の取得を要求したときに呼び出す”, “パラメータ”: {“従業員番号”: “従業員に固有の 10 桁の番号”} }, … } ユーザーの質問に答えるための実⾏計画を⽴てて、次のステップを考えてください。 事前に分かっている情報は次のとおりです。: {…} … エージェントのタスクの説明 実⾏できるアクション (API), 参照できるデータソースなど + その説明 実⾏⽅針や過去履歴など 事前定義 プロンプト ユーザー プロンプト <クエリ> ユーザーのクエリ ※ このプロンプトの雛形は、エージェントの動作の解説のために記載しているものであり、厳密ではありません。
  13. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 13 フレームワークを使わずに書くと··· Toolの説明や過去の会話履歴を 含めたプロンプトの作成 Loop の実装
  14. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 14 フレームワークを使わずに書くと··· Toolの説明や過去の会話履歴を 含めたプロンプトの作成 Loop の実装 Tool の実⾏と結果の取得
  15. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 15 フレームワークを使わずに書くと··· Toolの説明や過去の会話履歴を 含めたプロンプトの作成 Loop の実装 Tool の実⾏と結果の取得 他にも··· • メモリの管理 • オブザーバビリティ • 外部との連携 • エラーハンドリング などやることはたくさん···
  16. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AI エージェント開発フレームワーク: Strands Agents Strands Agents を使って AI エージェントを簡単に開発することが可能 STRANDS AGENTS B U I L D P R O D U C T I O N - R E A D Y , M U L T I - A G E N T S Y S T E M S I N A F E W L I N E S O F C O D E 16
  17. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AI エージェントは Agent 開発フレームワークを 利⽤して開発することが主流に Agent ツール 基盤モデル API Call API ツール ツール • LLMの呼び出しや Agent が使⽤するツール定義の部分を 簡潔に記述可能にする SDK を利⽤して実装 • SDK の例︓Strands Agents SDK, LangGraph... • ツール定義・Agent実装をプログラムで柔軟に設定可能 17 この部分を簡単に記述
  18. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AI エージェントを提供するには 「アプリケーション」が必要 18 Web アプリケーション Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース
  19. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. では、AI エージェントをどこにデプロイするか AWS Lambda Amazon Elastic Container Service (ECS) AI エージェントは単なるアプリケーションのため、 どの基盤でも動作させることができる 19
  20. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. API Gateway x AWS Lambda で動かすことを 考える 20 Web アプリケーション Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース Amazon Bedrock AWS Lambda
  21. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. API Gateway x AWS Lambda で⼿軽に AI エージェントを動かすことが可能 メリット • 既存のAPIのイチ機能としてデプロイが可能 • API Gateway x Lambdaは Response Streamingにも対応可能* Amazon Bedrock AWS Lambda 21
  22. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 22 ケース1: ファイルの⽣成 「Word でまとめて」 「できました。」 /tmp/ Word ファイル ①ユーザーがファイルの作成を指⽰
  23. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 23 ケース1: ファイルの⽣成 「Word でまとめて」 「できました。」 /tmp/ Word ファイル 「ちょっと⽂字を修正したい」 /tmp/ Word ファイル ①ユーザーがファイルの作成を指⽰ ②ファイルの修正を指⽰ 他のアプリケーションユーザーの リクエストも処理されることがある 実⾏環境が消失してる可能性がある
  24. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 24 ケース2: ソフトウェアの機能開発・テスト実⾏ 「新しい機能を作って。 テストも通して、Pull Request作って」 Tools • コーディング • テストの実⾏ • エラー解消 etc... 15 分以上の時間がかかる タスクが実⾏される可能性
  25. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 25 API Gateway x AWS Lambda で AI エージェント を実装しようとしたときの課題 ⻑時間の実⾏ 15分以上かかる ユースケースの実⾏ 実⾏環境の分離 エージェント・ユーザーごとに 分離された環境が欲しい
  26. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Amazon Bedrock AgentCore 2 0 2 5 / 1 0 / 1 3 G e n e r a l l y A v a i l a b l e N E W あらゆるフレームワークとモデルを利⽤して構築した、 ⾼度な能⼒を持つエージェントを安全かつ⼤規模にデプロイして運⽤ 東京リージョンにもやってきました
  27. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Amazon Bedrock AgentCore エージェントを本番環境で稼働するために必要なエージェントプラットフォーム Runtime Memory Identity Gateway Code Interpreter Browser Policy Evaluations Observability 27
  28. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Amazon Bedrock AgentCore エージェントを本番環境で稼働するために必要なエージェントプラットフォーム Runtime Memory Identity Gateway Code Interpreter Browser Policy Evaluations Observability 28 本⽇ご紹介する AgentCore の機能
  29. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 本番環境でのセキュアなデプロイ・エージェント実⾏のためのフルマネージドなエージェントランタイム AgentCore Runtime • OSSフレームワーク: LangGraph, CrewAI, etc. • 様々なモデル: Amazon Bedrock, SageMaker, OpenAI, Gemini, etc. • プロトコル: MCP, A2A • Github, Salesforce, Google など サードパーティー リソースへの アクセスのための 組み込みの 認証情報管理機能 フレームワーク, モデル, プロトコル への柔軟な対応 組み込みの アイデンティティ と認証 • テキスト, 画像, ⾳声, 動画を制限なく 双⽅向 ストリーミング • ペイロードサイズは 最⼤100MBまで対応 • ⾼速な初期化 (~200ms) • ⻑期間動作可能な ⾮同期ワークロード (最⼤8時間) • 持続的な 専⽤実⾏環境による 完全なセッション分離 30 特に API Gateway x Lambda では実装にひと⼯夫必要な箇所
  30. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AgentCore Runtime Framework AI エージェントのソースコード Models Docker file AgentCore Runtime AgentCore Runtime Endpoint Application invoke ユーザー AgentCore Runtime Agent Code-zip upload 31 Amazon ECR Amazon S3 開発者 Launch エージェントはここで動く 8 時間の⻑時間実⾏も可能 セッションごとに実⾏環境が分離される AgentCore Runtime もサーバーレスサービスの 1 種︕
  31. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. API Gateway x AWS Lambda で動かすことを 考える 32 Web アプリケーション Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース Amazon Bedrock AWS Lambda 再 掲
  32. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 33 AgentCore Runtime を利⽤した場合の構成例 Web アプリケーション AI エージェント実⾏基盤 Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda AgentCore Runtime Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース
  33. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. ツールの数だけ、AI エージェントの "できること"は増える Agent 実装 ツール 基盤モデル API Call API MCP Client 外部ツール MCP MCP Server 34
  34. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Agent からのツール呼び出しのイメージ Tool A ファイル操作 MCP Server B メール送信ツール MCP Server C カレンダー操作ツール Eメールサービス 1 つの AI エージェント から複数の MCP Server に接続・⽤途によって 使い分けが可能 Tool AgentCore Runtime リモート MCP 35
  35. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Strands Agents でのツールの実装⽅法 Internal Tools • ローカルで Tool の独⾃定義 • ファイルの読み書きなどはデフォル トで定義されている External Tools • 標準化されたプロトコル (MCP) 経由 で呼び出す • 各SaaSが提供している MCP Server や独⾃実装の MCP Serverなど MCP Server 呼び出し 36
  36. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. MCP の作り⽅の基本 FastMCP FastMCP などの MCP Server を作るためのライブラリで実装し、任意の Compute サービスで動作させることが可能 37
  37. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. MCP Server を本番運⽤するときの課題 認可 誰がどのツールを 使えるようにする︖ スロットリング 過剰なリクエストから どう保護する︖ モニタリング ツールの使⽤状況を どう可視化する︖ 38
  38. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AgentCore Gateway 既存 API 資産の活⽤ REST API / Lambda 関数をそのまま Tool 化 認証・認可の⼀元管理 OAuth / API Key / IAM によるアクセス制御 使⽤量のモニタリング どの Tool をどれだけ使ったか追跡 スロットリング・レート制限 エージェントの暴⾛を防⽌する 39
  39. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AgentCore Identity AgentCore Gateway の概要 既存の API、Lambda 関数、Remote MCPサーバーを束ねて単⼀の MCP サーバーとして利⽤可能。 ⼤量のツールの管理、各ツールの認証認可を⼀元的に⾏え、社内展開も容易に。 Agent MCP クライアント AgentCore Gateway OpenAPI 仕様の API AWS Lambda Amazon API Gateway MCP サーバー Smithy モデルによる API 40 認証/認可 Inbound Auth Outbound Auth
  40. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 検索なし ターゲット 1 250 ツール ターゲット 2 100 ツール MCP ツールの⼀覧化 数百のツールを持つサービス 300 以上のツールすべてを返却 AgentCore Gateway セマンティックサーチ AgentCore Gateway AgentCore Gateway は⾃動的にツールをインデックス化し、サーバーレスのセマンティックサーチを提供 エージェントがタスクに関連したツールにフォーカス ツールの数が多いとコンテキストを圧迫する 41
  41. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 検索なし 検索: 「SNS のポストを作成する」 ターゲット 1 250 ツール ターゲット 2 100 ツール MCP ツールの⼀覧化 最も関連性の⾼い 4 つのツールを返却 数百のツールを持つサービス 300 以上のツールすべてを返却 AgentCore Gateway セマンティックサーチ AgentCore Gateway 検索あり AgentCore Gateway ターゲット 1 250 ツール ターゲット 2 100 ツール 数百のツールを持つサービス AgentCore Gateway は⾃動的にツールをインデックス化し、サーバーレスのセマンティックサーチを提供 エージェントがタスクに関連したツールにフォーカス ツールの数が多いとコンテキストを圧迫する 必要なツールと説明だけ読み込むため、コンテキストが節約される 42
  42. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 43 AgentCore Runtime を利⽤した場合の構成例 Web アプリケーション AI エージェント実⾏基盤 Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda AgentCore Runtime Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース 再 掲
  43. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AgentCore Gateway を利⽤した場合の構成例 44 Web アプリケーション AI エージェント実⾏基盤 Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda AgentCore Runtime Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース AI エージェントのツール AgentCore Gateway API MCP ···
  44. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. 45 Agenda 1. ユーザーが起点となり動作する AI エージェント 2. ⼈間が不在でも動作し続ける AI エージェント 3. AI エージェントの開発を加速するツール
  45. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. Demo 46
  46. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Ambient Agent とは ⼈の指⽰を待たず、スケジュールやイベントに応じて⾃律的に動くエージェント Chatbot Agent Reactive(受動的) • ユーザーが指⽰を出す → 応答する • リアルタイムの対話が中⼼ • 常に⼈間がトリガー Ambient Agent Proactive(能動的) • スケジュール / イベントで⾃律起動 • バックグラウンドで継続的に稼働 • ⼈間不在でもタスクを遂⾏ 例︓毎朝のメール要約 / DB 異常の⾃動調査 / 定期レポート⽣成 / セキュリティアラートの⾃動対応 47
  47. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 48 チャットユースケースと Ambient Agent の特徴⽐較 Chat Agents Ambient Agents トリガー ⼈間からのメッセージ イベント
  48. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 49 チャットユースケースと Ambient Agent の特徴⽐較 Chat Agents Ambient Agents トリガー ⼈間からのメッセージ イベント 同時実⾏数 〜1 無制限
  49. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 50 チャットユースケースと Ambient Agent の特徴⽐較 Chat Agents Ambient Agents トリガー ⼈間からのメッセージ イベント 同時実⾏数 〜1 無制限 レイテンシー できるだけ早く ⻑くても良い
  50. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 51 チャットユースケースと Ambient Agent の特徴⽐較 Chat Agents Ambient Agents トリガー ⼈間からのメッセージ イベント 同時実⾏数 〜1 無制限 レイテンシー できるだけ早く ⻑くても良い UI/UX Chat UI Any
  51. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. イベント連携で起動する AI エージェント Event Amazon Event Bridge S3 file uploaded Amazon Bedrock AgentCore GitHub Issue Created Slack message sent 書類審査 コーディング 週次レポート作成 GitHub S3 Slack etc.. ある程度⾃律的な判断が可能な業務、初⼿ AI で捌いてもよい作業をイベント駆動で実現する 例︓申請系処理で単純な項⽬漏れなどは AI が⾃動返信する、簡単な観点でレビューをパスしてから⼈間が書類を確認する 例︓クラウドのアラートをトリガーに AI が原因の調査特定、改善案の提案、ソースコードの修正まで⾏い⼈間が承認する 52
  52. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. ユーザーにリアルタイムに結果を通知する Event Amazon Event Bridge S3 file uploaded Amazon Bedrock AgentCore GitHub Issue Created Slack message sent 書類審査 コーディング 週次レポート作成 GitHub S3 Slack etc.. ある程度⾃律的な判断が可能な業務、初⼿ AI で捌いてもよい作業をイベント駆動で実現する 例︓申請系処理で単純な項⽬漏れなどは AI が⾃動返信する、簡単な観点でレビューをパスしてから⼈間が書類を確認する 例︓クラウドのアラートをトリガーに AI が原因の調査特定、改善案の提案、ソースコードの修正まで⾏い⼈間が承認する 53
  53. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 54 AWS AppSync GraphQL や Pub/Sub API を簡単に構築できるサーバーレスサービス AWS AppSync • GraphQL の知識不要で Pub/Sub通信をマネージドに実装できるサービス • Namespace/channel という単位でイベントをグループ化 • HTTP, WebSocket のどちらでも Publish が可能 Event API • マネージドな GraphQL サーバーを容易に構築可能 • クライアント側で⾃由なクエリの組み⽴てが可能 • スキーマやリゾルバーを⽤いて API の振る舞いを柔軟に制御 • WebSocket を⽤いた GraphQL Subscription が可能 GraphQL API
  54. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 55 AWS AppSync GraphQL や Pub/Sub API を簡単に構築できるサーバーレスサービス AWS AppSync • GraphQL の知識不要で Pub/Sub通信をマネージドに実装できるサービス • Namespace/channel という単位でイベントをグループ化 • HTTP, WebSocket のどちらでも Publish が可能 Event API
  55. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AWS AppSync Event API 56 AWS AppSync - Event API AppSync GraphQL のユーザーからの要望に応える形で登場 HTTP endpoint Real-time (WebSocket) endpoint https://{endpoint_identifier}.appsync-api.{region}.amazonaws.com/event wss://{endpoint_identifier}.appsync-realtime-api.{region}.amazonaws.com/event/realtime Publisher via HTTP or WebSocket Subscriber via WebSocket AI エージェント ユーザー
  56. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 事例︓ CoTerrace様 ̶ ⾃律型 AI の実現 Amazon Bedrock で実現した⾃律的 AI の事例 ユーザーの介⼊なしに、エージェントが⾃律的に データを収集・分析し、 必要なアクションを実⾏する。バックグラウンド で継続的に稼働する AI エージェントを、 Amazon Bedrock の上に構築しました。 アーキテクチャのポイント イベント駆動 スケジュール・外部イベントで起動 Bedrock 統合 LLM による⾃律的な判断と実⾏ 57
  57. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AgentCore Gateway を利⽤した場合の構成例 58 Web アプリケーション AI エージェント実⾏基盤 Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda AgentCore Runtime Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース AI エージェントのツール AgentCore Gateway API MCP ··· 再 掲
  58. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. イベント駆動による AI エージェントの実⾏ 59 Web アプリケーション AI エージェント実⾏基盤 Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda AgentCore Runtime イベント実⾏ Amazon EventBridge Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース AI エージェントのツール AgentCore Gateway API MCP ···
  59. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. App Sync によるリアルタイム通知 60 Web アプリケーション AI エージェント実⾏基盤 リアルタイム通知 Amazon CloudFront Amazon S3 Amazon API Gateway AWS Lambda AgentCore Runtime AWS AppSync イベント実⾏ Amazon EventBridge Amazon Cognito Amazon DynamoDB フロントエンド API 認証 データベース AI エージェントのツール AgentCore Gateway API MCP ···
  60. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. 61 Agenda 1. ユーザーが起点となり動作する AI エージェント 2. ⼈間が不在でも動作し続ける AI エージェント 3. AI エージェントの開発を加速するツール
  61. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AI コーディングツール Kiro 仕様駆動開発が組み込まれたエージェントコーディングツール CLI 版はターミナルでもご利⽤いただけます 62
  62. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AI エージェントの開発で利⽤すると便利な MCP Server Strands Agent MCP Server AgentCore MCP Server 1.ドキュメント検索 2.ドキュメント全⽂取得 3.Runtimeデプロイ・管理情報 4.Memory設定・管理情報 5.Gateway構築・管理情報 1.ドキュメント検索 2.ページ構造閲覧・セクション 単位での取得 Strands Agent MCP Server: https://github.com/strands-agents/mcp-server/blob/main/README.md AWS Bedrock AgentCore MCP Server: https://awslabs.github.io/mcp/servers/amazon-bedrock-agentcore-mcp-server 63
  63. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. まとめ 64
  64. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. まとめ ユーザーが起点となり動作する AI エージェン ト • AI エージェントも Web アプリケーション • API Gateway x Lambda でも実装可能 • ⻑時間の実⾏・⾼度に分離された環境が必 要になる場合、AgentCore Runtimeがいい 選択肢に ⼈間が不在でも動作し続ける AI エージェント • EventBridgeによりイベント駆動でAIエー ジェントの実⾏が可能 • AppSync Events API により、AIエージェ ントの実⾏状態をユーザーへ通知すること が可能 AI が利⽤するツールを実装する • 本番環境でのツールは認可やオブザーバビ リティが⼤事 • AgentCore Gateway を利⽤することで、既 存の API Gateway (REST API) や Lambda を 使って、AI にツールを提供することが可能 AI エージェントの開発にも AI を使う • Kiro や お使いのコーディングエージェント にStrands Agent MCP ServerやAgentCore MCP Serverを設定して開発を始めよう︕ 65
  65. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark. NextAction 66
  66. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. 本⽇のようなフルスタック AI エージェントを 実装したい⽅は··· fullstack agentic starter template をお試しください GitHubリンク: https://github.com/awslabs/fullstack-solution-template-for-agentcore/tree/main 67
  67. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Amazon Bedrock AgentCore エージェントを本番環境で稼働するために必要なエージェントプラットフォーム Runtime Memory Identity Gateway Code Interpreter Browser Policy Evaluations Observability 68 本⽇ご紹介しきれなかった機能
  68. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. AgentCore を体系的に学びたい⽅は··· https://youtu.be/YKESEga6wvY?si=2on8J-knmvtq9nFq https://youtu.be/BjJrMUivJnc?si=KyDWMToCiufzF-UN AgentCore にはまだまだ AI エージェントを実装するために便利な機能がたくさんあります。 69
  69. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. MCP をコーディングエージェントに設定して AI エージェントの開発を始めましょう︕ Strands Agent MCP Server AgentCore MCP Server 1.ドキュメント検索 2.ドキュメント全⽂取得 3.Runtimeデプロイ・管理情報 4.Memory設定・管理情報 5.Gateway構築・管理情報 1.ドキュメント検索 2.ページ構造閲覧・セクション 単位での取得 Strands Agent MCP Server: https://github.com/strands-agents/mcp-server/blob/main/README.md AWS Bedrock AgentCore MCP Server: https://awslabs.github.io/mcp/servers/amazon-bedrock-agentcore-mcp-server 70
  70. © 2026, Amazon Web Services, Inc. or its affiliates. All

    rights reserved. Amazon Confidential and Trademark. Thank you! © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential and Trademark.