In Use case description, explain how you plan to use Amazon SES to send email. To help us process your request, you should answer the following questions:How do you plan to build or acquire your mailing list?How do you plan to handle bounces and complaints?How …
AWS

S3 bucket with NodeJS
Here we will learn how to implement S3 bucket in our code. The first thing that we need is to create an account in AWS service. Follow this link in order to create S3 bucket. First we need to install some npm: $ npm install express …

Setup AWS EC2 Instance
here are several ways to get started with Amazon EC2. You can use the AWS Management Console, the AWS Command Line Tools (CLI), or AWS SDKs. Step 1: Set up and log into your AWS account Log in to the AWS Management Console and set up your …
AWS: Useful terminal commands
SSH connection using PEM file $ ssh -l ABC.pem username@53.0.111.225 IMPORT mysql db to AWS from local system $ mysql -u username -h hostname -p dbname < dbfile.sql EXPORT mysql db $ mysqldump -h hostname -u username -p db > dbfile.sql Transfer file via ssh …