Which solutions will meet these requirements?
(Choose two.)
Turn on the sticky sessions feature (session affinity) on the ALB.
Use an Amazon DynamoDB table to store customer session information.
Deploy an Amazon Cognito user pool to manage user session information.
Deploy an Amazon ElastiCache for Redis cluster to store customer session information.
Use AWS Systems Manager Application Manager in the application to manage user session information.
Explanations:
Sticky sessions on the ALB are not durable as they only persist for the duration of the load balancer session.
Amazon DynamoDB is durable, highly available, and can store session data reliably across AZs.
Amazon Cognito manages authentication, not session management for transactional data.
Amazon ElastiCache for Redis offers fast, in-memory data storage with persistence options for sessions.
AWS Systems Manager Application Manager is not designed for managing user session information.