Skip to main content

Getting Started

Installation

pip install capo-cloudfront

Usage

from capo_cloudfront import AsyncCloudFrontClient


async def main():
    async with AsyncCloudFrontClient() as cloud_front:
        # Example: call the associate_alias operation
        response = await cloud_front.associate_alias()
        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_cloudfront import AsyncCloudFrontClient


async def main():
    async with AsyncCloudFrontClient() as cloud_front:
        # Example: paginate over list_cloud_front_origin_access_identities
        async for item in cloud_front.iter_list_cloud_front_origin_access_identities():
            print(item)

Error Handling

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

from capo_cloudfront import AsyncCloudFrontClient
from capo_cloudfront.error import AccessDenied


async def main():
    async with AsyncCloudFrontClient() as cloud_front:
        try:
            await cloud_front.associate_alias()
        except AccessDenied 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_cloudfront import AsyncCloudFrontClient


async def main():
    async with AsyncCloudFrontClient() as cloud_front:
        # Default: 3 attempts for every operation
        response = await cloud_front.associate_alias()

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

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

Release files for capo-cloudfront 0.8.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-cloudfront 0.8.0
File Size Uploaded
capo_cloudfront-0.8.0.tar.gz 388.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-cloudfront 0.8.0
File Interpreter ABI Platform
capo_cloudfront-0.8.0-py3-none-any.whl Python 3 none any Details

Total release size: 1.6 MB

Release files / capo_cloudfront-0.8.0.tar.gz

Download URL capo_cloudfront-0.8.0.tar.gz
Size 388.5 kB
Tags Source
SHA-256 checksum
How to use checksums
c13ed575d6a970bae05a238077c4b56f652b09b36940fe9ce42c76422a1f8294
BLAKE2b-256 checksum
How to use checksums
360394ef4e5622d7d7b8cc088a9523f4b71d0c9749f5ceb565d6acf0ab6c726f
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_cloudfront-0.8.0-py3-none-any.whl

Download URL capo_cloudfront-0.8.0-py3-none-any.whl
Size 1.2 MB
Tags Python 3
SHA-256 checksum
How to use checksums
38322666847aac0d63a174150c7c8e752d81cbcecf699112e83e5dd888fa5f40
BLAKE2b-256 checksum
How to use checksums
964c4bd259665ba9d4f96ca19dab3eb7a2d81ec7df84394c3b7f4fe1b775769b
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

This release

0.8.0 This release

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.0

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