Amazon elastic cloud computing is used to create cloud virtual instances and many other operations related to the servers like backup, security, maintaining and monitoring the servers. This can be configured both in console and also aws-cli.
AWS – CONSOLE
- Sign in to the console using log on credentials and access ec2 under services.
ec2 > Instances > Launch instance> select the desired ami image and follow on screen commands to launch an instance.ec2 > Instances > Actions > Instance state > Terminate// To terminate the instances.ec2 > Instances > Launch Instances> look after the predefined or self created ami images.

AWS – CLI
aws configure> sign in using access key ID and secret access key ID.aws ec2 run-instances --image-id ********* --count 1 --instance-type t2.micro --key-name **** --security-group-id ****// To launch an instance.aws ec2 describe-instances --instance-id ****// To check the status and details of the instance.aws ec2 terminate-instances --instance-ids ****// To terminate the instance and results as shown.

aws ec2 describe-images --owners self amazon --filters "Name=platform,Values=Windows// To search for a numerous amount of windows platformed ami images.
Upcoming..
More comparisons between aws-cli and aws console environment.



















