Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

9 Top AWS Services a Quick List

In this post, I have explained the top AWS services list. These services are useful to read before your next interview. knowing this list is a must for all cloud-computing engineers. AWS provides various services. This post gives a clear understanding of AWS's top services. 

AWS Books

Not only for traditional services, but it also offers services for Mobile IoS and Android Os. Aws Service catalog helps organizations to manage their IT services.


Services
AWS

List of Top AWS Services Quick List


These 9 Services of AWS are popular. I have explained each service to understand quickly.

  1. EC2
  2. Lambda
  3. S3
  4. DynamoDB
  5. IAM
  6. Amazon Cognito
  7. Device Farm
  8. Mobile analytics
  9. SNS

1. AWS EC2 Instance

  • EC2: Amazon Elastic Compute Cloud (EC2) provides secure, scalable, on-demand hardware virtualization in the cloud.
  • Using Amazon EC2 eliminates the need to invest in server hardware upfront so that users can focus on, develop, and deploy applications faster. 
  • EC2 instances come in various hardware configurations and include an operating system.

2. Lambda Function in AWS

  • AWS Lambda lets users run snippets of code without provisioning infrastructure. 
  • This service is billed on a pay-as-you-go model, with users only paying for the execution time of their lambda code. 
  • There is no charge when the code is not running. Lambda code can be set up to automatically trigger from other AWS services or called directly from any web or mobile app.

3. Aws S3 Console

Amazon Simple Storage Service is a secure, durable, and scalable cloud-based object-store. Using this service, you can store your files in the cloud.

4. DynamoDB

Amazon DynamoDB is a high-performance, scalable cloud-based NoSQL database service.

5. Aws IAM Role

Amazon Identity and Access Management (IAM) lets you securely control who can access your AWS resources, what resources they can access, and what they can do with these resources.

6. Amazon Cognito Review

  • Amazon Cognito allows you to create identity profiles for your app's users and allows them to sign in to the app with their Amazon, Facebook, Twitter, or Google accounts.
  • After users have authenticated from the app, the app is given a token that can be used to access AWS cloud resources securely. 
  • Amazon Cognito also offers a service that allows authenticated users to sync their app data on different devices.

7. Aws Device Farm

  • Amazon Device Farm is an app testing service that allows you to upload your app and run a set of automated tests and a set of real-time tests on physical devices hosted by Amazon.
  • Both Android and iOS apps are supported.

8. Aws Mobile Analytics

  • Amazon Mobile Analytics allows you to collect and visualize app usage data. A set of reports is generated based on the collected data. 
  • You can export the analytics data to other AWS cloud services for further processing.

9. Aws SNS topic

  • Amazon Simple Notification Service (SNS) enables you to send push messages.
  • These messages can be pushed to mobile applications, e-mail inboxes, web servers, and other AWS cloud services.
  • SNS supports various protocols including SMS, e-mail, and HTTP/S.

Summary

A total of nine AWS services absolutely need for every developer working on AWS.


Keep Reading

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers