What problem does it solve? Setting up analytics-ready data lake tables on AWS requires coordinating table buckets, namespaces, Iceberg schemas, Glue catalog federation, and IAM permissions across multiple services, where small mistakes like mixed-case names or wrong ARN patterns cause opaque failures. ## Core Features & Use Cases - Managed Iceberg Table Creation: Creates table buckets, namespaces, and Iceberg tables via the S3 Tables API with partitioning and schema validation. - Glue Catalog Integration: Registers the federated s3tablescatalog so tables are queryable from Athena and other Iceberg-compatible engines. - Access Control Setup: Configures least-privilege s3tables and glue IAM permissions with correct resource ARN scoping. - Use Case: A data engineer needs a partitioned customer_orders table queryable in Athena. The skill checks for existing tables, creates the bucket and namespace, registers the Glue catalog, applies IAM policies, and verifies the table with a DESCRIBE query. ## Quick Start Ask the AI to create an S3 Tables Iceberg table named customer_orders with order_date, customer_id, and amount columns partitioned by month in your AWS account.