Building a custom Alexa skill using AWS Lambda.
Tag: AWS
Amazon Alexa Skills Kit SDK using Python
To build our own skill using Alexa Skills Kit SDK using Python.
How To Create A Serverless REST API Gateway With Python And AWS Lambda
In this article, we’re going to create a REST API gateway endpoint which is going to invoke a lambda function and return JSON back to the client by doing the following: Creating a API Gateway and Lambda function. Establishing a connection between Lambda function and API gateway. Managing access to…
Blog 2: Copy an object from one AWS S3 Bucket to another S3 Bucket using Python SDK
In this article, we are going to take a look at how to copy an object from one AWS S3 Bucket to another S3 Bucket using Boto3 python software development kit (SDK). Terminologies AWS S3 bucket An Amazon S3 bucket is a public cloud storage resource available in Amazon Web Services’ (AWS)…
How to trigger a lambda function when a DynamoDB table is modified
This blog will take you through step-by-step instructions on how to trigger a lambda function when the records in the DynamoDB table are updated, created, or deleted on AWS. To follow along with this tutorial, you would need to set up an account with AWS. Instructions to set up an…
Lambda function triggered by an S3 PUT event to sort XML files in an S3 bucket
Serverless functions allow code to be delivered without you designating any infrastructure for the code to be hosted on. AWS Lambda is a FaaS (Function as a Service) platform that allows you to construct serverless functions. Go, Java, Ruby, Python2 and Python3 are just a few of the popular programming languages that AWS Lambda supports. In this blog, we will be using Python3.
Using python SDK to create S3 bucket, upload and download files from S3 bucket
This blog post will focus on creating the S3 bucket, uploading a file and downloading a file from the S3 bucket. AWS SDK for Python (Boto3) makes it easy to integrate your Python application to create, configure, and manage AWS services, such as Amazon Elastic Compute Cloud (Amazon EC2) and…
Scheduling EC2 Instances with Lambda Function in AWS
Amazon Web Services (AWS) provides a wide range of services and tools to help businesses of all sizes succeed in the cloud. One of those services is Amazon EC2, a virtualized computing environment that allows users to deploy and manage applications quickly. One of the features of EC2 is the…
Creating Automated Image Resizing with Python and Serverless Functions
In today’s digital world, image processing and manipulation are becoming more critical. Resizing images to fit different designs, applications, and other needs is often necessary. Manual resizing images can be a tedious and time-consuming task. Fortunately, there is a way to automate the process using serverless technology and Python.
Implementing AWS IAM using AWS python SDK boto3
Hey folks, you created an IAM user in the initial period in your AWS account. AWS users can be added, their rights can be managed, new policies can be made, and much more with the help of IAM (Identity & Access Management). In this article, you will learn how to…