Is it possible to redirect with AWS ALB using AWS Lambda as a target group? – Amazon web services
I have an ALB that has lambda as target group. Essentially, the lambda that does logic checks and returns a response: { 'statusCode': 301, 'headers': { 'Location': url, }, 'body': null, 'isBase64Encoded': false } The response above will return a…