Write and create a Lambda@Edge function - Amazon CloudFront
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Write and create a Lambda@Edge function

To use Lambda@Edge, you write the code for your Amazon Lambda function. To help you write Lambda@Edge functions, see the following resources:

The programming model for using Node.js or Python with Lambda@Edge is the same as using Lambda in an Amazon Web Services Region. For more information, see Building Lambda functions with Node.js or Building Lambda functions with Python in the Amazon Lambda Developer Guide.

In your Lambda@Edge function, include the callback parameter and return the applicable object for request or response events:

  • Request events – Include the cf.request object in the response.

    If you're generating a response, include the cf.response object in the response. For more information, see Generate HTTP responses in request triggers.

  • Response events – Include the cf.response object in the response.

After you write your own code or use one of the examples, you then create the function in Lambda. To create a function or edit an existing one, see the following topics:

After you create the function in Lambda, you set up Lambda to run the function based on specific CloudFront events, which are called triggers. For more information, see Add triggers for a Lambda@Edge function.