Amazon Nova is Amazon's own family of foundation models, available exclusively through AWS Bedrock. Nova models are optimized for enterprise workloads that require tight integration with the AWS ecosystem and multimodal support across text, images, and video.
Key use cases include:
Amazon Nova is used by enterprises already invested in AWS who want foundation models that integrate natively with their existing cloud infrastructure — no separate API keys, billing, or vendor relationships. Standard IAM roles control access.
The Nova family includes Nova Micro (text-only, fastest), Nova Lite (multimodal, balanced), and Nova Pro (most capable), plus specialized models for image and video generation.
pip install boto3import boto3, json
client = boto3.client('bedrock-runtime', region_name='us-east-1')
response = client.invoke_model(
modelId='amazon.nova-pro-v1:0',
body=json.dumps({
'messages': [{'role': 'user', 'content': [{'text': 'Hello!'}]}]
})
)bedrock:InvokeModel permissions.Pricing: Billed through your AWS account. Nova Micro starts at ~$0.035/1M input tokens. Nova Pro is ~$0.80/1M input tokens. On-demand and provisioned throughput options available. See AWS Bedrock pricing.
Be the first to share a Amazon Nova case study and get discovered by clients.
Submit a case studySubmit a brief and we'll match you with vetted specialists who have proven Amazon Nova experience.