Getting Started
Installation
pip install capo-bedrock-data-automation
Usage
from capo_bedrock_data_automation import AsyncBedrockDataAutomationClient
async def main():
async with AsyncBedrockDataAutomationClient() as bedrock_data_automation:
# Example: call the copy_blueprint_stage operation
response = await bedrock_data_automation.copy_blueprint_stage()
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_bedrock_data_automation import AsyncBedrockDataAutomationClient
async def main():
async with AsyncBedrockDataAutomationClient() as bedrock_data_automation:
# Example: paginate over list_data_automation_library_entities
async for item in bedrock_data_automation.iter_list_data_automation_library_entities():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_bedrock_data_automation import AsyncBedrockDataAutomationClient
from capo_bedrock_data_automation.error import AccessDeniedException
async def main():
async with AsyncBedrockDataAutomationClient() as bedrock_data_automation:
try:
await bedrock_data_automation.copy_blueprint_stage()
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_bedrock_data_automation import AsyncBedrockDataAutomationClient
async def main():
async with AsyncBedrockDataAutomationClient() as bedrock_data_automation:
# Default: 3 attempts for every operation
response = await bedrock_data_automation.copy_blueprint_stage()
# Override per operation
response = await bedrock_data_automation.copy_blueprint_stage(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await bedrock_data_automation.copy_blueprint_stage(config_overrides={"retry_max_attempts": 1})
Release files for capo-bedrock-data-automation 0.3.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_bedrock_data_automation-0.3.0.tar.gz | 107.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_bedrock_data_automation-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 386.0 kB
Release files / capo_bedrock_data_automation-0.3.0.tar.gz
| Download URL | capo_bedrock_data_automation-0.3.0.tar.gz |
|---|---|
| Size | 107.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9abdc8f3006804fb038acf3ae9b25cfa6fcb6722f99fd622625dff2490715e56
|
|
BLAKE2b-256 checksum How to use checksums |
1523ed2879de1a4b5ed4eca3226c1cd97828ec1c48a000e2a88b4387ec0a26da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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_bedrock_data_automation-0.3.0-py3-none-any.whl
| Download URL | capo_bedrock_data_automation-0.3.0-py3-none-any.whl |
|---|---|
| Size | 278.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2894337855c41c19a9161b8f8e8b0bc6262877f7783c4efa3a409d1abfe440d3
|
|
BLAKE2b-256 checksum How to use checksums |
7fb4a7339a8158afd5da5657678e4aec637931ae87f30c13d20dacfa3c595d54
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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}
|