GitHub
github.com › aws-samples › aws-lambda-sample-applications
GitHub - aws-samples/aws-lambda-sample-applications: Sample code used to create serverless applications with AWS SAM in the Lambda console.
Sample code used to create serverless applications with AWS SAM in the Lambda console. - aws-samples/aws-lambda-sample-applications
Starred by 98 users
Forked by 85 users
Languages JavaScript 73.2% | TypeScript 26.8% | JavaScript 73.2% | TypeScript 26.8%
GitHub
github.com › aws › aws-lambda-go
GitHub - aws/aws-lambda-go: Libraries, samples and tools to help Go developers develop AWS Lambda functions. · GitHub
CGO_ENABLED=0 go build -o bootstrap main.go zip lambda-handler.zip bootstrap ... Windows developers may have trouble producing a zip file that marks the binary as executable on Linux. To create a .zip that will work on AWS Lambda, the build-lambda-zip tool may be helpful.
Starred by 3.8K users
Forked by 574 users
Languages Go
Videos
Deploying to AWS Lambda with Serverless + GitHub Actions ...
How to deploy a lambda function using github actions?
12:33
Deploy AWS Lambda Function using GitHub Actions CI CD | Lambda ...
CI/CD using Github + Github Actions + AWS Lambda
32:14
Create & Deploy AWS Lambda Function In Java Using GitHub Actions ...
GitHub
github.com › grantcooksey › aws-lambda-python-examples
GitHub - grantcooksey/aws-lambda-python-examples: Lessons and examples to get started using aws lambda function in python · GitHub
Spins up an aws compatible docker container with a volume mapped to the build folder · Installs dependencies into the fresh container using PyPI. Native dependencies get built here. We can locally run the lambda in a docker container to test.
Starred by 61 users
Forked by 41 users
GitHub
github.com › aws-samples › aws-lambda-extensions
GitHub - aws-samples/aws-lambda-extensions: A collection of sample extensions to help you get started with AWS Lambda Extensions · GitHub
Demo: Logs to Amazon S3 extension: zip archive: Demo logs extension to receive logs directly from Lambda and send them to S3, see the blog post Using AWS Lambda extensions to send logs to custom destinations. The demo is deployed using AWS SAM. Demo: Logs to Amazon S3 extension: container image : Demo logs extension to receive logs directly from Lambda and send them to S3. This example packages the extension and function as separate container images.
Starred by 486 users
Forked by 147 users
Languages Go 46.1% | Python 18.5% | Shell 11.3% | JavaScript 8.1% | Rust 7.6% | C# 4.2%
GitHub
github.com › shreyasgaonkar › aws-lambda-code-samples
GitHub - shreyasgaonkar/aws-lambda-code-samples: Lambda sample codes for EC2, Lambda, API Gateway and SNS in python runtime.
A few of the sample AWS Lambda function codes for common use-cases with Amazon EC2, AWS Lambda, API Gateway & Amazon SNS using Python runtime.
Starred by 29 users
Forked by 18 users
Languages Python 100.0% | Python 100.0%
GitHub
github.com › awsdocs › aws-lambda-developer-guide
GitHub - awsdocs/aws-lambda-developer-guide: Supplementary resources for the AWS Lambda Developer Guide · GitHub
sample-apps - Sample applications that demonstrate features and use cases for the AWS Lambda service and managed runtimes.
Starred by 2.6K users
Forked by 1.7K users
Languages Java 43.4% | Shell 29.0% | C# 13.6% | Python 5.9% | Go 3.5% | JavaScript 2.3%
GitHub
github.com › aws-samples › aws-lambda-deploy
GitHub - aws-samples/aws-lambda-deploy: A collection of tools to enable canary deployments of AWS Lambda functions.
$ export STATE_MACHINE_ARN=`aws cloudformation describe-stack-resources --stack-name aws-lambda-deploy-stack --logical-resource-id DeployStateMachine --output text | cut -d$'\t' -f3` $ aws stepfunctions start-execution --state-machine-arn $STATE_MACHINE_ARN --input '{ "function-name": "MyFunction", "alias-name": "MyAlias", "new-version": "2", "steps": 10, "interval": 120, "type": "linear"}'
Starred by 156 users
Forked by 59 users
Languages Python 92.9% | Shell 7.1% | Python 92.9% | Shell 7.1%
GitHub
github.com › dwyl › learn-aws-lambda
GitHub - dwyl/learn-aws-lambda: ✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
Sign in to the AWS management console, select your region in the top right hand corner and then open the AWS Lambda console. On the 'Learn to Build' section click on 'see all' and then select 'Run a Serverless "Hello World!"'. Select that you ...
Starred by 1K users
Forked by 202 users
Languages JavaScript 94.1% | Shell 5.9% | JavaScript 94.1% | Shell 5.9%
GitHub
github.com › aws-samples › lambda-refarch-webapp
GitHub - aws-samples/lambda-refarch-webapp: The Web Application reference architecture is a general-purpose, event-driven, web application back-end that uses AWS Lambda, Amazon API Gateway for its business logic. It also uses Amazon DynamoDB as its database and Amazon Cognito for user management. All static content is hosted using AWS Amplify Console.
This command takes your Lambda handler source code and any third-party dependencies, zips everything, and uploads the zip file to your Amazon S3 bucket. That bucket and file location are then noted in the packaged.yaml file.
Starred by 1.6K users
Forked by 912 users
Languages JavaScript 86.4% | Shell 6.6% | HTML 4.6% | CSS 2.4% | JavaScript 86.4% | Shell 6.6% | HTML 4.6% | CSS 2.4%
GitHub
github.com › aws-samples › aws-lambda-domain-model-sample
GitHub - aws-samples/aws-lambda-domain-model-sample: This is a sample project for implementing domain model objects on AWS Lambda function.
This is a sample project for implementing domain model objects on AWS Lambda function. - aws-samples/aws-lambda-domain-model-sample
Starred by 142 users
Forked by 11 users
Languages Python 96.3% | Shell 3.7% | Python 96.3% | Shell 3.7%
GitHub
github.com › aws-samples › aws-lambda-demo-with-node-express
GitHub - aws-samples/aws-lambda-demo-with-node-express · GitHub
The purpose of this repository is to demonstrate how to deploy a simple web application built by Express - Node.js web application framework on AWS Lambda.
Starred by 21 users
Forked by 20 users
Languages JavaScript 52.7% | HTML 47.3%
Amazon Web Services
docs.aws.amazon.com › aws lambda › developer guide › development tools for lambda › using github actions to deploy lambda functions
Using GitHub Actions to deploy Lambda functions - AWS Lambda
name: Deploy AWS Lambda on: push: branches: - main jobs: deploy: runs-on: ubuntu-latest permissions: id-token: write # Required for OIDC authentication contents: read # Required to check out the repository steps: - uses: actions/checkout@v4 - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: arn:aws:iam::123456789012:role/GitHubActionRole aws-region: us-east-1 - name: Deploy Lambda Function uses: aws-actions/aws-lambda-deploy@v1 with: function-name: my-lambda-function code-artifacts-dir: ./dist · This workflow runs when you push changes to th
GitHub
github.com › ran-isenberg › aws-lambda-handler-cookbook
GitHub - ran-isenberg/aws-lambda-handler-cookbook: This repository provides a working, deployable, open source-based, serverless service blueprint with an AWS Lambda function and AWS CDK Python code with all the best practices and a complete CI/CD pipeline. · GitHub
This project provides a working, open source based, AWS Lambda handler skeleton Python code includingx DEPLOYMENT code with CDK and a pipeline.
Starred by 670 users
Forked by 60 users
Languages Python 95.9% | Makefile 4.1%
GitHub
github.com › aws-samples › s3-to-lambda-patterns
GitHub - aws-samples/s3-to-lambda-patterns: Example applications for the S3-to-Lambda patterns series in the AWS Compute Blog and learning path. Questions? @jbesw.
Example applications for the S3-to-Lambda patterns series in the AWS Compute Blog and learning path. Questions? @jbesw. - aws-samples/s3-to-lambda-patterns
Starred by 222 users
Forked by 138 users
Languages JavaScript 100.0% | JavaScript 100.0%
GitHub
github.com › serverless › examples
GitHub - serverless/examples: Serverless Examples – A collection of boilerplates and examples of serverless architectures built with the Serverless Framework on AWS Lambda, Microsoft Azure, Google Cloud Functions, and more.
A Simple Serverless GraphQL API for MySQL, Postgres and Aurora This is an example project that uses 3 RDS databases to illustrate the differences between using each of them ... GraphQL query endpoint in NodeJS on AWS with DynamoDB A single-module GraphQL endpoint with query and mutation functionality. ... Node.js AWS Lambda connecting to Heroku Postgres Shows how to connect AWS Lambda to Heroku Postgres.
Starred by 11.5K users
Forked by 4.4K users
Languages JavaScript 31.5% | CSS 20.0% | Go 13.1% | Python 12.6% | TypeScript 8.1% | Ruby 4.4%
GitHub
github.com › aws-samples › aws-lambda-nextjs
GitHub - aws-samples/aws-lambda-nextjs: Sample application running Next.js application on Serverless services on AWS · GitHub
This example walks you through how to run a Next.js application on Serverless services on AWS. There is a sample AWS Cloud Development Kit (CDK) application and AWS Serverless Application Model (SAM) application. Either CDK or SAM create a demo environment showing how you can use Amazon API Gateway, AWS Lambda...
Starred by 103 users
Forked by 13 users
Languages JavaScript 62.6% | CSS 20.2% | TypeScript 16.4%
GitHub
github.com › awsdocs › aws-doc-sdk-examples › blob › main › python › example_code › lambda › lambda_basics.py
aws-doc-sdk-examples/python/example_code/lambda/lambda_basics.py at main · awsdocs/aws-doc-sdk-examples
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below. - aws-doc-sdk-examples/python/example_code/lambda/lambda_basics.py at main · awsdocs/aws-doc...
Author awsdocs
GitHub
github.com › aws-samples › aws-lambda-serverless-inference
GitHub - aws-samples/aws-lambda-serverless-inference: AWS CloudFormation and SAM templates for machine learning inference with AWS Lambda.
. ├── README.MD <-- This instructions file ├── 01-setup <-- Creates VPC, subnets and EFS file system │ └── create-efs-ec2-cfn.yml <-- CloudFormation template to creates VPC, subnets, EFS file system and EC2 ├── 02-train-code <-- Python code used to train breast cancel XGBoost Model │ └── requirements.txt <-- Python packages needed for the training and inference │ └── bc_xgboost_train.py <-- Python file used to train breast cancel XGBoost Model ├── 03-lambda-template <-- XGBoost inference function example to use VPC and EFS │ └── xgboost_i
Starred by 20 users
Forked by 7 users
Languages Python 100.0% | Python 100.0%
GitHub
github.com › aws › aws-lambda-dotnet
GitHub - aws/aws-lambda-dotnet: Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions. · GitHub
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions. - aws/aws-lambda-dotnet
Starred by 1.7K users
Forked by 498 users
Languages C# 77.1% | PowerShell 17.5% | HTML 2.2% | F# 2.2% | Dockerfile 0.6% | CSS 0.2%