Foundation Model ยท Amazon BedrockText
Bedrock Flows
Amazon Bedrock token pricing and cost optimization reference for Bedrock Flows.Live pricing reference across 17 AWS regions on Amazon Bedrock.
ProviderAmazon
ModalityText
Prompt CachingSupported
Batch APISave 50%
AWS Regions17 Global
Bedrock Model ID
amazon.bedrock-flows-v1:0Input / Prompt
โ/ 1M tokens
Standard on-demand
Output / Completion
โ/ 1M tokens
Standard on-demand
Prompt Cache Read
โ/ 1M tokens
Optimized context reuse
Batch Inference
โ/ 1M in
Save 50% via Batch API
Price Ratio
โ
Prompt to completion factor
Bedrock Flows Spend Estimator
Model inference spend by prompt volume, cache hit rate, and batch processing.
M tokens
M tokens
30%
Estimated Monthly Spend
$0.00
Fresh Prompts:$0.00
Cached Prompts:$0.00
Completions:$0.00
Active: Input: โ/1M ยท Output: โ/1M
Key Cost Levers & Architecture
Practical mechanisms to reduce inference costs with Bedrock Flows on AWSPrompt CachingSave ~0%
Caches repetitive system instructions, schemas, and document prefixes in memory with a 5-minute TTL.
- Read Rate: โ / 1M tokens
- Write Rate: โ / 1M tokens
- Ideal for: Multi-turn conversations, RAG document queries, structured schemas
Batch InferenceSave 50%
Asynchronous bulk processing submitted via Amazon S3 with a standard 24-hour turnaround SLA.
- Batch Input: โ / 1M tokens
- Batch Output: โ / 1M tokens
- Ideal for: Offline classification, synthetic data generation, benchmark evals
Cross-Region & Tiers17 Regions
AWS Bedrock supports standard on-demand inference, priority reserved throughput, and cross-region routing.
- Standard: Lowest latency, pay-per-token with zero commitments
- Cross-Region Routing: Automatically burst traffic to available regional capacity
- GovCloud: Dedicated isolated compliance partitions with +20% uplift
Regional Pricing Matrix
Live rates across all 17 available AWS cloud regionsBaseline: โ/1M in17 Global Regions
| AWS Region | Price Type | Rate | Unit |
|---|---|---|---|
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition | |
| other | $0.0000 | Node transition |
No AWS regions found matching your filter.
Developer Quickstart
Invoke Bedrock Flows via Amazon Bedrock Converse APIPython (boto3) ยท Amazon Bedrock Runtime
import boto3
# Amazon Bedrock Converse API invocation
client = boto3.client("bedrock-runtime", region_name="us-east-1")
response = client.converse(
modelId="amazon.bedrock-flows-v1:0",
messages=[
{
"role": "user",
"content": [{"text": "Summarize key features and cost levers of Bedrock Flows."}]
}
],
inferenceConfig={
"maxTokens": 1024,
"temperature": 0.7
}
)
output_text = response["output"]["message"]["content"][0]["text"]
usage = response["usage"]
print(f"Response: {output_text}")
print(f"Usage: {usage['inputTokens']} in, {usage['outputTokens']} out")Compare Bedrock Flows with Alternatives
Open Multi-Model Estimator →Bedrock Flows vsJamba 1.5 LargeAI21 Labs
Input Rate:$2.00/1M
Output Rate:$8.00/1M
Bedrock Flows vsJamba 1.5 MiniAI21 Labs
Input Rate:$0.20/1M
Output Rate:$0.40/1M
Bedrock Flows vsQwen3 235B A22B 2507Alibaba (Qwen)
Input Rate:$0.11/1M
Output Rate:$0.44/1M