There is a small bug [here](https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-data-collection/blob/bf98e3505e63c3a79470496c20c8c62b66e8cbc7/data-exports/deploy/data-exports-aggregation.yaml#L1206) This code: ```python except: print('Exception on deletion:', str(exc)) ``` Should be: ```python except Exception as exc: print('Exception on deletion:', str(exc)) ```