Accessing AWS Lambda environment variables in Java code

Java Programmer picture Java Programmer · Dec 12, 2016 · Viewed 26k times · Source

The AWS has introduced Environment variables for accessing in the Lambda function. I could not find any documentation which shows how to access the environment variables from the Lambda function using Java. Can anyone help me?

Answer

hellomichibye picture hellomichibye · Dec 12, 2016

you can get them with:

System.getenv("NAME_OF_YOUR_ENV_VARIABLE")