Skip to main content

Posts

Showing posts with the label lambda

Stay Up to Date with Daily AWS Updates Delivered to Your Inbox

Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Keeping up with the latest features and updates in Amazon Web Services (AWS) can be challenging. AWS releases new features and updates… Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Keeping up with the latest features and updates in Amazon Web Services (AWS) can be challenging. AWS releases new features and updates regularly, which can sometimes be difficult to keep track of. Fortunately, there’s an easy way to stay up to date with AWS feature releases — Amazon Simple Notification Service (SNS). In this article, we’ll take a closer look at how you can use Amazon SNS to subscribe to AWS daily feature updates. Amazon SNS is a fully managed messaging service that allows you to send messages to a large number of subscribers through a variety of transport protocols, including email, SMS, and HTTP/HTTPS. You can use Amazon SNS to send notificat...

AWS Lambda Function URLs

AWS Lambda Function URLs AWS Lambda Function URLs AWS Lambda is a Serverless computing service offered by Amazon Web Services (AWS) that allows developers to run code without provisioning… AWS Lambda Function URLs AWS Lambda AWS Lambda is a Serverless computing service offered by Amazon Web Services ( AWS ) that allows developers to run code without provisioning or managing servers. In this tutorial, we will explore AWS Lambda Function URLs , which are the endpoints that allow you to invoke your Lambda functions. AWS Lambda Function URLs are unique HTTP endpoints that you can create using AWS Console, SDK or any other IaC tool. These URLs are used to trigger your Lambda function, and they can be integrated with a variety of workloads. Function URLs are dual stack-enabled, supporting IPv4 and IPv6. After you configure a function URL for your function, you can invoke your function through its HTTP(S) endpoint via a web browser, curl, Postman, or any HTTP client. Once you create ...

Opt-out For AWS Lambda Updates. Why and how?

Opt Out For AWS Lambda Updates. Why and how? Opt Out For AWS Lambda Updates. Why and how? AWS Lambda is a Serverless computing platform that enables users to run code without having to manage servers. It provides a fully managed… Opt Out For AWS Lambda Updates. Why and how? AWS Lambda is a Serverless computing platform that enables users to run code without having to manage servers. It provides a fully managed environment for executing your code, which includes runtime, operating system, and system libraries. The AWS Lambda execution environment is the environment in which your Lambda function code is executed. It is an isolated environment that has its own resources and dependencies, and it runs on Amazon Linux, a distribution of Linux specifically designed for cloud computing. AWS Lambda automatically patches the underlying infrastructure for your functions, so you don’t have to worry about managing operating system or runtime updates. This includes security patches for the ...

Create Your Own Wake-up Call Service with AWS Pinpoint, Lambda and CDK

Create Your Own Wake-Up Call Service With AWS Pinpoint, Lambda and CDK Create Your Own Wake-Up Call Service With AWS Pinpoint, Lambda and CDK Wake-up call service is exactly what you would imagine, someone will call you to wake you up and make sure that you are awake. It is still… Create Your Own Wake-Up Call Service With AWS Pinpoint, Lambda and CDK Wake-up call service is exactly what you would imagine, someone will call you to wake you up and make sure that you are awake. It is still a common practice in hotels where hotel employees will wake you up via phone call. In this tutorial, we are going to build our own version using AWS Pinpoint, Lambda and CDK. If you haven’t heard the term CDK, it means Cloud Development Kit. It is a modern Infrastructure as a Code tool from AWS, it allows us to use common programming languages to provision cloud resources. We will be using AWS Pinpoint to make outbound phone calls, Lambda function to execute Pinpoint API call to initiate an outbo...

URL Shortener with DocumentDb(MongoDB Compatible), Lambda and CDK

Create and Deploy Simple URL Shortener with AWS CDK and DocumentDB Create and Deploy Simple URL Shortener with AWS CDK and DocumentDB In this tutorial we will walk you through creating and deploying a simple URL shortener application using AWS CDK, DocumentDB, Lambda and… Create a Simple URL Shortener with AWS CDK and DocumentDB In this tutorial, we will walk you through creating and deploying a simple URL shortener application using AWS CDK , DocumentDB , Lambda and API Gateway . DocumentDB is a document database which is fully compatible with MongoDB 3.6 API . DocumentDB takes lots of inspiration from other AWS Database Services, in which storage and compute layers are separated. This allows fairly simple scalability and high-performance throughput. CDK is a new way to manage AWS resources using common programming languages. Let’s get started. In case you haven’t installed AWS CDK yet, here is how to do it. npm install -g aws-cdk Let’s build the application logic first This ...