e5341f1bf9
* update model id to haiku 4.5 * update model references to Haiku 4.5 * second batch of haiku 4.5 update. * bump LLM to Haiku 4.5 * add alias to contributors * add min version to starter toolkit so container is valid syntax. * fix issues identified in code review.
CloudFormation Samples
Deploy Amazon Bedrock AgentCore resources using CloudFormation templates.
Prerequisites
- AWS CLI installed and configured
- CloudFormation permissions to create stacks and resources
- Access to Amazon Bedrock AgentCore (preview)
General Deployment Pattern
# Deploy
aws cloudformation create-stack \
--stack-name <stack-name> \
--template-body file://<template-file> \
--capabilities CAPABILITY_IAM \
--region <region>
# Monitor
aws cloudformation describe-stacks \
--stack-name <stack-name> \
--region <region>
# Cleanup
aws cloudformation delete-stack \
--stack-name <stack-name> \
--region <region>
Samples
- mcp-server-agentcore-runtime/ - MCP Server with JWT authentication
- basic-runtime/ - Simple agent deployment
- multi-agent-runtime/ - Multi-agent system
- end-to-end-weather-agent/ - Weather agent with tools and memory
Troubleshooting
Stack Creation Fails
aws cloudformation describe-stack-events \
--stack-name <stack-name> \
--region <region>
CodeBuild Failures
aws codebuild batch-get-builds \
--ids <build-id> \
--region <region>