ExamQuestions.com

Register
Login
AWS Certified Developer Associate Exam Questions

Amazon

AWS Certified Developer Associate

18 / 474

Question 18:

You’re developing an application that is going to be hosted in AWS Lambda. The function will make calls to a database. A requirement is that all database connection strings should be kept secure. Which of the following is the MOST secure way to implement this?

Answer options:

A.Put the connection strings values in a CloudFormation template.
B.Put the database connection string in the app.json file and store it in a Git repository.
C.Lambda needs to reference the AWS Systems Manager Parameter Store for the encrypted database connection string.
D.Place the database connection string in the AWS Lambda function itself since all Lambda functions are encrypted at rest.