Reputation: 822
In AWS API Gateway / HTTP API (not REST API), I've set a stage variable. Is there a way to get the value of that variable in a Lambda function that's called through that API?
Upvotes: 0
Views: 806
Reputation: 12259
According to the doc, you can get stage via requestContext -> stage.
stage
requestContext -> stage
Upvotes: 2