An Alexa skill I have developed calls a nodejs Lambda function that runs the same, identical code in different regions.
In order to customize its behavior according to the region, I have added an environment variable that "tells" the function which is its region.
I would like to retrieve this piece of information programmatically at runtime, in order to avoid using the environment variable and make the function totally region-independent.
Is it possible?
Thanks in advance.