Skip to main content

Getting Started

Installation

pip install capo-elastic-load-balancing

Usage

from capo_elastic_load_balancing import AsyncElasticLoadBalancingClient


async def main():
    async with AsyncElasticLoadBalancingClient() as elastic_load_balancing:
        # Example: call the add_tags operation
        response = await elastic_load_balancing.add_tags()
        print(response)

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 import AsyncElasticLoadBalancingClient


async def main():
    async with AsyncElasticLoadBalancingClient() as elastic_load_balancing:
        # Example: paginate over describe_load_balancers
        async for item in elastic_load_balancing.iter_describe_load_balancers():
            print(item)

Error Handling

The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.

from capo_elastic_load_balancing import AsyncElasticLoadBalancingClient
from capo_elastic_load_balancing.error import AccessPointNotFoundException


async def main():
    async with AsyncElasticLoadBalancingClient() as elastic_load_balancing:
        try:
            await elastic_load_balancing.add_tags()
        except AccessPointNotFoundException 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 import AsyncElasticLoadBalancingClient


async def main():
    async with AsyncElasticLoadBalancingClient() as elastic_load_balancing:
        # Default: 3 attempts for every operation
        response = await elastic_load_balancing.add_tags()

        # Override per operation
        response = await elastic_load_balancing.add_tags(config_overrides={"retry_max_attempts": 5})

        # Disable retries for this call
        response = await elastic_load_balancing.add_tags(config_overrides={"retry_max_attempts": 1})

Release files for capo-elastic-load-balancing 0.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for capo-elastic-load-balancing 0.5.0
File Size Uploaded
capo_elastic_load_balancing-0.5.0.tar.gz 103.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-elastic-load-balancing 0.5.0
File Interpreter ABI Platform
capo_elastic_load_balancing-0.5.0-py3-none-any.whl Python 3 none any Details

Total release size: 360.7 kB

Release files / capo_elastic_load_balancing-0.5.0.tar.gz

Download URL capo_elastic_load_balancing-0.5.0.tar.gz
Size 103.0 kB
Tags Source
SHA-256 checksum
How to use checksums
5c33bdaedca9508eb208c2c5d03219a101686834ad15a643bbc6000419a79293
BLAKE2b-256 checksum
How to use checksums
4349fbc0f8ddac6e397dd456d273bb617a3f255396c51c2dc42df7e994877fdb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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-0.5.0-py3-none-any.whl

Download URL capo_elastic_load_balancing-0.5.0-py3-none-any.whl
Size 257.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c2846ead491aeefdba7164799881983d41216f9ad7237221bd71b19dcb15654e
BLAKE2b-256 checksum
How to use checksums
68f8d9b9fe85d6f42adc7315c5326fb03cde9f74d034cf80a6434cea00f9b9bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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 history Release notifications | RSS feed

0.10.0

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.0

2 release files

This release

0.5.0 This release

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page