Mobile push notifications are a useful tool for businesses to stay in touch with their customers and keep them informed about important updates, special offers, and other relevant information. Amazon Simple Notification Service (SNS) is a popular choice for sending push notifications to mobile devices, and Firebase can be used…
Category: Topics
A collection of topics in cloud computing.
AWS – SQS vs. SNS
Amazon Simple Queue Service (SQS) and Amazon Simple Notification Service (SNS) are two of the most popular cloud-based services available on Amazon Web Services (AWS). SQS is a message queue service that allows applications to exchange messages and SNS is a notification service used to send alert messages. Both offer…
Trigger Lambda Function Using Amazon EventBridge and Configure Alert through AWS SNS email notifications for a simple Bitcoin Price tracker
Have you ever wondered 🤔 how you can schedule Lambda functions in an easy way? well in many situations you need lambda functions running some background jobs in scheduled intervals or in specific days In this blog, will see how to tackle this task using Amazon EventBridge, from which we can easily…
The Ultimate Guide To Hitting Storefront Application APIs Using Postman
In this exercise, you use postman to hit the demo application(storefront) APIs which are written using the Python Django REST framework. For this exercise, I have used Azure Cloud Service and a similar methodology can be followed for AWS. Prerequisites You have to complete hop1 Azure and hop2 Azure Why…
Microsoft Azure – Machine Learning
This is post – 3 of the Machine Learning services – AWS vs Azure. This post contains hands-on on creating a workspace, importing data, testing and training the model in Azure. Run your notebook: Sign into Machine Learning Studio. Select your workspace, if it isn’t already open. On the left,…
Making .sh file in AWS CloudShell
What is AWS CloudShell? AWS CloudShell is an easy-to-use cloud computing service to deploy and manage your other cloud services inside of a CLI (Command Line Interface). It is an effective way to manage your AWS cloud applications and infrastructure in a large-scale environment. CloudShell helps to streamline the process…
Amazon Web Services – SageMaker
This is the post – 2 of the Machine Learning services – AWS vs Azure. This post contains hands-on on creating a workspace, importing data, testing and training the model in AWS. Steps to initialize notebook instance in SageMaker:Â Login to AWS Console using AWS Credentials. In the left panel,…
Scheduling Amazon Athena Query using AWS Lambda, EventBridge, and Boto3
How to schedule AWS Athena queries using Amazon EventBridge, AWS Lambda, and Boto3 by AWS Python SDK
Serverless Mass Emailing with AWS Lambda
AWS Lambda is a robust event-driven platform for serverless use-cases, one of which may be mass emailing. We will walk through the creation of such a function on AWS. We want to facilitate this sequence of events: A user uploads a .csv file with email data to cloud storage (we’ll…
Segregating files in AWS S3 Bucket using Lambda
Overview There are 5 steps to fulfil the exercise Create an S3 bucket. Create a Lambda function and add an s3 trigger to it. Update the S3 event notifications. Creating IAM roles to access and alter S3 bucket objects using lambda. Implement the logic to segregate files in the s3…