aws-cdk.aws-s3tables-alpha
CDK Constructs for S3 Tables
What it is and what it does
This package provides high-level AWS CDK constructs for provisioning and managing S3 Tables, AWS's cloud object store with native Apache Iceberg table format support. It lets you define table buckets, namespaces, and individual tables using Python code, with full control over schema, partitioning, sort orders, and lifecycle policies like unreferenced file removal and snapshot management.
The constructs wrap the underlying S3 Tables API and integrate with CDK's permission and encryption systems, allowing you to grant IAM principals read/write access and configure KMS or S3-managed encryption in declarative code. Because the APIs are experimental and subject to breaking changes, it is best suited for teams actively tracking AWS S3 Tables development and willing to update code as the service matures.
Use it for:
- Define and deploy S3 table buckets with automatic cleanup of unreferenced files and snapshot retention policies.
- Create Iceberg tables with custom schemas, partitioning strategies, and sort orders for optimized analytical queries.
- Grant fine-grained IAM permissions to table buckets and individual tables for multi-tenant or cross-account access.
- Configure encryption settings (KMS or S3-managed) and manage key access alongside table infrastructure.
- Manage table namespaces and organize multiple related tables within a single bucket using infrastructure-as-code.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides AWS CDK constructs for defining and managing Amazon S3 Tables with built-in Apache Iceberg support, enabling declarative infrastructure-as-code for tabular data storage in S3.
Yes, if you are actively using AWS CDK to manage S3 infrastructure and need to provision S3 Tables with Iceberg support. The package is actively maintained, has no known vulnerabilities, and low install friction. However, be aware that the APIs are experimental and subject to breaking changes between releases—unsuitable for projects requiring strict backward compatibility. For production use, plan for version pinning and regular testing of upgrades.
Install
aws-cdk-aws-s3tables-alpha on PyPI
pip
pip install aws-cdk-aws-s3tables-alphauv
uv add aws-cdk-aws-s3tables-alphapoetry
poetry add aws-cdk-aws-s3tables-alphaInstalling aws-cdk.aws-s3tables-alpha
Before you install
Active maintenance with a recent release; low install friction and four runtime dependencies all from the AWS CDK ecosystem. The package is marked experimental and subject to non-backward-compatible changes, so expect breaking updates between versions.
License in practice
Licensed under Apache-2.0 (permissive), allowing commercial use, modification, and distribution with minimal restrictions—suitable for most production and open-source projects.
Quickstart
pip install aws-cdk.aws-s3tables-alpha
from aws_cdk.aws_s3tables_alpha import TableBucket, UnreferencedFileRemoval, UnreferencedFileRemovalStatus
sample_table_bucket = TableBucket(scope, "ExampleTableBucket",
table_bucket_name="example-bucket-1",
unreferenced_file_removal=UnreferencedFileRemoval(
status=UnreferencedFileRemovalStatus.ENABLED,
noncurrent_days=20,
unreferenced_days=20
)
)
Requires Python 3.10 or later; intended for use within an AWS CDK application stack context.
Verify before relying
- Whether breaking changes between alpha versions require code updates in practice and how frequently they occur.
- Performance characteristics and scalability limits for large numbers of tables or namespaces.
- Compatibility with non-Python CDK languages and cross-language construct usage patterns.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — aws-cdk-lib, constructs, jsii, publication |
| Maintenance | actively maintained — 1 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 517,975/month — #6,225 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: aws_cdk_aws_s3tables_alpha-2.265.0a0-py3-none-any.whl
Tags
More Application Frameworks packages
FastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
textualTextual is a Python framework for building…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
mcpBuild and connect to Model Context Protocol…
permissive · top 1,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
aws-cdk.aws-s3Defines AWS S3 buckets and related resources as…
permissive · top 15,000 on PyPI
aws-cdk.aws-dynamodbProvides AWS CDK constructs for defining,…
permissive · top 15,000 on PyPI
aws-cdk.aws-location-alphaProvides AWS CDK constructs for building…
permissive · top 15,000 on PyPI
aws-cdk.aws-ecrProvides AWS CDK constructs for defining,…
permissive · top 15,000 on PyPI
aws-cdk.aws-codestar-alphaProvides AWS CDK constructs for AWS CodeStar…
permissive · top 15,000 on PyPI
aws-cdk.aws-kinesisfirehose-alphaProvides AWS CDK constructs for defining Amazon…
permissive · top 15,000 on PyPI
aws-cdk.aws-redshift-alphaDefines AWS Redshift clusters and database…
permissive · top 15,000 on PyPI
aws-cdk.aws-secretsmanagerAWS CDK construct library for provisioning and…
permissive · top 15,000 on PyPI
aws-cdk.aws-s3-deploymentDeploys files and directories to AWS S3 buckets…
permissive · top 15,000 on PyPI
pyicebergPyIceberg provides programmatic access to…
permissive · top 1,000 on PyPI