ExamQuestions.com

Register
Login
AWS Certified DevOps Engineer Professional Exam Questions

Amazon

AWS Certified DevOps Engineer Professional

132 / 500

Question 132:

You are building a mobile app for consumers to post cat pictures online. You will be storing the images in AWS S3. You want to run the system very cheaply and simply. Which one of these options allows you to build a photo-sharing application with the right authentication/authorization implementation?

Answer options:

A.Build the application out using AWS Cognito and web identity federation to allow users to log in using Facebook or Google Accounts. Once they are logged in, the secret token passed to that user is used to access resources on AWS, like AWS S3 directly.
B.Use JWT or SAML compliant systems to build authorization policies.Users log in with a username and password, and are given a token they can use indefinitely to make calls against the photo infrastructure.
C.Use AWS API Gateway with a constantly rotating API Key to allow access from the client-side.Construct a custom build of the SDK and include S3 access in it.
D.Create an AWS oAuth Service Domain ad grant public signup and access to the domain. During setup, add at least one major social media site as a trusted Identity Provider for users.