Getting Started
Installation
pip install capo-elastic-load-balancing-v2
Usage
from capo_elastic_load_balancing_v2 import AsyncElasticLoadBalancingv2Client
async def main():
async with AsyncElasticLoadBalancingv2Client() as elastic_load_balancingv2:
# Example: call the add_listener_certificates operation
response = await elastic_load_balancingv2.add_listener_certificates()
print(response["certificates"])
Pagination
Some operations in this SDK support pagination. If the operation supports pagination it will have an iter_ prefixed method that returns an async iterator.
from capo_elastic_load_balancing_v2 import AsyncElasticLoadBalancingv2Client
async def main():
async with AsyncElasticLoadBalancingv2Client() as elastic_load_balancingv2:
# Example: paginate over describe_account_limits
async for item in elastic_load_balancingv2.iter_describe_account_limits():
print(item)
Waiters
Waiters poll an operation until a resource reaches a desired state. If the operation supports waiters it will have a wait_until_ prefixed method.
from capo_elastic_load_balancing_v2 import AsyncElasticLoadBalancingv2Client
async def main():
async with AsyncElasticLoadBalancingv2Client() as elastic_load_balancingv2:
# Example: wait for load_balancer_exists
await elastic_load_balancingv2.wait_until_load_balancer_exists(max_wait_time=300)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_elastic_load_balancing_v2 import AsyncElasticLoadBalancingv2Client
from capo_elastic_load_balancing_v2.error import CertificateNotFoundException
async def main():
async with AsyncElasticLoadBalancingv2Client() as elastic_load_balancingv2:
try:
await elastic_load_balancingv2.add_listener_certificates()
except CertificateNotFoundException as e:
print(f"Error: {e}")
print(e.data) # additional error data
Retrying
The SDK retries failed operations automatically. Retry behaviour follows the Smithy specification: errors are retried based on their is_retryable and is_throttling_error attributes. Throttling errors use a longer base delay. Network-level failures (connection errors and timeouts) are also retried. Non-retryable errors, such as client errors without the @retryable trait, are raised immediately without further attempts.
The number of attempts defaults to 3 and can be changed at the client level via retry_max_attempts, or per call via config_overrides.
from capo_elastic_load_balancing_v2 import AsyncElasticLoadBalancingv2Client
async def main():
async with AsyncElasticLoadBalancingv2Client() as elastic_load_balancingv2:
# Default: 3 attempts for every operation
response = await elastic_load_balancingv2.add_listener_certificates()
# Override per operation
response = await elastic_load_balancingv2.add_listener_certificates(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await elastic_load_balancingv2.add_listener_certificates(config_overrides={"retry_max_attempts": 1})
Release files for capo-elastic-load-balancing-v2 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| capo_elastic_load_balancing_v2-0.1.0.tar.gz | 193.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_elastic_load_balancing_v2-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 719.3 kB
Release files / capo_elastic_load_balancing_v2-0.1.0.tar.gz
| Download URL | capo_elastic_load_balancing_v2-0.1.0.tar.gz |
|---|---|
| Size | 193.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3ce1eefa15976aac550f0898808cf2fee408e9ac61f9ee74b2c7f9514e3bf3f6
|
|
BLAKE2b-256 checksum How to use checksums |
900a2dfb7f09c4db5096b506c1fa2e24508fed53244e159c6b12ec9b18c2410e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / capo_elastic_load_balancing_v2-0.1.0-py3-none-any.whl
| Download URL | capo_elastic_load_balancing_v2-0.1.0-py3-none-any.whl |
|---|---|
| Size | 525.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
df857a88caab4143ef18810aaba149340b9e0b3e6c1eeaa00c5bdc8ce03467d4
|
|
BLAKE2b-256 checksum How to use checksums |
b2cdc63a50bc9b10d41116f528a748c590f2c23b6788a374fb624271d4209b5e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|