Route53 is Amazon service for DNS management for both inside and outside AWS. It allows you to easily configure domain names to resolve to internal Service domain names. You can register domain names you already own or register through AWS. http://www.example.com → route53 ← EC2 app Route53 is core to letting users interact in AWS. … Continue reading AWS: Route53
Category: AWS
AWS: Relational Database Service – RDS
Relational Database Service also known as RDS is a collection of AWS services for managed relational databases. We call the database as managed because AWS takes care of: Scheduled automated backups Simple Software Backups Managed infrastructure for the database If your database is hosted on EC2 then you have to figure out about database backups, … Continue reading AWS: Relational Database Service – RDS
AWS: Simple Storage Service(S3)
Amazon Simple Storage Service known as S3 is used to store files. The max files size that can be stored is 5TB. The files can be stored in a structure called buckets. A bucket is your root resource in which you add, delete or modify objects. There are all sorts of configuration options that you … Continue reading AWS: Simple Storage Service(S3)
AWS: Elastic Cloud Compute – EC2
Elastic Cloud Compute known as the EC2 in short is one of the core service form AWS operating from multiple data centers around the world. What does EC2 do? EC2 is can be used to run applications, create virtual desktops, use 3rd party software with it and most importantly computing. What does "Elastic" mean basically? … Continue reading AWS: Elastic Cloud Compute – EC2
What is AWS?
AWS known as Amazon Web Services is the leading cloud service provided by Amazon. AWS is mainly used for developing applications that need to be scale quickly. Like the web application. AWS provides scalability and flexibility on which you can thrive on to develop apps. There are many services which are offered by AWS but … Continue reading What is AWS?
AWS Lex: Building a BOT
What are Chat Bots? Chat Bot is a service that runs on rules or Artificial intelligence The users interact using natural and conversational Language. Chat Bots are like your personal assistants that actually assist you. They can live in any chat applications like Slack, Facebook messenger, Skype etc. Common example: Weather Bots - fetches forecast, current … Continue reading AWS Lex: Building a BOT
Trigger an Email using AWS Lambda with the help of AWS SES
Using the Amazon Web Services to Trigger an email. Here we have used AWS SES service. Firstly you have to register senders email address in AWS SES app in AWS then after confirmation, you can use the SES service in Lambda. Node JS Code for Lambda: var aws = require("aws-sdk"); var ses = new aws.ses({ … Continue reading Trigger an Email using AWS Lambda with the help of AWS SES