際際滷

際際滷Share a Scribd company logo
Continuous Deployment in AWS Lambda
Suiting Tseng (@suitingtseng)
Who am I
class SoftwareEngineer(Human):
def __init__(self):
self.interests = [
"AWS"
]
self.languages = [
"Python",
"Golang"
]
KKStream
We back you up to compete against 

Net鍖ix, Spotify, and KKBOX.
Outline
 AWS Lambda Introduction

 Lambda Deployer

 Adoption in KKStream
What is AWS
Lambda?
AWS
AWS Lambda is a zero-administration compute
platform for back-end web developers that runs
your code for you in the AWS cloud and provides
you with a 鍖ne-grained pricing structure.
AWS
AWS Lambda runs your back-end code on its own
AWS compute 鍖eet of Amazon Elastic Compute
Cloud (Amazon EC2) instances across multiple
Availability Zones in a region, which provides the
high availability, security, performance, and
scalability of the AWS infrastructure.
Cloud Computing in AWS
 Elastic Compute Cloud (EC2)

 Infrastructure as a Service

 Abstract hardware
Cloud Computing in AWS
 Elastic Compute Cloud (EC2)

 EC2 Container Service (ECS)

 Container as a Service

 Abstract OS
Cloud Computing in AWS
 Elastic Compute Cloud (EC2)

 EC2 Container Service (ECS)

 AWS Lambda

 Function as a Service

 Serverless
Lambda Runtime
 Python 2.7

 Java OpenJDK 1.8

 Node.js v0.10.36, v4.3.2
Hello World
#	lambda_function.py	
def	lambda_handler(event,	context):	
				print	Hello,	PyCon!
Event & Context
 Event

 What happen? S3? DynamoDB?

 Context

 How much time remaining?
Execution model
 Synchronous

 Event driven
Execution model
 Synchronous

 Event driven
Sync. Call
 AWS SDK

 AWS API Gateway
Sync. Call
 AWS SDK

 AWS API Gateway
AWS SDK
import boto3
boto3.client("lambda").invoke(
FunctionName="hello-world"
)
Sync. Call
 AWS SDK

 AWS API Gateway
API Gateway Lambda
GET	/videos/123
API Gateway Lambda
API Gateway calls Lambda
API Gateway Lambda
Lambda retrieve data from somewhere
API Gateway Lambda
Lambda response
API Gateway Lambda
200	OK	
{	
		name:	 ,	
		characters:	[ ...],	
			
}
API Gateway Lambda
Lambda	scales	automatically
Execution model
 Synchronous

 Event driven
Event driven
 Event sources

 S3

 Scheduled Event

 DynamoDB

 and many more
raw thumbnailLambda
Users upload their photo
raw thumbnailLambda
S3 triggers Lambda
raw thumbnailLambda
Lambda resizes the image,
and put it to another bucket
S3 event
1 def lambda_handler(event, context):
2 s3 = boto3.client('s3')
3
4 bucket = event['Records'][0]['s3']['bucket']['name']
5 key = event['Records'][0]['s3']['object']['key']
6 print "S3 Bucket: %s" % bucket
7 print "S3 Key: %s" % key
8
Lambda usage
 HTTP API backend

 Worker

 Cronjob
Version and Alias
 Version

 1, 2, 3, 4 .

 Incremental integer

 Immutable

 Alias

 feature -> 4

 testing -> 8

 Mutable
Outline
 AWS Lambda Introduction

 Lambda Deployer

 Adoption in KKStream
Problem
 So you wanna deploy

 Upload a zip to S3

 Create or update function

 Con鍖gure version

 Create or update alias

 And you may have 100+ functions
Our goal
push
Our goal
notify
Deploy pipeline
git	push	origin	master
Deploy pipeline
HTTP webhook
Deploy pipeline
1. Build dependency
2. Testing
3. Package
4. Upload to S3
Deploy pipeline
Triggers Lambda Deployer
Lambda deployer is also a Lambda function!
Behind the scene - 1
packages/	
		my-func-1/	
		my-func-2/	
		my-func-3/
Behind the scene - 2
packages/	
		my-func-1/	
				bfb53884976e70966a9e8a8d5133bcb2e1c06691/	
				eed8ccf9ea22099cef07b0a2012085cd45e1d3ad/
Behind the scene - 3
packages/	
		my-func-1/	
				bfb53884976e70966a9e8a8d5133bcb2e1c06691/	
						lambda.zip	
						function.json
function.json
{	
				"runtime":	"python2.7",	
				"handler":	"main.lambda_handler",	
				"timeout":	300,	
				"memory":	128	
}
Behind the scene - 4
packages/	
		my-func-1/	
				bfb53884976e70966a9e8a8d5133bcb2e1c06691/	
				eed8ccf9ea22099cef07b0a2012085cd45e1d3ad/	
				testing
Deploy pipeline
Create / update function
Publish new version
Update alias
deployer.py
class Deployer(object):
def __init__(self):
self.s3_client = boto3.client("s3")
self.lambda_client = boto3.client("lambda")
self.slack = Slacker(open("config/slack-token").read())
self.slack_channel = json.load(open("config/slack.json"))
deployer.py
1 class Deployer(object):
2
3 def deploy(self, record):
4 bucket = record["s3"]["bucket"]["name"]
5 key = record["s3"]["object"]["key"]
6
7 lambda_function = LambdaFunction(bucket, key)
8 version = self.put_function(lambda_function)
9 self.put_alias(lambda_function, version)
main.py
1 import boto3, json
2 from deployer import Deployer
3
4 def run(event, context):
5 d = Deployer()
6 print "boto3 version:", boto3.__version__
7 print json.dumps(event, indent=2)
8 for record in event["Records"]:
9 d.deploy(record)
Pros
 Serverless (yes we are lazy)

 One deployer manages

 many functions

 many stages (using alias)

 Perfectly 鍖ts in our work鍖ow
In KKStream
 From 2016/02/01 to 2016/05/31

 12 developers

 99 functions

 4288 deployments

 1 fork
In KKStream
 Deploy itself 56 times ( code )

 failed several times

 but very easy to rollback
Future work
 Add event source mapping

 More con鍖gurations

 https://github.com/KKStream/aws-lambda-deployer
Q & A
Were hiring!
Meet us at our booth 

on 4th 鍖oor!
Thank you!

More Related Content

What's hot (14)

Aws cloud best_practices
Aws cloud best_practicesAws cloud best_practices
Aws cloud best_practices
Suruli Kannan
AWS Serverless Introduction (Lambda)
AWS Serverless Introduction (Lambda)AWS Serverless Introduction (Lambda)
AWS Serverless Introduction (Lambda)
Ashish Kushwaha
AWS - Lambda Fundamentals
AWS - Lambda FundamentalsAWS - Lambda Fundamentals
AWS - Lambda Fundamentals
Piyush Agrawal
aws lambda & api gateway
aws lambda & api gatewayaws lambda & api gateway
aws lambda & api gateway
fumihiko hata
Amazon Elastic Block Storage and Balancer
Amazon Elastic Block Storage and BalancerAmazon Elastic Block Storage and Balancer
Amazon Elastic Block Storage and Balancer
Whizlabs
Serverless Architectures on AWS Lambda
Serverless Architectures on AWS LambdaServerless Architectures on AWS Lambda
Serverless Architectures on AWS Lambda
Serhat Can
AWS Lambda Tutorial
AWS Lambda TutorialAWS Lambda Tutorial
AWS Lambda Tutorial
Whizlabs
AWS Lambda
AWS LambdaAWS Lambda
AWS Lambda
Danilo Poccia
Serverless computing
Serverless computingServerless computing
Serverless computing
Dmitriy Ivanov
Serverless Computing
Serverless Computing Serverless Computing
Serverless Computing
Rushi Namani
AWS Lambda Documentation
AWS Lambda DocumentationAWS Lambda Documentation
AWS Lambda Documentation
Whizlabs
AWS Serverless concepts and solutions
AWS Serverless concepts and solutionsAWS Serverless concepts and solutions
AWS Serverless concepts and solutions
ElenaIvannikova3
AWS Lambda Features and Uses
AWS Lambda Features and UsesAWS Lambda Features and Uses
AWS Lambda Features and Uses
GlobalLogic Ukraine
Intro To Serverless Architectures
Intro To Serverless ArchitecturesIntro To Serverless Architectures
Intro To Serverless Architectures
Adi Challa
Aws cloud best_practices
Aws cloud best_practicesAws cloud best_practices
Aws cloud best_practices
Suruli Kannan
AWS Serverless Introduction (Lambda)
AWS Serverless Introduction (Lambda)AWS Serverless Introduction (Lambda)
AWS Serverless Introduction (Lambda)
Ashish Kushwaha
AWS - Lambda Fundamentals
AWS - Lambda FundamentalsAWS - Lambda Fundamentals
AWS - Lambda Fundamentals
Piyush Agrawal
aws lambda & api gateway
aws lambda & api gatewayaws lambda & api gateway
aws lambda & api gateway
fumihiko hata
Amazon Elastic Block Storage and Balancer
Amazon Elastic Block Storage and BalancerAmazon Elastic Block Storage and Balancer
Amazon Elastic Block Storage and Balancer
Whizlabs
Serverless Architectures on AWS Lambda
Serverless Architectures on AWS LambdaServerless Architectures on AWS Lambda
Serverless Architectures on AWS Lambda
Serhat Can
AWS Lambda Tutorial
AWS Lambda TutorialAWS Lambda Tutorial
AWS Lambda Tutorial
Whizlabs
Serverless computing
Serverless computingServerless computing
Serverless computing
Dmitriy Ivanov
Serverless Computing
Serverless Computing Serverless Computing
Serverless Computing
Rushi Namani
AWS Lambda Documentation
AWS Lambda DocumentationAWS Lambda Documentation
AWS Lambda Documentation
Whizlabs
AWS Serverless concepts and solutions
AWS Serverless concepts and solutionsAWS Serverless concepts and solutions
AWS Serverless concepts and solutions
ElenaIvannikova3
Intro To Serverless Architectures
Intro To Serverless ArchitecturesIntro To Serverless Architectures
Intro To Serverless Architectures
Adi Challa

Similar to Continuous Deployment in AWS Lambda (17)

Hands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud DevelopersHands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud Developers
Meetu Maltiar
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
Pawe Pikua
An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)
Julien SIMON
結 螳覦襯 襭 企殊磯 磯旧 襭
 結 螳覦襯  襭 企殊磯 磯旧 襭 結 螳覦襯  襭 企殊磯 磯旧 襭
結 螳覦襯 襭 企殊磯 磯旧 襭
Amazon Web Services Korea
AWS re:Invent 2020 Serverless Recap
AWS re:Invent 2020 Serverless RecapAWS re:Invent 2020 Serverless Recap
AWS re:Invent 2020 Serverless Recap
Daniel Zivkovic
IaC on AWS Cloud
IaC on AWS CloudIaC on AWS Cloud
IaC on AWS Cloud
Bhuvaneswari Subramani
DevOps, Microservices and Serverless Architecture
DevOps, Microservices and Serverless ArchitectureDevOps, Microservices and Serverless Architecture
DevOps, Microservices and Serverless Architecture
Mikhail Prudnikov
Serverless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best PracticesServerless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best Practices
Daniel Zivkovic
Introduction to AWS
Introduction to AWSIntroduction to AWS
Introduction to AWS
Angel Borroy L坦pez
Serverless computing with AWS Lambda
Serverless computing with AWS Lambda Serverless computing with AWS Lambda
Serverless computing with AWS Lambda
Apigee | Google Cloud
A 60-mn tour of AWS compute (March 2016)
A 60-mn tour of AWS compute (March 2016)A 60-mn tour of AWS compute (March 2016)
A 60-mn tour of AWS compute (March 2016)
Julien SIMON
Infrastructure as Code on AWS
Infrastructure as Code on AWSInfrastructure as Code on AWS
Infrastructure as Code on AWS
Bhuvaneswari Subramani
Introduction to DevOps on AWS
Introduction to DevOps on AWSIntroduction to DevOps on AWS
Introduction to DevOps on AWS
Shiva Narayanaswamy
Symfony aws
Symfony awsSymfony aws
Symfony aws
Alessandro Minoccheri
Serverless Culture
Serverless CultureServerless Culture
Serverless Culture
AWS User Group Bengaluru
Build an app on aws for your first 10 million users (2)
Build an app on aws for your first 10 million users (2)Build an app on aws for your first 10 million users (2)
Build an app on aws for your first 10 million users (2)
AWS Vietnam Community
貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015
貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015
貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015
Amazon Web Services Korea
Hands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud DevelopersHands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud Developers
Meetu Maltiar
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
Pawe Pikua
An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)
Julien SIMON
AWS re:Invent 2020 Serverless Recap
AWS re:Invent 2020 Serverless RecapAWS re:Invent 2020 Serverless Recap
AWS re:Invent 2020 Serverless Recap
Daniel Zivkovic
DevOps, Microservices and Serverless Architecture
DevOps, Microservices and Serverless ArchitectureDevOps, Microservices and Serverless Architecture
DevOps, Microservices and Serverless Architecture
Mikhail Prudnikov
Serverless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best PracticesServerless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best Practices
Daniel Zivkovic
Serverless computing with AWS Lambda
Serverless computing with AWS Lambda Serverless computing with AWS Lambda
Serverless computing with AWS Lambda
Apigee | Google Cloud
A 60-mn tour of AWS compute (March 2016)
A 60-mn tour of AWS compute (March 2016)A 60-mn tour of AWS compute (March 2016)
A 60-mn tour of AWS compute (March 2016)
Julien SIMON
Introduction to DevOps on AWS
Introduction to DevOps on AWSIntroduction to DevOps on AWS
Introduction to DevOps on AWS
Shiva Narayanaswamy
Build an app on aws for your first 10 million users (2)
Build an app on aws for your first 10 million users (2)Build an app on aws for your first 10 million users (2)
Build an app on aws for your first 10 million users (2)
AWS Vietnam Community
貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015
貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015
貉危 觜 一危 - EC2, ECS, Lambda (蟾) :: re:Invent re:Cap Webinar 2015
Amazon Web Services Korea

Recently uploaded (20)

Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
alibajava70
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Eric D. Schabell
View Companion Premium 15.40 Crack Free Download 2025
View Companion Premium 15.40 Crack Free Download 2025View Companion Premium 15.40 Crack Free Download 2025
View Companion Premium 15.40 Crack Free Download 2025
asghar045kp
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
Distributed systems: design, principles and experiencies
Distributed systems: design, principles and experienciesDistributed systems: design, principles and experiencies
Distributed systems: design, principles and experiencies
Andr辿s P辿rez Gil
Clip Studio Paint EX Crack 3.1.0 Free 2025 Version
Clip Studio Paint EX Crack 3.1.0 Free 2025 VersionClip Studio Paint EX Crack 3.1.0 Free 2025 Version
Clip Studio Paint EX Crack 3.1.0 Free 2025 Version
alihamzakpa023
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
Imma Valls Bernaus
Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025
shahg123tt
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptxShopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Michael Foster
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution
TECH EHS Solution
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
Unveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptxUnveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptx
Michael Chen
Top Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become VendorTop Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become Vendor
Kevin Miller
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
alibajava70
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Eric D. Schabell
View Companion Premium 15.40 Crack Free Download 2025
View Companion Premium 15.40 Crack Free Download 2025View Companion Premium 15.40 Crack Free Download 2025
View Companion Premium 15.40 Crack Free Download 2025
asghar045kp
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
Distributed systems: design, principles and experiencies
Distributed systems: design, principles and experienciesDistributed systems: design, principles and experiencies
Distributed systems: design, principles and experiencies
Andr辿s P辿rez Gil
Clip Studio Paint EX Crack 3.1.0 Free 2025 Version
Clip Studio Paint EX Crack 3.1.0 Free 2025 VersionClip Studio Paint EX Crack 3.1.0 Free 2025 Version
Clip Studio Paint EX Crack 3.1.0 Free 2025 Version
alihamzakpa023
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
Imma Valls Bernaus
Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025
shahg123tt
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptxShopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Michael Foster
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution
TECH EHS Solution
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
Unveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptxUnveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptx
Michael Chen
Top Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become VendorTop Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become Vendor
Kevin Miller

Continuous Deployment in AWS Lambda