Skip to main content

Getting Started

Installation

pip install capo-eks-auth

Usage

from capo_eks_auth import AsyncEKSAuthClient


async def main():
    async with AsyncEKSAuthClient() as eks_auth:
        # Example: call the assume_role_for_pod_identity operation
        response = await eks_auth.assume_role_for_pod_identity()
        print(response["subject"])

Error Handling

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

from capo_eks_auth import AsyncEKSAuthClient
from capo_eks_auth.error import AccessDeniedException


async def main():
    async with AsyncEKSAuthClient() as eks_auth:
        try:
            await eks_auth.assume_role_for_pod_identity()
        except AccessDeniedException 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_eks_auth import AsyncEKSAuthClient


async def main():
    async with AsyncEKSAuthClient() as eks_auth:
        # Default: 3 attempts for every operation
        response = await eks_auth.assume_role_for_pod_identity()

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

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

Release files for capo-eks-auth 0.1.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-eks-auth 0.1.0
File Size Uploaded
capo_eks_auth-0.1.0.tar.gz 46.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-eks-auth 0.1.0
File Interpreter ABI Platform
capo_eks_auth-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 106.0 kB

Release files / capo_eks_auth-0.1.0.tar.gz

Download URL capo_eks_auth-0.1.0.tar.gz
Size 46.4 kB
Tags Source
SHA-256 checksum
How to use checksums
c515128aa8fb9052b22a231060975f6b7abc16c0cef53b0182c785908ffcd40f
BLAKE2b-256 checksum
How to use checksums
a86320145533de9de0ab94f2e6d732e834b8c97cde8969819ede8bdc928dc13f
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_eks_auth-0.1.0-py3-none-any.whl

Download URL capo_eks_auth-0.1.0-py3-none-any.whl
Size 59.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
520730896a3857ea858d40ae3646c14257e392cce7fe975c108d16623c5b471c
BLAKE2b-256 checksum
How to use checksums
38cae887577c15f71256d4b2cb1fa6a965bccc161c0c580c24766899a13f7598
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 history Release notifications | RSS feed

This release

0.1.0 This release

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