Skip to content

cdklabs/cdk-appmod-catalog-blueprints

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.

Approach Best For Get Started
πŸš€ Rapid Deployment Quick evaluation, immediate solutions, proof-of-concepts Use examples - deploy complete solutions in minutes with sensible defaults and AWS Well-Architected best practices
πŸ”§ Custom Development Specific requirements, enterprise integration, tailored solutions Use individual constructs - override defaults, inject custom logic, configure for your environment

Use Case Building Blocks

Core Use Cases

Use Case Description Quick Deploy Examples
Document Processing Intelligent document processing workflows with classification, extraction, and agentic capabilities β€’ Bedrock Document Processing
β€’ Agentic Document Processing
β€’ Full-Stack Insurance Claims Processing Web Application
Web Application Static web application hosting with global CDN, security headers, and SPA support β€’ Full-Stack Insurance Claims Processing Web Application

Foundation and Utilities

Component Description
Agentic AI Framework Composable enterprise framework for building intelligent AI agents that can be mixed and matched across diverse use cases - from document processing to conversational AI
Infrastructure Foundation Core infrastructure components including VPC networking, access logging, and EventBridge integration
Observability & Monitoring Comprehensive monitoring, logging, and alerting with automatic property injection and Lambda Powertools integration
Data Masking Lambda 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:

Layer Implementation Type Purpose Key Features
Infrastructure Foundation Abstract base classes Shared infrastructure components and common services β€’ Standardized interfaces and contracts
β€’ Extensible foundation for custom implementations
General Use Case Implementation Concrete implementation classes Implementations for common patterns across industries β€’ Configurable parameters for different environments
β€’ Abstract method implementations with general-purpose solutions
Industry-Aligned Implementation Configured implementation examples Pre-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.

About

Library of use case-driven composable CDK solution blueprints to accelerate application development on AWS

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 7