Getting Started
Installation
pip install capo-cloudwatch
Usage
from capo_cloudwatch import AsyncCloudWatchClient
async def main():
async with AsyncCloudWatchClient() as cloud_watch:
# Example: call the associate_dataset_kms_key operation
response = await cloud_watch.associate_dataset_kms_key()
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_cloudwatch import AsyncCloudWatchClient
async def main():
async with AsyncCloudWatchClient() as cloud_watch:
# Example: paginate over describe_alarm_history
async for item in cloud_watch.iter_describe_alarm_history():
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_cloudwatch import AsyncCloudWatchClient
async def main():
async with AsyncCloudWatchClient() as cloud_watch:
# Example: wait for alarm_mute_rule_exists
await cloud_watch.wait_until_alarm_mute_rule_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_cloudwatch import AsyncCloudWatchClient
from capo_cloudwatch.error import ConflictException
async def main():
async with AsyncCloudWatchClient() as cloud_watch:
try:
await cloud_watch.associate_dataset_kms_key()
except ConflictException 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_cloudwatch import AsyncCloudWatchClient
async def main():
async with AsyncCloudWatchClient() as cloud_watch:
# Default: 3 attempts for every operation
response = await cloud_watch.associate_dataset_kms_key()
# Override per operation
response = await cloud_watch.associate_dataset_kms_key(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await cloud_watch.associate_dataset_kms_key(config_overrides={"retry_max_attempts": 1})
Release files for capo-cloudwatch 0.12.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_cloudwatch-0.12.0.tar.gz | 257.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_cloudwatch-0.12.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 783.7 kB
Release files / capo_cloudwatch-0.12.0.tar.gz
| Download URL | capo_cloudwatch-0.12.0.tar.gz |
|---|---|
| Size | 257.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8eecf8d688a3a68f440ae9eeb5411cea4110742516172959983e9159fb911dd4
|
|
BLAKE2b-256 checksum How to use checksums |
6a63423df07611cc1aaacd0402dad2dd652eb60b897ceaa0dc74dd210c20b7d2
|
| 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_cloudwatch-0.12.0-py3-none-any.whl
| Download URL | capo_cloudwatch-0.12.0-py3-none-any.whl |
|---|---|
| Size | 526.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cb88feeeabe2293f7ed5509c8279d8a99010de79aca4d700cb350ba3cda5db3e
|
|
BLAKE2b-256 checksum How to use checksums |
545eb45578cf20b845d9cdd998b85e6a93a23a0ae7407a331a43514cb521889e
|
| 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}
|