1.0.1 • Published 4 years ago

aws-cloudfront-invalidation-component v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

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.