I followed exactly the steps in the course, however the lambda function for streaming data transformations keeps erroring, cf Cloudwatch log in image below. It seems the error is linked to user_emb in call below but URL_LAMBDA_INFERENCE seems properly set in AWS UI interface (cf image below):
# Getting the embedding of the user
usr_emb = get_user_embedding(url=URL_LAMBDA_INFERENCE, data=usr_dict)
# Recommending item for the user
recommended_items = get_item_from_user(
url=URL_LAMBDA_INFERENCE,
data=usr_emb[0],
item_limit=int(ITEM_LIMIT),
)