Question 76:
Your company has developed a web application using the AWS SDK to access data stored in an Amazon DynamoDB table. You want to ensure that the API keys for access to DynamoDB are kept secure, and you do not want to write your own sign-in code logic. Which of the following methods is the most appropriate?
Answer options:
A.Create an IAM user with access to the specific DynamoDB tables, and assign it to the application. B.Configure your AWS access keys for the application to use the keys to access DynamoDB.C.Configure a web identity federation role within IAM to enable access to the correct DynamoDB resources and retrieve temporary credentials. D.Store AWS keys in global variables within your application and configure the application to use these credentials when making requests.