Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
In an AWS Lambda application, how can a developer avoid modifying the Lambda function code when the associated DynamoDB table name changes?
A
Utilize a Lambda environment variable for the table name, accessed via the programming language's standard method.
B
Maintain the table name in a file within the /tmp directory, accessed through the language's SDK.
C
Store the table name in a zipped file uploaded to a Lambda layer, with retrieval via the language's SDK.
D
Use a global variable in the Lambda function for the table name.