Amazon Simple Storage Service(Amazon S3) is an object storage service commonly used for data analytics applications, machine learning, websites, and many more. To start programmatically working with Amazon S3, you must have an AWS account and install the AWS Software Development Kit (SDK) with the settled-up AWS credentials. This article will…
What is Azure Bastion and How to create it.
Introduction: Hello! In this blog, I will be explaining a detailed article on Azure Bastion and How to create azure bastion. I’m sure you’re familiar with RDP and SSH if you manage a remote server or virtual machine. RDP and SSH are both used to gain remote access to virtual…
Scheduling Email Notifications Using Timer Triggers in Azure Functions
A simple way to send email notifications from your Azure Function App using time trigger.
Creating EC2 instance using AWS Lambda and Boto3 Python SDK.
EC2 is the main computational element of the technological stack among the wide range of services that Amazon provides. By offering safe and scalable compute resources in the cloud, EC2 actually makes life simpler for developers. It substantially simplifies the process of scaling up or down, can be linked with…
Using API Gateway to trigger a Lambda function to send messages to the Queue
In this blog, I’ll show you how to incorporate several AWS services into a simple, serverless workflow. The idea is to create an SQS queue, then using an HTTP API to trigger a Lambda function that sends messages to the queue. What is serverless computing? Serverless computing is a means of offering on-demand backend services. Users may use…
Operations On Azure Blob using Python
In this blog, We’ll look at how to use Python to discard a file into an Azure Blob and copy it from one container to another. What are Blobs? Blobs are objects that can store large amounts of text or binary data such as images, documents, multimedia, and archive data.…
Extract Zip files in an S3 bucket using the Lambda function
How to extract Zip files from the S3 bucket to the target bucket using the Lambda function.
DynamoDB using Python SDK
In this blog post we will look at the working of the DynamoDB using Python SDK Boto3. I will be also covering the overview of DynamoDB and accessing the Dynamo DB using AWS Console, AWS CLI and finally through Python SDK. Also, we would be seeing a AWS service called…
Amazon Cloud Search
Amazon Cloud Search Set up, manage, and scale a search solution for your website or application. Amazon Cloud Search enables you to search large collections of data such as web pages, document files, forum posts, or product information. With a few clicks in the AWS Management Console, you can create…
Associating and disassociating AWS Elastic IP with EC2 Instance with Boto3
In this blog we are going to allocate an elastic IP and associate and disassociate it with an EC2 Instance by using AWS management console and boto3 python SDK. What are EC2 Instances: Amazon Elastic Compute Cloud – EC2 – a service offered by AWS allows users to rent virtual…