How to Invalidate AWS CloudFront Objects with Python & Boto3
By Birtchum Thompson | March 15, 2020
This tutorial demonstrates how to invalidate AWS CloudFront objects by paths using Python and Boto3.
Organizations that use CloudFront as their CDN commonly need to programmatically invalidate a single object or and array of objects due to updates or other reasons. Boto3 makes this a simple task. The following example script will invalidate 3 objects within a CloudFront distribution. All fields are required to successfully invalidate the objects.
Python