codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

AWS Cloud Front Functions — Beyond the Edge

Vikas K Solegaonkar
codeburst
Published in
3 min readMay 13, 2021

What is Cloud Front Function

Example

Create a Function

function handler(event) {
var headers = event.request.headers;
var newurl = `https://thewiz.net/accessdenied.html`
if (headers['user-agent']) {
var browser = headers['user-agent'].value;
if (browser.includes("Trident") || browser.includes("Edg")){
var response = {
statusCode: 302,
statusDescription: 'Found',
headers:
{ "location": { "value": newurl } }
}
return response;
}
}
return request;
}

Associate with Distribution

Summary

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

No responses yet

Write a response