aws-cloudfront-invalidation-component

A Serverless component to invalidate CF distributions

Usage no npm install needed!

<script type="module">
  import awsCloudfrontInvalidationComponent from 'https://cdn.skypack.dev/aws-cloudfront-invalidation-component';
</script>

README

Invalidation Component

This component will invalidate a saved Cloudfront distribution when called, it's meant to be used with @serverless/aws-cloudfront

Usage

On your custom component, after making use of @serverless/aws-cloudfront, you can call this component in this way:

  const cf_invalidate = await this.load('aws-cloudfront-invalidation-component')
  await cf_invalidate.default({ paths: ['/a/path', '/another/path'] })

That's it. We'll pick the distribution from the state that @serverless/aws-cloudfront left on the .serverless/ folder.