Getting Started
Installation
pip install capo-iam
Usage
from capo_iam import AsyncIAMClient
async def main():
async with AsyncIAMClient() as iam:
# Example: call the accept_delegation_request operation
response = await iam.accept_delegation_request()
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_iam import AsyncIAMClient
async def main():
async with AsyncIAMClient() as iam:
# Example: paginate over get_account_authorization_details
async for item in iam.iter_get_account_authorization_details():
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_iam import AsyncIAMClient
async def main():
async with AsyncIAMClient() as iam:
# Example: wait for instance_profile_exists
await iam.wait_until_instance_profile_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_iam import AsyncIAMClient
from capo_iam.error import ConcurrentModificationException
async def main():
async with AsyncIAMClient() as iam:
try:
await iam.accept_delegation_request()
except ConcurrentModificationException 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_iam import AsyncIAMClient
async def main():
async with AsyncIAMClient() as iam:
# Default: 3 attempts for every operation
response = await iam.accept_delegation_request()
# Override per operation
response = await iam.accept_delegation_request(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await iam.accept_delegation_request(config_overrides={"retry_max_attempts": 1})
Release files for capo-iam 0.14.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_iam-0.14.0.tar.gz | 404.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iam-0.14.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.5 MB
Release files / capo_iam-0.14.0.tar.gz
| Download URL | capo_iam-0.14.0.tar.gz |
|---|---|
| Size | 404.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e68f4ef86638136272bfe93d84182d8472648ee74cab56b8e764e46c60eb0b14
|
|
BLAKE2b-256 checksum How to use checksums |
dbbe9e899b7ff040c106a23b957e99f381edfef017909a8befc296555f9183bf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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_iam-0.14.0-py3-none-any.whl
| Download URL | capo_iam-0.14.0-py3-none-any.whl |
|---|---|
| Size | 1.1 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
52118f9c6e0a52819f33229bb817d017e57b81f30e1d294fdc244604c14cc216
|
|
BLAKE2b-256 checksum How to use checksums |
ddef495c821d65a9470644536e0acaf6e5b3faa04129682232b225db64d49173
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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}
|