Skip to content

Instantly share code, notes, and snippets.

View mahayash315's full-sized avatar

Masayuki Hayashi mahayash315

View GitHub Profile
@mahayash315
mahayash315 / s3-cloudfront-invalidation.js
Last active July 22, 2017 04:01
Invalidates objects on CloudFront triggered by S3 event
/**
* Invalidates objects on CloudFront triggered by S3 event
* Runtime: Node.js 6.10
*/
var aws = require('aws-sdk');
var cloudfront = new aws.CloudFront();
// returns if the Bucket is used in the Distribution
var bucketIsUsed = (distribution, bucketName) => {