aws-application-load-balancer

How to correctly code AWS ALB redirection in CDK (python)

How to correctly code AWS ALB redirection in CDK (python) Question: Learning AWS CDK (coming from terraform). I’m currently struggling, how to write a piece of code with will allow me to create redirection as in below screenshot: Code so far which I have: class LoadBalancer(core.Construct): def __init__(self, scope: core.Construct, construct_id: str, props): super().__init__(scope, construct_id) …

Total answers: 3