This certification preparation material would help you in getting the jobs in the AWS Fields

AWS Developer Certification : Associate Level AWS Sysops Administrator Certification : Assciate Level AWS Solution Architect Certification : Associate Level AWS Soltion Architect : Professional Level AWS Certified Security Specialty (SCS-C01) AWS Professional certification Exam AWS Certified Big Data – Specialty (BDS-C00) AWS Certified Machine Learning MLS C01 Certification Prepration Materal AWS Solution Architect : Training Associate AWS Advanced Networking Certifications AWS Exam Prepare : Kinesis Data Stream Book : AWS Solution Architect Associate : Little Guide AWS Security Specialization Certification: Little Guide SCS-C01 AWS Package Deal


While applying to the Job you need to mention referred by : admin@hadoopexam.com | or Website : http://www.HadoopExam.com


 

Question-11: You have been working as a senior AWS developer in an Investment Bank, which uses the AWS infrastructure heavily. Your risk team want to have that AWS environment monitored properly and there is an IT support team which works in three shifts, each shift user has different email ids (in total 3 email ids, each per shift) for getting notifications. You need to set alarm notification such that each team will receive only if Alarm triggered during their respective shift and should not send to other shift email id. How would you setup this requirement?

  1. You required an SNS topic and SQS queue, SQS will subscribe to SNS topic. So whenever alarm is triggered CloudWatch will send notification to SNS. You will launce 3 EC2 instance and each EC2 instance will read message from queue and using Simple Email Service it will send an email.
  2. You will create three separate SNS topic and you will configure one email id with the one topic. Now you will be creating another SNS topic which will be notified whenever CloudWatch Alarm is triggered. You will need an application in between topic which will listen from the main topic on which alarm notification will be published, your application will read that alarm notification and based on timing it will forward that notification to respective topic.
  3. You will create a SNS topic and configure email ids with this topic. Now you will be creating another SNS topic which will be notified whenever CloudWatch Alarm is triggered. You will need an application in between topic which will listen from the main topic on which alarm notification will be published by CloudWatch, your application will read that alarm notification and based on will forward that notification to another topic.
  4. You will create three SQS queues and configure email ids with these queues. Now you will be creating another SNS topic which will be notified whenever CloudWatch Alarm is triggered. You will need an application in between queues which will listen from the main topic on which alarm notification will be published by CloudWatch, your application will read that alarm notification and based on timing it will forward that notification to respective queue.

Correct Answer  : B

Detailed Explaination: This is a designing question, you need to send a notification to respective email ids based on timing. You can design solution as per option-2

Step-1: Setup three topics each one for each shift.

Step-2: Configure the each shift email ID to topic.

Step-3: Create another topic on which CloudWatch alarm publish the notifications.

Step-4: Develop an application which will read messages from the main topic and based on timing it will forward the messages to respective topic.