aws/serverless-application-model

The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 52 minutes ago
Added to GitGenius on September 6th, 2026
Created on October 10th, 2016
Open Issues & Pull Requests: 111 (+0)
GitHub issues: Enabled
Number of forks: 2,463
Total Stargazers: 9,562 (+0)
Total Subscribers: 272 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 9.9 days
Mean response time: 61.6 days
90th percentile: 192.3 days
Tracked items: 82

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 100% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "type/bug" is answered fastest, typically in about 24 hours, while "type/feature" waits about 3 weeks. Only 3% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 40
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,066 days
Stale 30+ days: 36
Stale 90+ days: 29

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • stage/needs-triage (22)
  • type/feature (20)
  • type/bug (13)
  • contributors/welcome (9)
  • contributors/good-first-issue (7)
  • stage/needs-investigation (7)
  • maintainer/need-followup (6)
  • maintainer/need-response (6)

Most active issues this week

Detailed Description

AWS Serverless Application Model (AWS SAM) is a CloudFormation macro that transforms simplified SAM templates into full CloudFormation templates for deploying serverless applications.

AWS SAM addresses the verbosity and complexity of writing raw CloudFormation templates for serverless workloads. It provides a shorthand syntax for defining Lambda functions, APIs, databases, and other serverless resources with built-in best practices and sensible defaults. When you add the SAM transform declaration to a template, the macro expands your concise resource definitions into the complete CloudFormation configuration needed for deployment, handling the boilerplate automatically.

Teams building serverless applications on AWS should adopt SAM if they want to reduce template complexity and accelerate development cycles. It suits projects of any scale that use Lambda, API Gateway, DynamoDB, or other AWS serverless services. The tool integrates with the SAM CLI for local testing and debugging before deployment, which is essential for rapid iteration. SAM is the natural choice for AWS-native serverless development; it is maintained by AWS and designed specifically for this use case rather than being a general-purpose infrastructure-as-code tool.

The project maintains active engagement with its community through GitHub issues and discussions as the primary support channels, supplemented by a dedicated Slack community. Development follows a structured approach with clear contribution guidelines and a dedicated development guide for those setting up local environments. The codebase is written in Python and requires Python 3.8 or later for development work.