HTTP redirect using lambda handler

From wikieduonline
Revision as of 13:33, 27 August 2021 by Welcome (talk | contribs) (Created page with " <pre> def lambda_handler(event, context): # Generate HTTP redirect response with 302 status code and Location header. response = { 'status': '302...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


 def lambda_handler(event, context):
 
     # Generate HTTP redirect response with 302 status code and Location header.
     
     response = {
         'status': '302',
         'statusDescription': 'Found',
         'headers': {
             'location': [{
                 'key': 'Location',
                 'value': 'http://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html'
             }]
         }
     }
     
     return response

See also

Advertising: