def solution_helper()

in source/lambda/solution_helper/lambda_function.py [0:0]


def solution_helper(event, _):

    logger.info(f"[solution_helper] event: {event}")

    if event["ResourceType"] == "Custom::CreateUUID" and event["RequestType"] == "Create":
        random_id = str(uuid.uuid4())
        helper.Data.update({"UUID": random_id})
        logger.info(f"[solution_helper] create uuid: {random_id}")