Wednesday 28 March 2018

AWS Tutorial Terminology page 2

AWS Tutorial Terminology page 2

Question: What Is AWS Media Services?
AWS Media Services are a family of fully-managed services that make it easy to build reliable, broadcast-quality video workflows in the Cloud.


Question: What Is Amazon Simple Notification Service(SNS)?
Amazon Simple Notification Service is a notification service provided by AWS.
It provides a low-cost infrastructure for the mass delivery of messages, predominantly to mobile users.
It can send notification for below
  1. Mobile Push Notifications
  2. SMS
  3. Email
  4. Http/Https
  5. SQS
  6. Lambda functions



Question: What Is Amazon Simple Queue Service (SQS)?
Amazon Simple Queue Service message queuing service that makes it easy to decouple and scale microservices, distributed systems, and serverless applications.
With SQS you can send, store, and receive messages between software components without losing messages to be always available.


Question: What Is Amazon SWF?
Amazon SWF helps developers build, run, and scale background jobs that have parallel or sequential steps.


Question: What is CloudFormation?
AWS CloudFormation provides a common language to describe and provision all the infrastructure resources in your cloud environment.
It allows you to use a simple text file to model and provision, in an automated and secure manner, all the resources needed for your applications across all regions.


Question: What are difference between cloudtrail and cloudwatch?
CloudTrail:
  1. It helps to visibility into your user and resource activity by recording AWS API calls.
  2. Used to log the API calls across your AWS infrastructure.
  3. it keeps the history of API calls of your account, AWS Management console, AWS SDKs, command line tools, and every other AWS services etc.

CloudWatch:
  1. it monitoring service for AWS cloud resources and the applications you run on AWS
  2. Collect and track metrics.
  3. System-wide visibility into resource utilization, application performance, and operational health.



Question: What is Sagemaker?
We use Sagemaker to Build, train, and deploy machine learning models & algorithms at scale.


Question: What is Amazon athena?
Amazon Athena is a serverless, interactive query service that makes it easy to analyze big data in S3 using standard SQL.


Question: What is System manager?
AWS Systems Manager gives you visibility and control of your infrastructure on AWS.


Question: What is Amazon EMR?
Amazon EMR provides a managed Hadoop framework that makes it easy, fast, and cost-effective to process vast amounts of data across dynamically scalable Amazon EC2 instances.


Question: What is Amazon CloudSearch?
Amazon CloudSearch is a fully-managed search service in the AWS Cloud that lets you easily integrate fast and highly scalable search functionality into your apps.


Question: What is Amazon Kinesis?
Amazon Kinesis Data Streams enables you to build custom applications that process or analyze streaming data for specialized needs.


Question: What is Amazon QuickSight?
Amazon QuickSight is a fast, cloud-powered business analytics service that makes it easy to build visualizations, perform ad-hoc analysis, and quickly get business insights from your data


Question: What does an AWS Region consist of?
An independent collection of AWS computing resources in a defined geography.


Question: What is Elastic Map Reduce?
Amazon EMR processes big data across a Hadoop cluster of virtual servers on Amazon Elastic Compute Cloud (EC2) and Amazon Simple Storage Service (S3).


Question: How to Install AWS command line in Winows
  1. Download the installer from https://aws.amazon.com/cli/
  2. After download, install the software in windows.
  3. Now, Go to windows command line.
  4. In command prompt type
     aws configure
     
    It will ask AWS access key, and Secret key.
  5. for Region Name and Default format just enter key.



Question: How to configure Aws in console?
aws configure

Question: How to get list configured aws account?
aws configure list



Question: How to list name of all the bucket?
aws s3 ls



Question: How to list all the files in S3 Bucket?
aws s3 ls s3://mybucket



Question: How to list all the files recursively in S3 Bucket?
aws s3 ls s3://mybucket --recursive


v Question: How to Rename a file?
aws s3 mv s3://mybucket/filename.png  s3://mybucket/newname.png 



Question: What is EBS?
Full form of EBS is Amazon Elastic Block Store.
It provides persistent block storage volumes for use with Amazon EC2 instances in the AWS Cloud.


Question: What is EFS?
Full form of EBS is Amazon Elastic File System .
It provides provides simple, scalable file storage for use with Amazon EC2 instances.
EFS offers a simple interface that allows you to create and configure file systems quickly and easily.
It growing and shrinking automatically as you add and remove files. You can use this in shared.


Question: AWS command to Describe the EC2 instances?
aws ec2 describe-instances



Question: AWS command to Describe the Start EC2 instances?
aws ec2 start-instances --instance-ids i-1348636c



Question: AWS command to sync the myfolder with S3 bucket in recursive?
aws s3 cp myfolder s3://mybucket/myfolder --recursive

It will move local files to S3 bucket(if does not exist in bucket)


Question: AWS command to sync the myfolder with S3 bucket in recursive but exclude the temp file?
aws s3 cp myfolder s3://mybucket/myfolder --recursive

It will move local files to S3 bucket(if does not exist in bucket)