aws-cdk.aws-elasticloadbalancingv2
The CDK Construct Library for AWS::ElasticLoadBalancingV2
What it is and what it does
This package provides Python constructs for the AWS CDK v1 framework that abstract AWS Elastic Load Balancing V2 resources—Application Load Balancers (ALBs) and Network Load Balancers (NLBs)—into reusable, composable components. You instantiate a load balancer, attach listeners on specific ports, define target groups, and wire routing rules (including path-based, host-based, and weighted routing) without writing CloudFormation templates directly.
The package depends on 15 other AWS CDK modules (core, EC2, IAM, Lambda, Route53, S3, CloudWatch, Certificate Manager, and others) to provide the full infrastructure abstraction layer. However, AWS CDK v1 reached end-of-support on 2023-06-01 and is no longer receiving updates; the maintainers strongly recommend migrating to AWS CDK v2 for ongoing support and new features.
Use it for:
- Define an internet-facing ALB with HTTP/HTTPS listeners and route traffic to Auto Scaling groups based on hostname or URL path.
- Create an NLB for ultra-high-performance, low-latency load balancing of TCP/UDP traffic across multiple availability zones.
- Set up listener conditions and weighted target groups to implement canary deployments or A/B testing within infrastructure code.
- Configure OIDC authentication at the load balancer level before forwarding requests to application targets.
- Automatically manage security group rules between load balancers and targets without manual network configuration.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides AWS CDK constructs for defining and configuring Application and Network Load Balancers in Python, enabling infrastructure-as-code deployment of load balancing resources.
No—unless you are maintaining an existing AWS CDK v1 codebase. This package is end-of-support as of 2023-06-01 and receives no updates. New projects should use AWS CDK v2's equivalent load balancer constructs instead. If you are already on v1, the package is stable and has no known vulnerabilities, but migration is strongly recommended.
Install
aws-cdk-aws-elasticloadbalancingv2 on PyPI
pip
pip install aws-cdk-aws-elasticloadbalancingv2uv
uv add aws-cdk-aws-elasticloadbalancingv2poetry
poetry add aws-cdk-aws-elasticloadbalancingv2Installing aws-cdk.aws-elasticloadbalancingv2
Before you install
Low install friction with a pure-Python wheel. However, this is an AWS CDK v1 package that reached end-of-support on 2023-06-01 and is no longer being updated; users should migrate to AWS CDK v2 instead.
License in practice
Licensed under Apache-2.0 (permissive), allowing commercial use, modification, and distribution with minimal restrictions.
Quickstart
from aws_cdk import aws_elasticloadbalancingv2 as elbv2
from aws_cdk import aws_ec2 as ec2
lb = elbv2.ApplicationLoadBalancer(self, "LB",
vpc=vpc,
internet_facing=True
)
listener = lb.add_listener("Listener", port=80, open=True)
listener.add_targets("Targets", port=8080, targets=[asg])
Requires an AWS CDK environment set up with a VPC and compute targets (e.g., AutoScaling group) already defined in the same stack.
Verify before relying
- Whether migration tooling or compatibility layers exist to ease transition from v1 to v2.
- Current adoption rate and community support for v1 despite end-of-support status.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (~=3.7) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 15 — aws-cdk.aws-certificatemanager, aws-cdk.aws-cloudwatch, aws-cdk.aws-ec2, aws-cdk.aws-iam, aws-cdk.aws-lambda, aws-cdk.aws-route53, aws-cdk.aws-s3, aws-cdk.cloud-assembly-schema, aws-cdk.core, aws-cdk.cx-api, aws-cdk.region-info, constructs, jsii, publication, typeguard |
| Maintenance | actively maintained — 1,152 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 154,895/month — #10,840 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: aws_cdk.aws_elasticloadbalancingv2-1.204.0-py3-none-any.whl
Tags
More Build Tools packages
Provides reusable utilities for Python…
permissive · top 100 on PyPI
tqdmWraps any iterable to display a real-time…
copyleft · top 100 on PyPI
pippip is the standard installer for Python…
permissive · top 100 on PyPI
hatchlingHatchling is a standards-compliant Python build…
permissive · top 100 on PyPI
grpcio-toolsGenerates Python gRPC service stubs and message…
permissive · top 1,000 on PyPI
pre-commitpre-commit is a framework for installing and…
permissive · top 1,000 on PyPI
aws-cdk.aws-elasticloadbalancingProvides AWS CDK constructs for configuring and…
permissive · top 15,000 on PyPI
aws-cdk.aws-autoscalingProvides CDK constructs for defining and…
permissive · top 15,000 on PyPI
aws-cdk.aws-ec2Provides AWS CDK constructs for defining EC2…
permissive · top 15,000 on PyPI
aws-cdk.aws-globalacceleratorProvides AWS CDK constructs to define and…
permissive · top 15,000 on PyPI
aws-cdk.aws-ecsProvides AWS CDK constructs for defining and…
permissive · top 15,000 on PyPI
aws-cdk.aws-efsProvides CDK constructs to define Amazon EFS…
permissive · top 15,000 on PyPI
aws-cdk.aws-cloudfrontDefines AWS CloudFront distributions and…
permissive · top 15,000 on PyPI
aws-cdk.aws-samProvides AWS CDK v1 constructs for defining…
permissive · top 15,000 on PyPI
aws-cdk.aws-cognitoProvides AWS CDK constructs for defining Amazon…
permissive · top 15,000 on PyPI
roundrobinProvides four round-robin selection algorithms:…
permissive · top 15,000 on PyPI