MIKAEELS>_
Browsing articles tagged

#Lambda

10 articles found with this tag

Importing Existing VPC in AWS CDK

Managing network infrastructure efficiently is crucial for deploying scalable and secure applications on AWS. AWS Cloud Development Kit (CDK) offers a powerful way to define cloud infrastructure using familiar programming languages. This guide provid...

Read more

Provisioning a Lambda Function in a VPC with Internet Access Using AWS CDK

In today's cloud architectures, securing your resources within a Virtual Private Cloud (VPC) while maintaining necessary internet access is a common requirement. AWS Lambda functions, by default, do not have internet access when placed in a VPC, whic...

Read more

Implementing S3 Bucket Policies Using AWS CDK

In this blog post, we will explore how to implement S3 bucket policies using AWS CDK (Cloud Development Kit). We'll cover two approaches: explicit and implicit. By the end of this guide, you will understand how to create S3 bucket policies in a struc...

Read more

What is Context and its Significance in AWS CDK

Amazon Web Services Cloud Development Kit (AWS CDK) is a powerful infrastructure-as-code (IaC) framework that allows developers to define cloud infrastructure using familiar programming languages. One essential concept within AWS CDK that plays a cru...

Read more

Automating AWS CodePipeline Notifications to Discord Using Lambda and Terraform

Introduction In DevOps, continuous integration and delivery (CI/CD) pipelines are integral for efficient software development. AWS CodePipeline facilitates the orchestration of these pipelines, but keeping track of pipeline executions in real time ca...

Read more

How to use npm modules in AWS Lambda

When it comes to incorporating npm modules into your AWS Lambda functions, there are two primary approaches to consider: Direct Inclusion: This method involves directly zipping the node_modules directory along with your app.js handler file. It's a s...

Read more

Building an AWS AppSync Serverless Application using AWS CDK

In this blog post, we will explore how to build a serverless application using AWS AppSync and AWS Cloud Development Kit (CDK). We will create a simple note-taking application with Create and Read functionality, powered by AWS AppSync, AWS Lambda, an...

Read more

How to Deploy Dockerized AWS Lambda Using AWS CDK

In this blog post, we'll explore a step-by-step guide on how to deploy Dockerized AWS Lambda functions using the AWS Cloud Development Kit (CDK) with TypeScript. AWS CDK, a software development framework for defining cloud infrastructure in code, has...

Read more

Build serverless applications with AWS CDK

Serverless computing is becoming an increasingly popular way to develop and deploy applications. With serverless, developers can focus on writing code and not worry about the underlying infrastructure. AWS Lambda and API Gateway are two popular AWS s...

Read more

What is AWS CDK (Cloud Development Kit)

The AWS CDK (Cloud Development Kit) is an open-source software development framework that allows developers to design, compose, and share cloud infrastructure in a familiar programming language. With the AWS CDK, you can design, compose, and share cl...

Read more