Python SDK for Bedrock Data Automation.
Project description
Getting Started
Installation
pip install aws-sdk-bedrock-data-automation
Usage
from aws_sdk_bedrock_data_automation import AsyncBedrockDataAutomationClient
async def main():
async with AsyncBedrockDataAutomationClient() as s3:
# Example: call the copy_blueprint_stage operation
response = await s3.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 aws_sdk_bedrock_data_automation import AsyncBedrockDataAutomationClient
async def main():
async with AsyncBedrockDataAutomationClient() as s3:
# Example: paginate over list_data_automation_library_entities
async for item in s3.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 aws_sdk_bedrock_data_automation import AsyncBedrockDataAutomationClient
from aws_sdk_bedrock_data_automation.error import AccessDeniedException
async def main():
async with AsyncBedrockDataAutomationClient() as s3:
try:
await s3.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 aws_sdk_bedrock_data_automation import AsyncBedrockDataAutomationClient
async def main():
async with AsyncBedrockDataAutomationClient() as s3:
# Default: 3 attempts for every operation
response = await s3.copy_blueprint_stage()
# Override per operation
response = await s3.copy_blueprint_stage(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await s3.copy_blueprint_stage(config_overrides={"retry_max_attempts": 1})
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_sdk_bedrock_data_automation-0.1.0.tar.gz.
File metadata
- Download URL: aws_sdk_bedrock_data_automation-0.1.0.tar.gz
- Upload date:
- Size: 82.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0563be00342634dc92efd6a36c496eb39bdb37acf5f5ae54b2612798f4174870
|
|
| MD5 |
bc1ff1c7fe10c1812fcf8077c5e389aa
|
|
| BLAKE2b-256 |
9b8ebcbf6f91f20190a90bc5968bbd95de99bb67adfaea944656def467dfaad2
|
File details
Details for the file aws_sdk_bedrock_data_automation-0.1.0-py3-none-any.whl.
File metadata
- Download URL: aws_sdk_bedrock_data_automation-0.1.0-py3-none-any.whl
- Upload date:
- Size: 251.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d5bc6ba50f56dafba9b00bd8b1a9affa52c3f9ec712528df2e2325da2995916
|
|
| MD5 |
e9fbf417555acdf27dd5a0e0077ed7ce
|
|
| BLAKE2b-256 |
62d46caea8b84b051faa6944eb10f1d3970d108e4bccb638578d0883f42d667f
|