in source/services/solution-helper/lambda_function.py [0:0]
def _sanitize_data(resource_properties):
# Remove ServiceToken (lambda arn) to avoid sending AccountId
resource_properties.pop("ServiceToken", None)
resource_properties.pop("Resource", None)
# Solution ID and unique ID are sent separately
resource_properties.pop("SolutionId", None)
resource_properties.pop("UUID", None)
return resource_properties