惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
有赞技术团队
有赞技术团队
罗磊的独立博客
博客园 - 叶小钗
Jina AI
Jina AI
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
量子位
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 聂微东
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
小众软件
小众软件
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Tried using the Claude Platform on AWS
Yuji Oshima · 2026-05-24 · via DEV Community

The Claude platform on AWS is now generally available.
This will allow you to access Claude, Anthropic's native platform, directly through your AWS account.

Claude Platform on AWS is now generally available

Update Overview

1. Use Anthropic’s official Claude API directly with your AWS account

Claude Platform on AWS is a new offering that allows you to use Anthropic’s native Claude API—operated by Anthropic—seamlessly integrated with AWS IAM authentication, AWS billing, and CloudTrail auditing.

2. Immediate access to the latest features (full functionality, full speed)

New features released by Anthropic become available on AWS the same day.

3. Inference runs on Anthropic infrastructure

Since Claude Platform on AWS is operated by Anthropic, inference runs outside AWS’s security boundary.

Item Claude Platform on AWS Claude on Bedrock
Inference execution Anthropic AWS
Available features All native Claude features (Skills, Code Execution, Files API, MCP, etc.) Only features provided by Bedrock (Guardrails, KB, Converse API)
Speed of new feature availability Same-day as Anthropic When AWS adds support
Authentication AWS IAM AWS IAM
Audit logs CloudTrail CloudTrail
Billing Integrated into AWS billing Integrated into AWS billing
Best suited for Latest features, agents, skills Data residency priority, private enterprise environments

Trying Claude Platform on AWS

Setup

Open the “Claude Platform on AWS” page in the AWS Management Console and click “Get Started.”

Click “Continue.”

Enter your email address and click “Start.”

You will receive an email from Anthropic titled “Set up your Claude organization.” Click the link.

Enter your organization details and click “Complete setup.”

Creating a Workspace

Click “Create Workspace.”

Your workspace will be created. Make sure to note the workspace ID.

Signing in to Claude Console

Select the “Admin” role and sign in.

Claude Console will open.
Let’s take a look at some of the available features.

You can register and manage agent skills.

You can create and manage agents.

You can monitor token usage and costs.

You can view rate limits and manage data residency.

Testing the API

Generate an API key from the dashboard.

Set an expiration date and generate the key.

Make sure to save the generated API key.

On the “Claude Platform on AWS” page, you can create and manage API keys under “API Keys.”

Set your environment variables:

export AWS_REGION="us-east-1"
export ANTHROPIC_WORKSPACE_ID="wrkspc_xxxxx"
export CLAUDE_AWS_BASE_URL="https://aws-external-anthropic.${AWS_REGION}.api.aws"
export ANTHROPIC_API_KEY="xxxxx"

Enter fullscreen mode Exit fullscreen mode

Try asking what Amazon Bedrock is.

curl "https://aws-external-anthropic.us-east-1.api.aws/v1/messages" \
   -H "x-api-key: $ANTHROPIC_API_KEY" \
   -H "x-amz-security-token: $AWS_SESSION_TOKEN" \
   -H "content-type: application/json" \
   -H "anthropic-version: 2023-06-01" \
   -H "anthropic-workspace-id: $ANTHROPIC_WORKSPACE_ID" \
   -d '{
     "model": "claude-sonnet-4-6",
     "max_tokens": 1024,
     "messages": [
       {"role": "user", "content": "What is Amazon Bedrock?"}
     ]
   }'

Enter fullscreen mode Exit fullscreen mode

If you receive a response like the one below, it’s working correctly:

{
    "model": "claude-sonnet-4-6",
    "id": "msg_xxxxx",
    "type": "message",
    "role": "assistant",
    "content": [
        {
            "type": "text",
            "text": "# Amazon Bedrockとは\n\nAmazon Bedrockは、**AWSが提供する完全マネージド型の生成AIサービス**です。\n\n---\n\n## 主な特徴\n\n### 🤖 複数の基盤モデル(Foundation Models)へのアクセス\n様々なAIプロバイダーのモデルを一つのAPIで利 用できます:\n\n| プロバイダー | モデル例 |\n|------------|---------|\n| Amazon | Amazon Titan |\n| Anthropic | Claude 3.5など |\n| Meta | Llama 3など |\n| Mistral AI | Mistral / Mixtralなど |\n| Stability AI | Stable Diffusionなど |\n\n---\n\n## 主な機能\n\n- **テキスト生成** - 文章作成、要約、翻訳など\n- **画像生成** - テキストから画像を生成\n- **RAG(検索拡張生成)** - 独自データと組み合わせた回答生成\n- **AIエージェント** - 複雑なタスクの自動化\n- **Fine-tuning** - 独自データでモデルをカスタマイズ\n\n---\n\n## メリット\n\n✅ **サーバーレス** - インフラ管理不要  \n✅ **セキュリティ** - データはAWS内で保護  \n✅ **スケーラビリティ** - 需要に応じて自動スケール  \n✅ **コスト効率** - 使った分だけ支払い\n\n---\n\n## ユースケース例\n\n- チャットボット・カスタマーサポート\n- ドキュメント分析・要約\n- コード生成\n- コンテンツ作成\n\nAWSのエコシステム(S3、Lambda等)と連携しやすいのも大きな利点です。\n\n何か具体的に知りたい点はありますか?"
        }
    ],
    "stop_reason": "end_turn",
    "stop_sequence": null,
    "stop_details": null,
    "usage": {
        "input_tokens": 18,
        "cache_creation_input_tokens": 0,
        "cache_read_input_tokens": 0,
        "cache_creation": {
            "ephemeral_5m_input_tokens": 0,
            "ephemeral_1h_input_tokens": 0
        },
        "output_tokens": 527,
        "service_tier": "standard",
        "inference_geo": "global"
    }
}

Enter fullscreen mode Exit fullscreen mode

Summary

Being able to use the latest native Claude features directly with your AWS account is surprisingly smooth, and the setup is incredibly simple.
This greatly expands the range of development possibilities.
Since inference runs on Anthropic’s side, it’s important to choose between Bedrock and Claude Platform on AWS depending on your use case.
It’s a good idea to become comfortable using Claude in various patterns.