Skip to main content

AppMod Catalog Blueprints

Code Website Package

Application Modernization (AppMod) Catalog Blueprints is a comprehensive library of use case-driven infrastructure solution blueprints built using AWS well-architected best practices. Designed as composable multi-layered building blocks using AWS Cloud Development Kit (CDK) L3 constructs, these blueprints offer use case-driven solutions with multiple implementation pathways and industry-specific implementations to accelerate serverless development and modernization on AWS.

Key Benefits:

  • Use case-driven solutions: Purpose-built blueprints for common business scenarios like document processing, web applications, and AI workflows, with industry-specific implementations like insurance claims processing
  • Multi-layered approach: Infrastructure Foundation → General Use Cases → Industry Examples, allowing you to start with proven patterns and customize as needed.
  • Composable architecture: Mix and match independent components with standardized interfaces
  • Enterprise-ready: Built-in security, compliance, and AWS Well-Architected best practices
  • Multi-language support: Available in TypeScript, Python, Java, and .NET via JSII

How to Use This Library

Get started by exploring the use case constructs and deployable examples. Learn more from documentation and Construct Hub.

ApproachBest ForGet Started
🚀 Rapid DeploymentQuick evaluation, immediate solutions, proof-of-conceptsUse examples - deploy complete solutions in minutes with sensible defaults and AWS Well-Architected best practices
🔧 Custom DevelopmentSpecific requirements, enterprise integration, tailored solutionsUse individual constructs - override defaults, inject custom logic, configure for your environment

Use Case Building Blocks

Core Use Cases

Use CaseDescriptionQuick Deploy Examples
Document ProcessingIntelligent document processing workflows with classification, extraction, and agentic capabilitiesBedrock Document Processing
Agentic Document Processing
Full-Stack Insurance Claims Processing Web Application
Web ApplicationStatic web application hosting with global CDN, security headers, and SPA supportFull-Stack Insurance Claims Processing Web Application

Foundation and Utilities

ComponentDescription
Agentic AI FrameworkComposable enterprise framework for building intelligent AI agents that can be mixed and matched across diverse use cases - from document processing to conversational AI
Infrastructure FoundationCore infrastructure components including VPC networking, access logging, and EventBridge integration
Observability & MonitoringComprehensive monitoring, logging, and alerting with automatic property injection and Lambda Powertools integration
Data MaskingLambda layer for data masking and PII protection in serverless applications

Getting Started

Environment Setup

# Configure AWS credentials and region
aws configure
# OR set AWS profile: export AWS_PROFILE=your-profile-name

# Bootstrap your AWS environment (one-time setup)
npx cdk bootstrap

Quick Deploy (Complete Solutions)

Deploy working examples in minutes for immediate value:

# Clone the repository
git clone https://github.com/cdklabs/cdk-appmod-catalog-blueprints.git

# Deploy complete insurance claims processing solution
cd examples/document-processing/doc-processing-fullstack-webapp
npm install && npm run deploy
# Full AI-powered solution with web interface deployed

# Or deploy basic document processing
cd examples/document-processing/bedrock-document-processing
npm install && npm run deploy

Using Individual Constructs

Add to your existing CDK projects for custom solutions:

# Install the library
npm install @cdklabs/appmod-catalog-blueprints

# Use in your CDK code
import { AgenticDocumentProcessing, WebApp } from '@cdklabs/appmod-catalog-blueprints';

const docProcessor = new AgenticDocumentProcessing(this, 'Processor', {
agentDefinition: {
bedrockModel: { useCrossRegionInference: true },
systemPrompt: myPrompt,
tools: [myTools]
}
});

Key Design Principles

AppMod Catalog Blueprints is built on Object-Oriented Programming (OOP) principles, providing a structured approach to infrastructure development through core design concepts:

Composable Architecture

Build complex enterprise systems by combining independent, reusable components with standardized interfaces.

  • Independent components with clear interfaces and loose coupling for maximum flexibility
  • Mix and match building blocks to create custom solutions across different contexts and use cases
  • Scalable composition that maintains consistency while enabling incremental adoption and gradual modernization

Multi-Layered Building Blocks Architecture

Our blueprints use a multi-layered architecture that bridges the gap between business requirements and technical implementation:

LayerImplementation TypePurposeKey Features
Infrastructure FoundationAbstract base classesShared infrastructure components and common services• Standardized interfaces and contracts
• Extensible foundation for custom implementations
General Use Case ImplementationConcrete implementation classesImplementations for common patterns across industries• Configurable parameters for different environments
• Abstract method implementations with general-purpose solutions
Industry-Aligned ImplementationConfigured implementation examplesPre-configured solutions for specific business domains• Industry-specific validation rules and workflows
• Built-in compliance requirements and domain expertise

Security & Compliance

All components include enterprise-grade security by default:

  • CDK Nag Integration: Automated security compliance checking
  • AWS Well-Architected: Security, reliability, and performance best practices
  • Encryption & IAM: At-rest/in-transit encryption with least-privilege access
  • Compliance Reports: Generate reports with npm test -- --testPathPattern="nag.test.ts"

Contributing

See CONTRIBUTING.md for detailed guidelines on how to contribute to this project.

Disclaimer

These application solutions are not supported products in their own right, but examples to help our customers use our products from their applications. As our customer, any applications you integrate these examples in should be thoroughly tested, secured, and optimized according to your business's security standards before deploying to production or handling production workloads.

License

Apache License 2.0 - see LICENSE file for details.