Objective: Route authenticated API requests from Cognito users via ALB.
Exploration:
As before, ensure that Route 53 routes traffic from your domain or subdomain (e.g., api.cloudexploration-two.com) to the ALB.
In the ALB listener rules, ensure that traffic from authenticated users is forwarded to the appropriate target group, which links to your ECS Fargate tasks.
Objective: Retrieve cached recommended products based on the authenticated user’s identity.
Exploration:
Use DynamoDB to store a cached list of recommended products generated by Amazon Personalize.
When the API receives a request with a valid Cognito token, retrieve the cached recommendations by querying DynamoDB for the user’s Cognito sub (or other user attributes).
Ensure you have the appropriate partition key to store and retrieve cached recommended products efficiently.
Objective: Generate personalized recommendations for authenticated users.
Exploration:
If the cache is missing or outdated, use Amazon Personalize to fetch new recommendations for the user. The Cognito sub can serve as the user identifier.
Check that Personalize campaigns are set up and configured to generate recommendations in real time or via batch processing.
If batch processing is used, ensure the ECS service periodically updates the DynamoDB cache with new recommendations based on user activity.