Python SDK for Backup.
Project description
Getting Started
Installation
pip install aws-sdk-backup
Usage
from aws_sdk_backup import AsyncBackupClient
async def main():
async with AsyncBackupClient() as s3:
# Example: call the associate_backup_vault_mpa_approval_team operation
response = await s3.associate_backup_vault_mpa_approval_team()
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_backup import AsyncBackupClient
async def main():
async with AsyncBackupClient() as s3:
# Example: paginate over list_backup_jobs
async for item in s3.iter_list_backup_jobs():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from aws_sdk_backup import AsyncBackupClient
from aws_sdk_backup.error import InvalidParameterValueException
async def main():
async with AsyncBackupClient() as s3:
try:
await s3.associate_backup_vault_mpa_approval_team()
except InvalidParameterValueException 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_backup import AsyncBackupClient
async def main():
async with AsyncBackupClient() as s3:
# Default: 3 attempts for every operation
response = await s3.associate_backup_vault_mpa_approval_team()
# Override per operation
response = await s3.associate_backup_vault_mpa_approval_team(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await s3.associate_backup_vault_mpa_approval_team(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_backup-0.1.0.tar.gz.
File metadata
- Download URL: aws_sdk_backup-0.1.0.tar.gz
- Upload date:
- Size: 257.0 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 |
1dd20ad074a8aab0813e0f82f44c6e06d12a976317a4ac4ecab99023d08a7191
|
|
| MD5 |
fead300be33769682984738da4f25f7e
|
|
| BLAKE2b-256 |
61ea755b6b927e320f9bcfa5082d6ff412724aae18260565e34dd3e51c2ca38f
|
File details
Details for the file aws_sdk_backup-0.1.0-py3-none-any.whl.
File metadata
- Download URL: aws_sdk_backup-0.1.0-py3-none-any.whl
- Upload date:
- Size: 665.4 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 |
66e18faae83a6ec3d6d1de0e9f9a7705bb7680da55ee75ae3236e03616cbcc3c
|
|
| MD5 |
7dfa4b7292397212c23847d5e0e6fa1b
|
|
| BLAKE2b-256 |
e5e06bbca662ccba0a3db900fc2246304db2e3b903c4974fb6f320e3c6fb7eb9
|