@aws-cdk/aws-s3tables-alpha 2.244.0-alpha.0 → 2.245.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.244.0",
11
+ "aws-cdk-lib": "^2.245.0",
12
12
  "constructs": "^10.5.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -1598,6 +1598,19 @@
1598
1598
  }
1599
1599
  }
1600
1600
  },
1601
+ "aws-cdk-lib.aws_elementalinference": {
1602
+ "targets": {
1603
+ "dotnet": {
1604
+ "namespace": "Amazon.CDK.AWS.ElementalInference"
1605
+ },
1606
+ "java": {
1607
+ "package": "software.amazon.awscdk.services.elementalinference"
1608
+ },
1609
+ "python": {
1610
+ "module": "aws_cdk.aws_elementalinference"
1611
+ }
1612
+ }
1613
+ },
1601
1614
  "aws-cdk-lib.aws_emr": {
1602
1615
  "targets": {
1603
1616
  "dotnet": {
@@ -3288,6 +3301,19 @@
3288
3301
  }
3289
3302
  }
3290
3303
  },
3304
+ "aws-cdk-lib.aws_route53globalresolver": {
3305
+ "targets": {
3306
+ "dotnet": {
3307
+ "namespace": "Amazon.CDK.AWS.Route53GlobalResolver"
3308
+ },
3309
+ "java": {
3310
+ "package": "software.amazon.awscdk.services.route53globalresolver"
3311
+ },
3312
+ "python": {
3313
+ "module": "aws_cdk.aws_route53globalresolver"
3314
+ }
3315
+ }
3316
+ },
3291
3317
  "aws-cdk-lib.aws_route53profiles": {
3292
3318
  "targets": {
3293
3319
  "dotnet": {
@@ -5724,6 +5750,22 @@
5724
5750
  }
5725
5751
  }
5726
5752
  },
5753
+ "aws-cdk-lib.interfaces.aws_elementalinference": {
5754
+ "targets": {
5755
+ "dotnet": {
5756
+ "namespace": "Amazon.CDK.Interfaces.ElementalInference"
5757
+ },
5758
+ "go": {
5759
+ "packageName": "interfacesawselementalinference"
5760
+ },
5761
+ "java": {
5762
+ "package": "software.amazon.awscdk.interfaces.elementalinference"
5763
+ },
5764
+ "python": {
5765
+ "module": "aws_cdk.interfaces.aws_elementalinference"
5766
+ }
5767
+ }
5768
+ },
5727
5769
  "aws-cdk-lib.interfaces.aws_emr": {
5728
5770
  "targets": {
5729
5771
  "dotnet": {
@@ -7676,6 +7718,22 @@
7676
7718
  }
7677
7719
  }
7678
7720
  },
7721
+ "aws-cdk-lib.interfaces.aws_route53globalresolver": {
7722
+ "targets": {
7723
+ "dotnet": {
7724
+ "namespace": "Amazon.CDK.Interfaces.Route53GlobalResolver"
7725
+ },
7726
+ "go": {
7727
+ "packageName": "interfacesawsroute53globalresolver"
7728
+ },
7729
+ "java": {
7730
+ "package": "software.amazon.awscdk.interfaces.route53globalresolver"
7731
+ },
7732
+ "python": {
7733
+ "module": "aws_cdk.interfaces.aws_route53globalresolver"
7734
+ }
7735
+ }
7736
+ },
7679
7737
  "aws-cdk-lib.interfaces.aws_route53profiles": {
7680
7738
  "targets": {
7681
7739
  "dotnet": {
@@ -8670,7 +8728,7 @@
8670
8728
  },
8671
8729
  "name": "@aws-cdk/aws-s3tables-alpha",
8672
8730
  "readme": {
8673
- "markdown": "# Amazon S3 Tables Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n## Amazon S3 Tables\n\nAmazon S3 Tables deliver the first cloud object store with built-in Apache Iceberg support and streamline storing tabular data at scale.\n\n[Product Page](https://aws.amazon.com/s3/features/tables/) | [User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables.html)\n\n\n## Usage\n\n### Define an S3 Table Bucket\n\n```ts\n// Build a Table bucket\nconst sampleTableBucket = new TableBucket(scope, 'ExampleTableBucket', {\n tableBucketName: 'example-bucket-1',\n // optional fields:\n unreferencedFileRemoval: {\n status: UnreferencedFileRemovalStatus.ENABLED,\n noncurrentDays: 20,\n unreferencedDays: 20,\n }\n});\n```\n\n### Define an S3 Tables Namespace\n\n```ts\n// Build a namespace\nconst sampleNamespace = new Namespace(scope, 'ExampleNamespace', {\n namespaceName: 'example-namespace-1',\n tableBucket: tableBucket,\n});\n```\n\n### Define an S3 Table\n\n```ts\n// Build a table\nconst sampleTable = new Table(scope, 'ExampleTable', {\n tableName: 'example_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n withoutMetadata: true,\n});\n\n// Build a table with an Iceberg Schema\nconst sampleTableWithSchema = new Table(scope, 'ExampleSchemaTable', {\n tableName: 'example_table_with_schema',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n {\n name: 'id',\n type: 'int',\n required: true,\n },\n {\n name: 'name',\n type: 'string',\n },\n ],\n },\n },\n compaction: {\n status: Status.ENABLED,\n targetFileSizeMb: 128,\n },\n snapshotManagement: {\n status: Status.ENABLED,\n maxSnapshotAgeHours: 48,\n minSnapshotsToKeep: 5,\n },\n});\n```\n\nLearn more about table buckets maintenance operations and default behavior from the [S3 Tables User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-table-buckets-maintenance.html)\n\n### Controlling Table Bucket Permissions\n\n```ts\n// Grant the principal read permissions to the bucket and all tables within\nconst accountId = '123456789012'\ntableBucket.grantRead(new iam.AccountPrincipal(accountId), '*');\n\n// Grant the role write permissions to the bucket and all tables within\nconst role = new iam.Role(stack, 'MyRole', { assumedBy: new iam.ServicePrincipal('sample') });\ntableBucket.grantWrite(role, '*');\n\n// Grant the user read and write permissions to the bucket and all tables within\ntableBucket.grantReadWrite(new iam.User(stack, 'MyUser'), '*');\n\n// Grant permissions to the bucket and a particular table within it\nconst tableId = '6ba046b2-26de-44cf-9144-0c7862593a7b'\ntableBucket.grantReadWrite(new iam.AccountPrincipal(accountId), tableId);\n\n// Add custom resource policy statements\nconst permissions = new iam.PolicyStatement({\n effect: iam.Effect.ALLOW,\n actions: ['s3tables:*'],\n principals: [ new iam.ServicePrincipal('example.aws.internal') ],\n resources: ['*']\n});\n\ntableBucket.addToResourcePolicy(permissions);\n```\n\n### Controlling Table Bucket Encryption Settings\n\nS3 TableBuckets have SSE (server-side encryption with AES-256) enabled by default with S3 managed keys.\nYou can also bring your own KMS key for KMS-SSE or have S3 create a KMS key for you.\n\nIf a bucket is encrypted with KMS, grant functions on the bucket will also grant access\nto the TableBucket's associated KMS key.\n\n```ts\n// Provide a user defined KMS Key:\nconst key = new kms.Key(scope, 'UserKey', {});\nconst encryptedBucket = new TableBucket(scope, 'EncryptedTableBucket', {\n tableBucketName: 'table-bucket-1',\n encryption: TableBucketEncryption.KMS,\n encryptionKey: key,\n});\n// This account principal will also receive kms:Decrypt access to the KMS key\nencryptedBucket.grantRead(new iam.AccountPrincipal('123456789012'), '*');\n\n// Use S3 managed server side encryption (default)\nconst encryptedBucketDefault = new TableBucket(scope, 'EncryptedTableBucketDefault', {\n tableBucketName: 'table-bucket-3',\n encryption: TableBucketEncryption.S3_MANAGED, // Uses AES-256 encryption by default\n});\n```\n\nWhen using KMS encryption (`TableBucketEncryption.KMS`), if no encryption key is provided, CDK will automatically create a new KMS key for the table bucket with necessary permissions.\n\n```ts\n// If no key is provided, one will be created automatically\nconst encryptedBucketAuto = new TableBucket(scope, 'EncryptedTableBucketAuto', {\n tableBucketName: 'table-bucket-2',\n encryption: TableBucketEncryption.KMS,\n});\n```\n\n### Controlling Table Permissions\n\n```ts\n// Grant the principal read permissions to the table\nconst accountId = '123456789012'\ntable.grantRead(new iam.AccountPrincipal(accountId));\n\n// Grant the role write permissions to the table\nconst role = new iam.Role(stack, 'MyRole', { assumedBy: new iam.ServicePrincipal('sample') });\ntable.grantWrite(role);\n\n// Grant the user read and write permissions to the table\ntable.grantReadWrite(new iam.User(stack, 'MyUser'));\n\n// Grant an account permissions to the table\ntable.grantReadWrite(new iam.AccountPrincipal(accountId));\n\n// Add custom resource policy statements\nconst permissions = new iam.PolicyStatement({\n effect: iam.Effect.ALLOW,\n actions: ['s3tables:*'],\n principals: [ new iam.ServicePrincipal('example.aws.internal') ],\n resources: ['*']\n});\n\ntable.addToResourcePolicy(permissions);\n```\n\n## Coming Soon\n\nL2 Construct support for:\n\n- KMS encryption support for Tables\n"
8731
+ "markdown": "# Amazon S3 Tables Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n## Amazon S3 Tables\n\nAmazon S3 Tables deliver the first cloud object store with built-in Apache Iceberg support and streamline storing tabular data at scale.\n\n[Product Page](https://aws.amazon.com/s3/features/tables/) | [User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables.html)\n\n\n## Usage\n\n### Define an S3 Table Bucket\n\n```ts\n// Build a Table bucket\nconst sampleTableBucket = new TableBucket(scope, 'ExampleTableBucket', {\n tableBucketName: 'example-bucket-1',\n // optional fields:\n unreferencedFileRemoval: {\n status: UnreferencedFileRemovalStatus.ENABLED,\n noncurrentDays: 20,\n unreferencedDays: 20,\n }\n});\n```\n\n### Define an S3 Tables Namespace\n\n```ts\n// Build a namespace\nconst sampleNamespace = new Namespace(scope, 'ExampleNamespace', {\n namespaceName: 'example-namespace-1',\n tableBucket: tableBucket,\n});\n```\n\n### Define an S3 Table\n\n```ts\n// Build a table\nconst sampleTable = new Table(scope, 'ExampleTable', {\n tableName: 'example_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n withoutMetadata: true,\n});\n\n// Build a table with an Iceberg Schema\nconst sampleTableWithSchema = new Table(scope, 'ExampleSchemaTable', {\n tableName: 'example_table_with_schema',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n {\n name: 'id',\n type: 'int',\n required: true,\n },\n {\n name: 'name',\n type: 'string',\n },\n ],\n },\n },\n compaction: {\n status: Status.ENABLED,\n targetFileSizeMb: 128,\n },\n snapshotManagement: {\n status: Status.ENABLED,\n maxSnapshotAgeHours: 48,\n minSnapshotsToKeep: 5,\n },\n});\n```\n\nLearn more about table buckets maintenance operations and default behavior from the [S3 Tables User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-table-buckets-maintenance.html)\n\n### Advanced Iceberg Table Configuration\n\nYou can configure partition specifications, sort orders, and table properties for optimized query performance.\n\nThe simplest way to add partitioning to your table:\n\n```ts\n// Build a table with partition spec (minimal configuration)\nconst partitionedTable = new Table(scope, 'PartitionedTable', {\n tableName: 'partitioned_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { name: 'event_date', type: 'date', required: true },\n { name: 'event_name', type: 'string' },\n ],\n },\n icebergPartitionSpec: {\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n },\n ],\n },\n },\n});\n```\n\nFor full control, you can also configure sort orders and table properties:\n\n```ts\n// Build a table with partition spec, sort order, and table properties\nconst advancedTable = new Table(scope, 'AdvancedTable', {\n tableName: 'advanced_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { id: 1, name: 'event_date', type: 'date', required: true },\n { id: 2, name: 'user_id', type: 'string', required: true },\n ],\n },\n icebergPartitionSpec: {\n specId: 0,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n fieldId: 1000,\n },\n ],\n },\n icebergSortOrder: {\n orderId: 1,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n direction: SortDirection.ASC,\n nullOrder: NullOrder.NULLS_LAST,\n },\n ],\n },\n tableProperties: [\n { key: 'write.format.default', value: 'parquet' },\n ],\n },\n});\n```\n\n### Controlling Table Bucket Permissions\n\n```ts\n// Grant the principal read permissions to the bucket and all tables within\nconst accountId = '123456789012'\ntableBucket.grantRead(new iam.AccountPrincipal(accountId), '*');\n\n// Grant the role write permissions to the bucket and all tables within\nconst role = new iam.Role(stack, 'MyRole', { assumedBy: new iam.ServicePrincipal('sample') });\ntableBucket.grantWrite(role, '*');\n\n// Grant the user read and write permissions to the bucket and all tables within\ntableBucket.grantReadWrite(new iam.User(stack, 'MyUser'), '*');\n\n// Grant permissions to the bucket and a particular table within it\nconst tableId = '6ba046b2-26de-44cf-9144-0c7862593a7b'\ntableBucket.grantReadWrite(new iam.AccountPrincipal(accountId), tableId);\n\n// Add custom resource policy statements\nconst permissions = new iam.PolicyStatement({\n effect: iam.Effect.ALLOW,\n actions: ['s3tables:*'],\n principals: [ new iam.ServicePrincipal('example.aws.internal') ],\n resources: ['*']\n});\n\ntableBucket.addToResourcePolicy(permissions);\n```\n\n### Controlling Table Bucket Encryption Settings\n\nS3 TableBuckets have SSE (server-side encryption with AES-256) enabled by default with S3 managed keys.\nYou can also bring your own KMS key for KMS-SSE or have S3 create a KMS key for you.\n\nIf a bucket is encrypted with KMS, grant functions on the bucket will also grant access\nto the TableBucket's associated KMS key.\n\n```ts\n// Provide a user defined KMS Key:\nconst key = new kms.Key(scope, 'UserKey', {});\nconst encryptedBucket = new TableBucket(scope, 'EncryptedTableBucket', {\n tableBucketName: 'table-bucket-1',\n encryption: TableBucketEncryption.KMS,\n encryptionKey: key,\n});\n// This account principal will also receive kms:Decrypt access to the KMS key\nencryptedBucket.grantRead(new iam.AccountPrincipal('123456789012'), '*');\n\n// Use S3 managed server side encryption (default)\nconst encryptedBucketDefault = new TableBucket(scope, 'EncryptedTableBucketDefault', {\n tableBucketName: 'table-bucket-3',\n encryption: TableBucketEncryption.S3_MANAGED, // Uses AES-256 encryption by default\n});\n```\n\nWhen using KMS encryption (`TableBucketEncryption.KMS`), if no encryption key is provided, CDK will automatically create a new KMS key for the table bucket with necessary permissions.\n\n```ts\n// If no key is provided, one will be created automatically\nconst encryptedBucketAuto = new TableBucket(scope, 'EncryptedTableBucketAuto', {\n tableBucketName: 'table-bucket-2',\n encryption: TableBucketEncryption.KMS,\n});\n```\n\n### Enabling CloudWatch Request Metrics\n\nYou can enable CloudWatch request metrics for your table bucket. Request metrics provide insight into Amazon S3 Tables requests, helping you monitor and optimize your table bucket usage.\n\nFor more information about S3 Tables CloudWatch metrics, see the [S3 Tables CloudWatch Metrics documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-cloudwatch-metrics.html).\n\n```ts\n// Enable CloudWatch request metrics for the table bucket\nconst tableBucketWithMetrics = new TableBucket(scope, 'TableBucketWithMetrics', {\n tableBucketName: 'metrics-enabled-bucket',\n requestMetricsStatus: RequestMetricsStatus.ENABLED,\n});\n```\n\n### Controlling Table Permissions\n\n```ts\n// Grant the principal read permissions to the table\nconst accountId = '123456789012'\ntable.grantRead(new iam.AccountPrincipal(accountId));\n\n// Grant the role write permissions to the table\nconst role = new iam.Role(stack, 'MyRole', { assumedBy: new iam.ServicePrincipal('sample') });\ntable.grantWrite(role);\n\n// Grant the user read and write permissions to the table\ntable.grantReadWrite(new iam.User(stack, 'MyUser'));\n\n// Grant an account permissions to the table\ntable.grantReadWrite(new iam.AccountPrincipal(accountId));\n\n// Add custom resource policy statements\nconst permissions = new iam.PolicyStatement({\n effect: iam.Effect.ALLOW,\n actions: ['s3tables:*'],\n principals: [ new iam.ServicePrincipal('example.aws.internal') ],\n resources: ['*']\n});\n\ntable.addToResourcePolicy(permissions);\n```\n\n### Tagging\n\nBoth `TableBucket` and `Table` support tagging through CDK's standard tagging mechanism:\n\n```ts\nTags.of(tableBucket).add('Environment', 'Production');\nTags.of(table).add('Team', 'DataEngineering');\n\n// Stack-level tags propagate to all resources\nTags.of(stack).add('Project', 'DataLake');\n```\n\n## Coming Soon\n\nL2 Construct support for:\n\n- KMS encryption support for Tables\n"
8674
8732
  },
8675
8733
  "repository": {
8676
8734
  "directory": "packages/@aws-cdk/aws-s3tables-alpha",
@@ -8720,7 +8778,7 @@
8720
8778
  "kind": "interface",
8721
8779
  "locationInModule": {
8722
8780
  "filename": "lib/table.ts",
8723
- "line": 257
8781
+ "line": 259
8724
8782
  },
8725
8783
  "name": "CompactionProperty",
8726
8784
  "properties": [
@@ -8733,7 +8791,7 @@
8733
8791
  "immutable": true,
8734
8792
  "locationInModule": {
8735
8793
  "filename": "lib/table.ts",
8736
- "line": 261
8794
+ "line": 263
8737
8795
  },
8738
8796
  "name": "status",
8739
8797
  "type": {
@@ -8749,7 +8807,7 @@
8749
8807
  "immutable": true,
8750
8808
  "locationInModule": {
8751
8809
  "filename": "lib/table.ts",
8752
- "line": 265
8810
+ "line": 267
8753
8811
  },
8754
8812
  "name": "targetFileSizeMb",
8755
8813
  "type": {
@@ -8830,7 +8888,7 @@
8830
8888
  "kind": "interface",
8831
8889
  "locationInModule": {
8832
8890
  "filename": "lib/table.ts",
8833
- "line": 22
8891
+ "line": 24
8834
8892
  },
8835
8893
  "methods": [
8836
8894
  {
@@ -8843,7 +8901,7 @@
8843
8901
  },
8844
8902
  "locationInModule": {
8845
8903
  "filename": "lib/table.ts",
8846
- "line": 65
8904
+ "line": 67
8847
8905
  },
8848
8906
  "name": "addToResourcePolicy",
8849
8907
  "parameters": [
@@ -8872,7 +8930,7 @@
8872
8930
  },
8873
8931
  "locationInModule": {
8874
8932
  "filename": "lib/table.ts",
8875
- "line": 75
8933
+ "line": 77
8876
8934
  },
8877
8935
  "name": "grantRead",
8878
8936
  "parameters": [
@@ -8901,7 +8959,7 @@
8901
8959
  },
8902
8960
  "locationInModule": {
8903
8961
  "filename": "lib/table.ts",
8904
- "line": 97
8962
+ "line": 99
8905
8963
  },
8906
8964
  "name": "grantReadWrite",
8907
8965
  "parameters": [
@@ -8930,7 +8988,7 @@
8930
8988
  },
8931
8989
  "locationInModule": {
8932
8990
  "filename": "lib/table.ts",
8933
- "line": 86
8991
+ "line": 88
8934
8992
  },
8935
8993
  "name": "grantWrite",
8936
8994
  "parameters": [
@@ -8965,7 +9023,7 @@
8965
9023
  "immutable": true,
8966
9024
  "locationInModule": {
8967
9025
  "filename": "lib/table.ts",
8968
- "line": 27
9026
+ "line": 29
8969
9027
  },
8970
9028
  "name": "tableArn",
8971
9029
  "type": {
@@ -8984,7 +9042,7 @@
8984
9042
  "immutable": true,
8985
9043
  "locationInModule": {
8986
9044
  "filename": "lib/table.ts",
8987
- "line": 33
9045
+ "line": 35
8988
9046
  },
8989
9047
  "name": "tableName",
8990
9048
  "type": {
@@ -9003,7 +9061,7 @@
9003
9061
  "immutable": true,
9004
9062
  "locationInModule": {
9005
9063
  "filename": "lib/table.ts",
9006
- "line": 39
9064
+ "line": 41
9007
9065
  },
9008
9066
  "name": "account",
9009
9067
  "optional": true,
@@ -9023,7 +9081,7 @@
9023
9081
  "immutable": true,
9024
9082
  "locationInModule": {
9025
9083
  "filename": "lib/table.ts",
9026
- "line": 45
9084
+ "line": 47
9027
9085
  },
9028
9086
  "name": "region",
9029
9087
  "optional": true,
@@ -9311,7 +9369,7 @@
9311
9369
  "kind": "interface",
9312
9370
  "locationInModule": {
9313
9371
  "filename": "lib/table.ts",
9314
- "line": 286
9372
+ "line": 513
9315
9373
  },
9316
9374
  "name": "IcebergMetadataProperty",
9317
9375
  "properties": [
@@ -9325,257 +9383,840 @@
9325
9383
  "immutable": true,
9326
9384
  "locationInModule": {
9327
9385
  "filename": "lib/table.ts",
9328
- "line": 292
9386
+ "line": 519
9329
9387
  },
9330
9388
  "name": "icebergSchema",
9331
9389
  "type": {
9332
9390
  "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSchemaProperty"
9333
9391
  }
9334
- }
9335
- ],
9336
- "symbolId": "lib/table:IcebergMetadataProperty"
9337
- },
9338
- "@aws-cdk/aws-s3tables-alpha.IcebergSchemaProperty": {
9339
- "assembly": "@aws-cdk/aws-s3tables-alpha",
9340
- "datatype": true,
9341
- "docs": {
9342
- "stability": "experimental",
9343
- "summary": "Contains details about the schema for an Iceberg table.",
9344
- "example": "// Build a table\nconst sampleTable = new Table(scope, 'ExampleTable', {\n tableName: 'example_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n withoutMetadata: true,\n});\n\n// Build a table with an Iceberg Schema\nconst sampleTableWithSchema = new Table(scope, 'ExampleSchemaTable', {\n tableName: 'example_table_with_schema',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n {\n name: 'id',\n type: 'int',\n required: true,\n },\n {\n name: 'name',\n type: 'string',\n },\n ],\n },\n },\n compaction: {\n status: Status.ENABLED,\n targetFileSizeMb: 128,\n },\n snapshotManagement: {\n status: Status.ENABLED,\n maxSnapshotAgeHours: 48,\n minSnapshotsToKeep: 5,\n },\n});",
9345
- "custom": {
9346
- "exampleMetadata": "infused"
9347
- }
9348
- },
9349
- "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSchemaProperty",
9350
- "kind": "interface",
9351
- "locationInModule": {
9352
- "filename": "lib/table.ts",
9353
- "line": 298
9354
- },
9355
- "name": "IcebergSchemaProperty",
9356
- "properties": [
9392
+ },
9357
9393
  {
9358
9394
  "abstract": true,
9359
9395
  "docs": {
9396
+ "default": "- No partition specification",
9360
9397
  "stability": "experimental",
9361
- "summary": "Contains details about the schema for an Iceberg table."
9398
+ "summary": "The partition specification for the Iceberg table."
9362
9399
  },
9363
9400
  "immutable": true,
9364
9401
  "locationInModule": {
9365
9402
  "filename": "lib/table.ts",
9366
- "line": 302
9403
+ "line": 526
9367
9404
  },
9368
- "name": "schemaFieldList",
9405
+ "name": "icebergPartitionSpec",
9406
+ "optional": true,
9407
+ "type": {
9408
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergPartitionSpec"
9409
+ }
9410
+ },
9411
+ {
9412
+ "abstract": true,
9413
+ "docs": {
9414
+ "default": "- No sort order",
9415
+ "stability": "experimental",
9416
+ "summary": "The sort order for the Iceberg table."
9417
+ },
9418
+ "immutable": true,
9419
+ "locationInModule": {
9420
+ "filename": "lib/table.ts",
9421
+ "line": 533
9422
+ },
9423
+ "name": "icebergSortOrder",
9424
+ "optional": true,
9425
+ "type": {
9426
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSortOrder"
9427
+ }
9428
+ },
9429
+ {
9430
+ "abstract": true,
9431
+ "docs": {
9432
+ "default": "- No custom properties",
9433
+ "remarks": "Each entry represents a key-value pair for Iceberg table configuration.",
9434
+ "stability": "experimental",
9435
+ "summary": "Custom properties for the Iceberg table."
9436
+ },
9437
+ "immutable": true,
9438
+ "locationInModule": {
9439
+ "filename": "lib/table.ts",
9440
+ "line": 541
9441
+ },
9442
+ "name": "tableProperties",
9443
+ "optional": true,
9369
9444
  "type": {
9370
9445
  "collection": {
9371
9446
  "elementtype": {
9372
- "fqn": "@aws-cdk/aws-s3tables-alpha.SchemaFieldProperty"
9447
+ "fqn": "@aws-cdk/aws-s3tables-alpha.TablePropertyEntry"
9373
9448
  },
9374
9449
  "kind": "array"
9375
9450
  }
9376
9451
  }
9377
9452
  }
9378
9453
  ],
9379
- "symbolId": "lib/table:IcebergSchemaProperty"
9454
+ "symbolId": "lib/table:IcebergMetadataProperty"
9380
9455
  },
9381
- "@aws-cdk/aws-s3tables-alpha.Namespace": {
9456
+ "@aws-cdk/aws-s3tables-alpha.IcebergPartitionField": {
9382
9457
  "assembly": "@aws-cdk/aws-s3tables-alpha",
9383
- "base": "aws-cdk-lib.Resource",
9458
+ "datatype": true,
9384
9459
  "docs": {
9385
- "remarks": "A namespace is a logical container for tables within a table bucket.",
9460
+ "remarks": "Defines a single partition column. Multiple partition fields can be combined\nin an IcebergPartitionSpec to create multi-level partitioning.",
9386
9461
  "stability": "experimental",
9387
- "summary": "An S3 Tables Namespace with helpers.",
9388
- "example": "// Build a namespace\nconst sampleNamespace = new Namespace(scope, 'ExampleNamespace', {\n namespaceName: 'example-namespace-1',\n tableBucket: tableBucket,\n});",
9462
+ "summary": "Partition field definition for Iceberg table.",
9463
+ "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\n\ndeclare const icebergTransform: s3tables_alpha.IcebergTransform;\nconst icebergPartitionField: s3tables_alpha.IcebergPartitionField = {\n name: 'name',\n sourceId: 123,\n transform: icebergTransform,\n\n // the properties below are optional\n fieldId: 123,\n};",
9389
9464
  "custom": {
9390
- "exampleMetadata": "infused"
9465
+ "exampleMetadata": "fixture=_generated"
9391
9466
  }
9392
9467
  },
9393
- "fqn": "@aws-cdk/aws-s3tables-alpha.Namespace",
9394
- "initializer": {
9395
- "docs": {
9396
- "stability": "experimental"
9397
- },
9398
- "locationInModule": {
9399
- "filename": "lib/namespace.ts",
9400
- "line": 157
9401
- },
9402
- "parameters": [
9403
- {
9404
- "name": "scope",
9405
- "type": {
9406
- "fqn": "constructs.Construct"
9407
- }
9408
- },
9409
- {
9410
- "name": "id",
9411
- "type": {
9412
- "primitive": "string"
9413
- }
9414
- },
9415
- {
9416
- "name": "props",
9417
- "type": {
9418
- "fqn": "@aws-cdk/aws-s3tables-alpha.NamespaceProps"
9419
- }
9420
- }
9421
- ]
9422
- },
9423
- "interfaces": [
9424
- "@aws-cdk/aws-s3tables-alpha.INamespace"
9425
- ],
9426
- "kind": "class",
9468
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergPartitionField",
9469
+ "kind": "interface",
9427
9470
  "locationInModule": {
9428
- "filename": "lib/namespace.ts",
9429
- "line": 66
9471
+ "filename": "lib/table.ts",
9472
+ "line": 403
9430
9473
  },
9431
- "methods": [
9474
+ "name": "IcebergPartitionField",
9475
+ "properties": [
9432
9476
  {
9477
+ "abstract": true,
9433
9478
  "docs": {
9434
9479
  "stability": "experimental",
9435
- "summary": "Import an existing namespace from its attributes."
9480
+ "summary": "The name of the partition field."
9436
9481
  },
9482
+ "immutable": true,
9437
9483
  "locationInModule": {
9438
- "filename": "lib/namespace.ts",
9439
- "line": 74
9440
- },
9441
- "name": "fromNamespaceAttributes",
9442
- "parameters": [
9443
- {
9444
- "name": "scope",
9445
- "type": {
9446
- "fqn": "constructs.Construct"
9447
- }
9448
- },
9449
- {
9450
- "name": "id",
9451
- "type": {
9452
- "primitive": "string"
9453
- }
9454
- },
9455
- {
9456
- "name": "attrs",
9457
- "type": {
9458
- "fqn": "@aws-cdk/aws-s3tables-alpha.NamespaceAttributes"
9459
- }
9460
- }
9461
- ],
9462
- "returns": {
9463
- "type": {
9464
- "fqn": "@aws-cdk/aws-s3tables-alpha.INamespace"
9465
- }
9484
+ "filename": "lib/table.ts",
9485
+ "line": 419
9466
9486
  },
9467
- "static": true
9487
+ "name": "name",
9488
+ "type": {
9489
+ "primitive": "string"
9490
+ }
9468
9491
  },
9469
9492
  {
9470
- "docs": {
9471
- "custom": {
9472
- "throws": "UnscopedValidationError if any naming errors are detected"
9473
- },
9474
- "stability": "experimental",
9475
- "summary": "See https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html."
9476
- },
9477
- "locationInModule": {
9478
- "filename": "lib/namespace.ts",
9479
- "line": 87
9480
- },
9481
- "name": "validateNamespaceName",
9482
- "parameters": [
9483
- {
9484
- "docs": {
9485
- "summary": "Name of the namespace."
9486
- },
9487
- "name": "namespaceName",
9488
- "type": {
9489
- "primitive": "string"
9490
- }
9491
- }
9492
- ],
9493
- "static": true
9494
- }
9495
- ],
9496
- "name": "Namespace",
9497
- "properties": [
9498
- {
9499
- "const": true,
9493
+ "abstract": true,
9500
9494
  "docs": {
9501
9495
  "stability": "experimental",
9502
- "summary": "Uniquely identifies this class."
9496
+ "summary": "The source field ID from the schema."
9503
9497
  },
9504
9498
  "immutable": true,
9505
9499
  "locationInModule": {
9506
- "filename": "lib/namespace.ts",
9507
- "line": 69
9500
+ "filename": "lib/table.ts",
9501
+ "line": 407
9508
9502
  },
9509
- "name": "PROPERTY_INJECTION_ID",
9510
- "static": true,
9503
+ "name": "sourceId",
9511
9504
  "type": {
9512
- "primitive": "string"
9505
+ "primitive": "number"
9513
9506
  }
9514
9507
  },
9515
9508
  {
9509
+ "abstract": true,
9516
9510
  "docs": {
9511
+ "remarks": "Use `IcebergTransform` static properties for common transforms (e.g., `IcebergTransform.IDENTITY`)\nor methods for parameterized transforms (e.g., `IcebergTransform.bucket(16)`).",
9517
9512
  "stability": "experimental",
9518
- "summary": "The name of this namespace."
9513
+ "summary": "The partition transform function."
9519
9514
  },
9520
9515
  "immutable": true,
9521
9516
  "locationInModule": {
9522
- "filename": "lib/namespace.ts",
9523
- "line": 150
9517
+ "filename": "lib/table.ts",
9518
+ "line": 415
9524
9519
  },
9525
- "name": "namespaceName",
9526
- "overrides": "@aws-cdk/aws-s3tables-alpha.INamespace",
9520
+ "name": "transform",
9527
9521
  "type": {
9528
- "primitive": "string"
9522
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9529
9523
  }
9530
9524
  },
9531
9525
  {
9526
+ "abstract": true,
9532
9527
  "docs": {
9528
+ "default": "- Auto-assigned starting from 1000",
9533
9529
  "stability": "experimental",
9534
- "summary": "The table bucket which this namespace belongs to."
9530
+ "summary": "The unique identifier for the partition field."
9535
9531
  },
9536
9532
  "immutable": true,
9537
9533
  "locationInModule": {
9538
- "filename": "lib/namespace.ts",
9539
- "line": 155
9534
+ "filename": "lib/table.ts",
9535
+ "line": 426
9540
9536
  },
9541
- "name": "tableBucket",
9542
- "overrides": "@aws-cdk/aws-s3tables-alpha.INamespace",
9537
+ "name": "fieldId",
9538
+ "optional": true,
9543
9539
  "type": {
9544
- "fqn": "@aws-cdk/aws-s3tables-alpha.ITableBucket"
9540
+ "primitive": "number"
9545
9541
  }
9546
9542
  }
9547
9543
  ],
9548
- "symbolId": "lib/namespace:Namespace"
9544
+ "symbolId": "lib/table:IcebergPartitionField"
9549
9545
  },
9550
- "@aws-cdk/aws-s3tables-alpha.NamespaceAttributes": {
9546
+ "@aws-cdk/aws-s3tables-alpha.IcebergPartitionSpec": {
9551
9547
  "assembly": "@aws-cdk/aws-s3tables-alpha",
9552
9548
  "datatype": true,
9553
9549
  "docs": {
9550
+ "remarks": "Contains the complete partitioning configuration for a table, including all partition fields.\nUse this to define multi-level partitioning (e.g., partition by date, then by region).",
9554
9551
  "stability": "experimental",
9555
- "summary": "Attributes for importing an existing namespace.",
9556
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\n\ndeclare const tableBucket: s3tables_alpha.TableBucket;\nconst namespaceAttributes: s3tables_alpha.NamespaceAttributes = {\n namespaceName: 'namespaceName',\n tableBucket: tableBucket,\n};",
9552
+ "summary": "Partition specification for Iceberg table.",
9553
+ "example": "// Build a table with partition spec (minimal configuration)\nconst partitionedTable = new Table(scope, 'PartitionedTable', {\n tableName: 'partitioned_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { name: 'event_date', type: 'date', required: true },\n { name: 'event_name', type: 'string' },\n ],\n },\n icebergPartitionSpec: {\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n },\n ],\n },\n },\n});",
9557
9554
  "custom": {
9558
- "exampleMetadata": "fixture=_generated"
9555
+ "exampleMetadata": "infused"
9559
9556
  }
9560
9557
  },
9561
- "fqn": "@aws-cdk/aws-s3tables-alpha.NamespaceAttributes",
9558
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergPartitionSpec",
9562
9559
  "kind": "interface",
9563
9560
  "locationInModule": {
9564
- "filename": "lib/namespace.ts",
9565
- "line": 49
9561
+ "filename": "lib/table.ts",
9562
+ "line": 435
9566
9563
  },
9567
- "name": "NamespaceAttributes",
9564
+ "name": "IcebergPartitionSpec",
9568
9565
  "properties": [
9569
9566
  {
9570
9567
  "abstract": true,
9571
9568
  "docs": {
9572
9569
  "stability": "experimental",
9573
- "summary": "The name of the namespace."
9570
+ "summary": "The list of partition fields."
9574
9571
  },
9575
9572
  "immutable": true,
9576
9573
  "locationInModule": {
9577
- "filename": "lib/namespace.ts",
9578
- "line": 53
9574
+ "filename": "lib/table.ts",
9575
+ "line": 439
9576
+ },
9577
+ "name": "fields",
9578
+ "type": {
9579
+ "collection": {
9580
+ "elementtype": {
9581
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergPartitionField"
9582
+ },
9583
+ "kind": "array"
9584
+ }
9585
+ }
9586
+ },
9587
+ {
9588
+ "abstract": true,
9589
+ "docs": {
9590
+ "default": "0",
9591
+ "stability": "experimental",
9592
+ "summary": "The unique identifier for the partition specification."
9593
+ },
9594
+ "immutable": true,
9595
+ "locationInModule": {
9596
+ "filename": "lib/table.ts",
9597
+ "line": 446
9598
+ },
9599
+ "name": "specId",
9600
+ "optional": true,
9601
+ "type": {
9602
+ "primitive": "number"
9603
+ }
9604
+ }
9605
+ ],
9606
+ "symbolId": "lib/table:IcebergPartitionSpec"
9607
+ },
9608
+ "@aws-cdk/aws-s3tables-alpha.IcebergSchemaProperty": {
9609
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
9610
+ "datatype": true,
9611
+ "docs": {
9612
+ "stability": "experimental",
9613
+ "summary": "Contains details about the schema for an Iceberg table.",
9614
+ "example": "// Build a table\nconst sampleTable = new Table(scope, 'ExampleTable', {\n tableName: 'example_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n withoutMetadata: true,\n});\n\n// Build a table with an Iceberg Schema\nconst sampleTableWithSchema = new Table(scope, 'ExampleSchemaTable', {\n tableName: 'example_table_with_schema',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n {\n name: 'id',\n type: 'int',\n required: true,\n },\n {\n name: 'name',\n type: 'string',\n },\n ],\n },\n },\n compaction: {\n status: Status.ENABLED,\n targetFileSizeMb: 128,\n },\n snapshotManagement: {\n status: Status.ENABLED,\n maxSnapshotAgeHours: 48,\n minSnapshotsToKeep: 5,\n },\n});",
9615
+ "custom": {
9616
+ "exampleMetadata": "infused"
9617
+ }
9618
+ },
9619
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSchemaProperty",
9620
+ "kind": "interface",
9621
+ "locationInModule": {
9622
+ "filename": "lib/table.ts",
9623
+ "line": 547
9624
+ },
9625
+ "name": "IcebergSchemaProperty",
9626
+ "properties": [
9627
+ {
9628
+ "abstract": true,
9629
+ "docs": {
9630
+ "stability": "experimental",
9631
+ "summary": "Contains details about the schema for an Iceberg table."
9632
+ },
9633
+ "immutable": true,
9634
+ "locationInModule": {
9635
+ "filename": "lib/table.ts",
9636
+ "line": 551
9637
+ },
9638
+ "name": "schemaFieldList",
9639
+ "type": {
9640
+ "collection": {
9641
+ "elementtype": {
9642
+ "fqn": "@aws-cdk/aws-s3tables-alpha.SchemaFieldProperty"
9643
+ },
9644
+ "kind": "array"
9645
+ }
9646
+ }
9647
+ }
9648
+ ],
9649
+ "symbolId": "lib/table:IcebergSchemaProperty"
9650
+ },
9651
+ "@aws-cdk/aws-s3tables-alpha.IcebergSortField": {
9652
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
9653
+ "datatype": true,
9654
+ "docs": {
9655
+ "stability": "experimental",
9656
+ "summary": "Sort field definition for Iceberg table.",
9657
+ "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\n\ndeclare const icebergTransform: s3tables_alpha.IcebergTransform;\nconst icebergSortField: s3tables_alpha.IcebergSortField = {\n direction: s3tables_alpha.SortDirection.ASC,\n nullOrder: s3tables_alpha.NullOrder.NULLS_FIRST,\n sourceId: 123,\n transform: icebergTransform,\n};",
9658
+ "custom": {
9659
+ "exampleMetadata": "fixture=_generated"
9660
+ }
9661
+ },
9662
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSortField",
9663
+ "kind": "interface",
9664
+ "locationInModule": {
9665
+ "filename": "lib/table.ts",
9666
+ "line": 452
9667
+ },
9668
+ "name": "IcebergSortField",
9669
+ "properties": [
9670
+ {
9671
+ "abstract": true,
9672
+ "docs": {
9673
+ "stability": "experimental",
9674
+ "summary": "The sort direction."
9675
+ },
9676
+ "immutable": true,
9677
+ "locationInModule": {
9678
+ "filename": "lib/table.ts",
9679
+ "line": 469
9680
+ },
9681
+ "name": "direction",
9682
+ "type": {
9683
+ "fqn": "@aws-cdk/aws-s3tables-alpha.SortDirection"
9684
+ }
9685
+ },
9686
+ {
9687
+ "abstract": true,
9688
+ "docs": {
9689
+ "stability": "experimental",
9690
+ "summary": "The null ordering."
9691
+ },
9692
+ "immutable": true,
9693
+ "locationInModule": {
9694
+ "filename": "lib/table.ts",
9695
+ "line": 474
9696
+ },
9697
+ "name": "nullOrder",
9698
+ "type": {
9699
+ "fqn": "@aws-cdk/aws-s3tables-alpha.NullOrder"
9700
+ }
9701
+ },
9702
+ {
9703
+ "abstract": true,
9704
+ "docs": {
9705
+ "stability": "experimental",
9706
+ "summary": "The source field ID from the schema."
9707
+ },
9708
+ "immutable": true,
9709
+ "locationInModule": {
9710
+ "filename": "lib/table.ts",
9711
+ "line": 456
9712
+ },
9713
+ "name": "sourceId",
9714
+ "type": {
9715
+ "primitive": "number"
9716
+ }
9717
+ },
9718
+ {
9719
+ "abstract": true,
9720
+ "docs": {
9721
+ "remarks": "Use `IcebergTransform` static properties for common transforms (e.g., `IcebergTransform.IDENTITY`)\nor methods for parameterized transforms (e.g., `IcebergTransform.bucket(16)`).",
9722
+ "stability": "experimental",
9723
+ "summary": "The sort transform function."
9724
+ },
9725
+ "immutable": true,
9726
+ "locationInModule": {
9727
+ "filename": "lib/table.ts",
9728
+ "line": 464
9729
+ },
9730
+ "name": "transform",
9731
+ "type": {
9732
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9733
+ }
9734
+ }
9735
+ ],
9736
+ "symbolId": "lib/table:IcebergSortField"
9737
+ },
9738
+ "@aws-cdk/aws-s3tables-alpha.IcebergSortOrder": {
9739
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
9740
+ "datatype": true,
9741
+ "docs": {
9742
+ "stability": "experimental",
9743
+ "summary": "Sort order specification for Iceberg table.",
9744
+ "example": "// Build a table with partition spec, sort order, and table properties\nconst advancedTable = new Table(scope, 'AdvancedTable', {\n tableName: 'advanced_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { id: 1, name: 'event_date', type: 'date', required: true },\n { id: 2, name: 'user_id', type: 'string', required: true },\n ],\n },\n icebergPartitionSpec: {\n specId: 0,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n fieldId: 1000,\n },\n ],\n },\n icebergSortOrder: {\n orderId: 1,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n direction: SortDirection.ASC,\n nullOrder: NullOrder.NULLS_LAST,\n },\n ],\n },\n tableProperties: [\n { key: 'write.format.default', value: 'parquet' },\n ],\n },\n});",
9745
+ "custom": {
9746
+ "exampleMetadata": "infused"
9747
+ }
9748
+ },
9749
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSortOrder",
9750
+ "kind": "interface",
9751
+ "locationInModule": {
9752
+ "filename": "lib/table.ts",
9753
+ "line": 480
9754
+ },
9755
+ "name": "IcebergSortOrder",
9756
+ "properties": [
9757
+ {
9758
+ "abstract": true,
9759
+ "docs": {
9760
+ "stability": "experimental",
9761
+ "summary": "The list of sort fields."
9762
+ },
9763
+ "immutable": true,
9764
+ "locationInModule": {
9765
+ "filename": "lib/table.ts",
9766
+ "line": 484
9767
+ },
9768
+ "name": "fields",
9769
+ "type": {
9770
+ "collection": {
9771
+ "elementtype": {
9772
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergSortField"
9773
+ },
9774
+ "kind": "array"
9775
+ }
9776
+ }
9777
+ },
9778
+ {
9779
+ "abstract": true,
9780
+ "docs": {
9781
+ "default": "1",
9782
+ "stability": "experimental",
9783
+ "summary": "The unique identifier for the sort order."
9784
+ },
9785
+ "immutable": true,
9786
+ "locationInModule": {
9787
+ "filename": "lib/table.ts",
9788
+ "line": 491
9789
+ },
9790
+ "name": "orderId",
9791
+ "optional": true,
9792
+ "type": {
9793
+ "primitive": "number"
9794
+ }
9795
+ }
9796
+ ],
9797
+ "symbolId": "lib/table:IcebergSortOrder"
9798
+ },
9799
+ "@aws-cdk/aws-s3tables-alpha.IcebergTransform": {
9800
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
9801
+ "docs": {
9802
+ "stability": "experimental",
9803
+ "summary": "Iceberg transform values for partition and sort fields.",
9804
+ "example": "// Build a table with partition spec (minimal configuration)\nconst partitionedTable = new Table(scope, 'PartitionedTable', {\n tableName: 'partitioned_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { name: 'event_date', type: 'date', required: true },\n { name: 'event_name', type: 'string' },\n ],\n },\n icebergPartitionSpec: {\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n },\n ],\n },\n },\n});",
9805
+ "custom": {
9806
+ "exampleMetadata": "infused"
9807
+ }
9808
+ },
9809
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform",
9810
+ "kind": "class",
9811
+ "locationInModule": {
9812
+ "filename": "lib/table.ts",
9813
+ "line": 287
9814
+ },
9815
+ "methods": [
9816
+ {
9817
+ "docs": {
9818
+ "stability": "experimental",
9819
+ "summary": "Transform values into a fixed number of buckets."
9820
+ },
9821
+ "locationInModule": {
9822
+ "filename": "lib/table.ts",
9823
+ "line": 318
9824
+ },
9825
+ "name": "bucket",
9826
+ "parameters": [
9827
+ {
9828
+ "docs": {
9829
+ "summary": "The number of buckets (must be a positive integer)."
9830
+ },
9831
+ "name": "n",
9832
+ "type": {
9833
+ "primitive": "number"
9834
+ }
9835
+ }
9836
+ ],
9837
+ "returns": {
9838
+ "type": {
9839
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9840
+ }
9841
+ },
9842
+ "static": true
9843
+ },
9844
+ {
9845
+ "docs": {
9846
+ "stability": "experimental",
9847
+ "summary": "Create a custom transform from a string value."
9848
+ },
9849
+ "locationInModule": {
9850
+ "filename": "lib/table.ts",
9851
+ "line": 348
9852
+ },
9853
+ "name": "of",
9854
+ "parameters": [
9855
+ {
9856
+ "docs": {
9857
+ "summary": "The transform string value."
9858
+ },
9859
+ "name": "value",
9860
+ "type": {
9861
+ "primitive": "string"
9862
+ }
9863
+ }
9864
+ ],
9865
+ "returns": {
9866
+ "type": {
9867
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9868
+ }
9869
+ },
9870
+ "static": true
9871
+ },
9872
+ {
9873
+ "docs": {
9874
+ "stability": "experimental",
9875
+ "summary": "Truncate values to a fixed width."
9876
+ },
9877
+ "locationInModule": {
9878
+ "filename": "lib/table.ts",
9879
+ "line": 333
9880
+ },
9881
+ "name": "truncate",
9882
+ "parameters": [
9883
+ {
9884
+ "docs": {
9885
+ "summary": "The truncation width (must be a positive integer)."
9886
+ },
9887
+ "name": "width",
9888
+ "type": {
9889
+ "primitive": "number"
9890
+ }
9891
+ }
9892
+ ],
9893
+ "returns": {
9894
+ "type": {
9895
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9896
+ }
9897
+ },
9898
+ "static": true
9899
+ },
9900
+ {
9901
+ "docs": {
9902
+ "stability": "experimental",
9903
+ "summary": "Returns the string representation of the transform."
9904
+ },
9905
+ "locationInModule": {
9906
+ "filename": "lib/table.ts",
9907
+ "line": 364
9908
+ },
9909
+ "name": "toString",
9910
+ "returns": {
9911
+ "type": {
9912
+ "primitive": "string"
9913
+ }
9914
+ }
9915
+ }
9916
+ ],
9917
+ "name": "IcebergTransform",
9918
+ "properties": [
9919
+ {
9920
+ "const": true,
9921
+ "docs": {
9922
+ "stability": "experimental",
9923
+ "summary": "Transform a timestamp/date field to day."
9924
+ },
9925
+ "immutable": true,
9926
+ "locationInModule": {
9927
+ "filename": "lib/table.ts",
9928
+ "line": 306
9929
+ },
9930
+ "name": "DAY",
9931
+ "static": true,
9932
+ "type": {
9933
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9934
+ }
9935
+ },
9936
+ {
9937
+ "const": true,
9938
+ "docs": {
9939
+ "stability": "experimental",
9940
+ "summary": "Transform a timestamp field to hour."
9941
+ },
9942
+ "immutable": true,
9943
+ "locationInModule": {
9944
+ "filename": "lib/table.ts",
9945
+ "line": 311
9946
+ },
9947
+ "name": "HOUR",
9948
+ "static": true,
9949
+ "type": {
9950
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9951
+ }
9952
+ },
9953
+ {
9954
+ "const": true,
9955
+ "docs": {
9956
+ "stability": "experimental",
9957
+ "summary": "Use the column value as the transform value without transformation."
9958
+ },
9959
+ "immutable": true,
9960
+ "locationInModule": {
9961
+ "filename": "lib/table.ts",
9962
+ "line": 291
9963
+ },
9964
+ "name": "IDENTITY",
9965
+ "static": true,
9966
+ "type": {
9967
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9968
+ }
9969
+ },
9970
+ {
9971
+ "const": true,
9972
+ "docs": {
9973
+ "stability": "experimental",
9974
+ "summary": "Transform a timestamp/date field to month."
9975
+ },
9976
+ "immutable": true,
9977
+ "locationInModule": {
9978
+ "filename": "lib/table.ts",
9979
+ "line": 301
9980
+ },
9981
+ "name": "MONTH",
9982
+ "static": true,
9983
+ "type": {
9984
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
9985
+ }
9986
+ },
9987
+ {
9988
+ "const": true,
9989
+ "docs": {
9990
+ "stability": "experimental",
9991
+ "summary": "Transform a timestamp/date field to year."
9992
+ },
9993
+ "immutable": true,
9994
+ "locationInModule": {
9995
+ "filename": "lib/table.ts",
9996
+ "line": 296
9997
+ },
9998
+ "name": "YEAR",
9999
+ "static": true,
10000
+ "type": {
10001
+ "fqn": "@aws-cdk/aws-s3tables-alpha.IcebergTransform"
10002
+ }
10003
+ },
10004
+ {
10005
+ "docs": {
10006
+ "stability": "experimental",
10007
+ "summary": "The string value of the transform."
10008
+ },
10009
+ "immutable": true,
10010
+ "locationInModule": {
10011
+ "filename": "lib/table.ts",
10012
+ "line": 355
10013
+ },
10014
+ "name": "value",
10015
+ "type": {
10016
+ "primitive": "string"
10017
+ }
10018
+ }
10019
+ ],
10020
+ "symbolId": "lib/table:IcebergTransform"
10021
+ },
10022
+ "@aws-cdk/aws-s3tables-alpha.Namespace": {
10023
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
10024
+ "base": "aws-cdk-lib.Resource",
10025
+ "docs": {
10026
+ "remarks": "A namespace is a logical container for tables within a table bucket.",
10027
+ "stability": "experimental",
10028
+ "summary": "An S3 Tables Namespace with helpers.",
10029
+ "example": "// Build a namespace\nconst sampleNamespace = new Namespace(scope, 'ExampleNamespace', {\n namespaceName: 'example-namespace-1',\n tableBucket: tableBucket,\n});",
10030
+ "custom": {
10031
+ "exampleMetadata": "infused"
10032
+ }
10033
+ },
10034
+ "fqn": "@aws-cdk/aws-s3tables-alpha.Namespace",
10035
+ "initializer": {
10036
+ "docs": {
10037
+ "stability": "experimental"
10038
+ },
10039
+ "locationInModule": {
10040
+ "filename": "lib/namespace.ts",
10041
+ "line": 157
10042
+ },
10043
+ "parameters": [
10044
+ {
10045
+ "name": "scope",
10046
+ "type": {
10047
+ "fqn": "constructs.Construct"
10048
+ }
10049
+ },
10050
+ {
10051
+ "name": "id",
10052
+ "type": {
10053
+ "primitive": "string"
10054
+ }
10055
+ },
10056
+ {
10057
+ "name": "props",
10058
+ "type": {
10059
+ "fqn": "@aws-cdk/aws-s3tables-alpha.NamespaceProps"
10060
+ }
10061
+ }
10062
+ ]
10063
+ },
10064
+ "interfaces": [
10065
+ "@aws-cdk/aws-s3tables-alpha.INamespace"
10066
+ ],
10067
+ "kind": "class",
10068
+ "locationInModule": {
10069
+ "filename": "lib/namespace.ts",
10070
+ "line": 66
10071
+ },
10072
+ "methods": [
10073
+ {
10074
+ "docs": {
10075
+ "stability": "experimental",
10076
+ "summary": "Import an existing namespace from its attributes."
10077
+ },
10078
+ "locationInModule": {
10079
+ "filename": "lib/namespace.ts",
10080
+ "line": 74
10081
+ },
10082
+ "name": "fromNamespaceAttributes",
10083
+ "parameters": [
10084
+ {
10085
+ "name": "scope",
10086
+ "type": {
10087
+ "fqn": "constructs.Construct"
10088
+ }
10089
+ },
10090
+ {
10091
+ "name": "id",
10092
+ "type": {
10093
+ "primitive": "string"
10094
+ }
10095
+ },
10096
+ {
10097
+ "name": "attrs",
10098
+ "type": {
10099
+ "fqn": "@aws-cdk/aws-s3tables-alpha.NamespaceAttributes"
10100
+ }
10101
+ }
10102
+ ],
10103
+ "returns": {
10104
+ "type": {
10105
+ "fqn": "@aws-cdk/aws-s3tables-alpha.INamespace"
10106
+ }
10107
+ },
10108
+ "static": true
10109
+ },
10110
+ {
10111
+ "docs": {
10112
+ "custom": {
10113
+ "throws": "UnscopedValidationError if any naming errors are detected"
10114
+ },
10115
+ "stability": "experimental",
10116
+ "summary": "See https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html."
10117
+ },
10118
+ "locationInModule": {
10119
+ "filename": "lib/namespace.ts",
10120
+ "line": 87
10121
+ },
10122
+ "name": "validateNamespaceName",
10123
+ "parameters": [
10124
+ {
10125
+ "docs": {
10126
+ "summary": "Name of the namespace."
10127
+ },
10128
+ "name": "namespaceName",
10129
+ "type": {
10130
+ "primitive": "string"
10131
+ }
10132
+ }
10133
+ ],
10134
+ "static": true
10135
+ }
10136
+ ],
10137
+ "name": "Namespace",
10138
+ "properties": [
10139
+ {
10140
+ "const": true,
10141
+ "docs": {
10142
+ "stability": "experimental",
10143
+ "summary": "Uniquely identifies this class."
10144
+ },
10145
+ "immutable": true,
10146
+ "locationInModule": {
10147
+ "filename": "lib/namespace.ts",
10148
+ "line": 69
10149
+ },
10150
+ "name": "PROPERTY_INJECTION_ID",
10151
+ "static": true,
10152
+ "type": {
10153
+ "primitive": "string"
10154
+ }
10155
+ },
10156
+ {
10157
+ "docs": {
10158
+ "stability": "experimental",
10159
+ "summary": "The name of this namespace."
10160
+ },
10161
+ "immutable": true,
10162
+ "locationInModule": {
10163
+ "filename": "lib/namespace.ts",
10164
+ "line": 150
10165
+ },
10166
+ "name": "namespaceName",
10167
+ "overrides": "@aws-cdk/aws-s3tables-alpha.INamespace",
10168
+ "type": {
10169
+ "primitive": "string"
10170
+ }
10171
+ },
10172
+ {
10173
+ "docs": {
10174
+ "stability": "experimental",
10175
+ "summary": "The table bucket which this namespace belongs to."
10176
+ },
10177
+ "immutable": true,
10178
+ "locationInModule": {
10179
+ "filename": "lib/namespace.ts",
10180
+ "line": 155
10181
+ },
10182
+ "name": "tableBucket",
10183
+ "overrides": "@aws-cdk/aws-s3tables-alpha.INamespace",
10184
+ "type": {
10185
+ "fqn": "@aws-cdk/aws-s3tables-alpha.ITableBucket"
10186
+ }
10187
+ }
10188
+ ],
10189
+ "symbolId": "lib/namespace:Namespace"
10190
+ },
10191
+ "@aws-cdk/aws-s3tables-alpha.NamespaceAttributes": {
10192
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
10193
+ "datatype": true,
10194
+ "docs": {
10195
+ "stability": "experimental",
10196
+ "summary": "Attributes for importing an existing namespace.",
10197
+ "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\n\ndeclare const tableBucket: s3tables_alpha.TableBucket;\nconst namespaceAttributes: s3tables_alpha.NamespaceAttributes = {\n namespaceName: 'namespaceName',\n tableBucket: tableBucket,\n};",
10198
+ "custom": {
10199
+ "exampleMetadata": "fixture=_generated"
10200
+ }
10201
+ },
10202
+ "fqn": "@aws-cdk/aws-s3tables-alpha.NamespaceAttributes",
10203
+ "kind": "interface",
10204
+ "locationInModule": {
10205
+ "filename": "lib/namespace.ts",
10206
+ "line": 49
10207
+ },
10208
+ "name": "NamespaceAttributes",
10209
+ "properties": [
10210
+ {
10211
+ "abstract": true,
10212
+ "docs": {
10213
+ "stability": "experimental",
10214
+ "summary": "The name of the namespace."
10215
+ },
10216
+ "immutable": true,
10217
+ "locationInModule": {
10218
+ "filename": "lib/namespace.ts",
10219
+ "line": 53
9579
10220
  },
9580
10221
  "name": "namespaceName",
9581
10222
  "type": {
@@ -9673,6 +10314,41 @@
9673
10314
  ],
9674
10315
  "symbolId": "lib/namespace:NamespaceProps"
9675
10316
  },
10317
+ "@aws-cdk/aws-s3tables-alpha.NullOrder": {
10318
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
10319
+ "docs": {
10320
+ "stability": "experimental",
10321
+ "summary": "Null ordering values for Iceberg sort fields.",
10322
+ "example": "// Build a table with partition spec, sort order, and table properties\nconst advancedTable = new Table(scope, 'AdvancedTable', {\n tableName: 'advanced_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { id: 1, name: 'event_date', type: 'date', required: true },\n { id: 2, name: 'user_id', type: 'string', required: true },\n ],\n },\n icebergPartitionSpec: {\n specId: 0,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n fieldId: 1000,\n },\n ],\n },\n icebergSortOrder: {\n orderId: 1,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n direction: SortDirection.ASC,\n nullOrder: NullOrder.NULLS_LAST,\n },\n ],\n },\n tableProperties: [\n { key: 'write.format.default', value: 'parquet' },\n ],\n },\n});",
10323
+ "custom": {
10324
+ "exampleMetadata": "infused"
10325
+ }
10326
+ },
10327
+ "fqn": "@aws-cdk/aws-s3tables-alpha.NullOrder",
10328
+ "kind": "enum",
10329
+ "locationInModule": {
10330
+ "filename": "lib/table.ts",
10331
+ "line": 386
10332
+ },
10333
+ "members": [
10334
+ {
10335
+ "docs": {
10336
+ "stability": "experimental",
10337
+ "summary": "Place null values before non-null values."
10338
+ },
10339
+ "name": "NULLS_FIRST"
10340
+ },
10341
+ {
10342
+ "docs": {
10343
+ "stability": "experimental",
10344
+ "summary": "Place null values after non-null values."
10345
+ },
10346
+ "name": "NULLS_LAST"
10347
+ }
10348
+ ],
10349
+ "name": "NullOrder",
10350
+ "symbolId": "lib/table:NullOrder"
10351
+ },
9676
10352
  "@aws-cdk/aws-s3tables-alpha.OpenTableFormat": {
9677
10353
  "assembly": "@aws-cdk/aws-s3tables-alpha",
9678
10354
  "docs": {
@@ -9683,7 +10359,7 @@
9683
10359
  "kind": "enum",
9684
10360
  "locationInModule": {
9685
10361
  "filename": "lib/table.ts",
9686
- "line": 245
10362
+ "line": 247
9687
10363
  },
9688
10364
  "members": [
9689
10365
  {
@@ -9697,13 +10373,48 @@
9697
10373
  "name": "OpenTableFormat",
9698
10374
  "symbolId": "lib/table:OpenTableFormat"
9699
10375
  },
10376
+ "@aws-cdk/aws-s3tables-alpha.RequestMetricsStatus": {
10377
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
10378
+ "docs": {
10379
+ "stability": "experimental",
10380
+ "summary": "Controls whether CloudWatch request metrics are enabled or disabled for the table bucket.",
10381
+ "example": "// Enable CloudWatch request metrics for the table bucket\nconst tableBucketWithMetrics = new TableBucket(scope, 'TableBucketWithMetrics', {\n tableBucketName: 'metrics-enabled-bucket',\n requestMetricsStatus: RequestMetricsStatus.ENABLED,\n});",
10382
+ "custom": {
10383
+ "exampleMetadata": "infused"
10384
+ }
10385
+ },
10386
+ "fqn": "@aws-cdk/aws-s3tables-alpha.RequestMetricsStatus",
10387
+ "kind": "enum",
10388
+ "locationInModule": {
10389
+ "filename": "lib/table-bucket.ts",
10390
+ "line": 153
10391
+ },
10392
+ "members": [
10393
+ {
10394
+ "docs": {
10395
+ "stability": "experimental",
10396
+ "summary": "Enable CloudWatch request metrics for the table bucket."
10397
+ },
10398
+ "name": "ENABLED"
10399
+ },
10400
+ {
10401
+ "docs": {
10402
+ "stability": "experimental",
10403
+ "summary": "Disable CloudWatch request metrics for the table bucket."
10404
+ },
10405
+ "name": "DISABLED"
10406
+ }
10407
+ ],
10408
+ "name": "RequestMetricsStatus",
10409
+ "symbolId": "lib/table-bucket:RequestMetricsStatus"
10410
+ },
9700
10411
  "@aws-cdk/aws-s3tables-alpha.SchemaFieldProperty": {
9701
10412
  "assembly": "@aws-cdk/aws-s3tables-alpha",
9702
10413
  "datatype": true,
9703
10414
  "docs": {
9704
10415
  "stability": "experimental",
9705
10416
  "summary": "Contains details about a schema field.",
9706
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\nconst schemaFieldProperty: s3tables_alpha.SchemaFieldProperty = {\n name: 'name',\n type: 'type',\n\n // the properties below are optional\n required: false,\n};",
10417
+ "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\nconst schemaFieldProperty: s3tables_alpha.SchemaFieldProperty = {\n name: 'name',\n type: 'type',\n\n // the properties below are optional\n id: 123,\n required: false,\n};",
9707
10418
  "custom": {
9708
10419
  "exampleMetadata": "fixture=_generated"
9709
10420
  }
@@ -9712,7 +10423,7 @@
9712
10423
  "kind": "interface",
9713
10424
  "locationInModule": {
9714
10425
  "filename": "lib/table.ts",
9715
- "line": 308
10426
+ "line": 557
9716
10427
  },
9717
10428
  "name": "SchemaFieldProperty",
9718
10429
  "properties": [
@@ -9725,7 +10436,7 @@
9725
10436
  "immutable": true,
9726
10437
  "locationInModule": {
9727
10438
  "filename": "lib/table.ts",
9728
- "line": 312
10439
+ "line": 568
9729
10440
  },
9730
10441
  "name": "name",
9731
10442
  "type": {
@@ -9742,13 +10453,31 @@
9742
10453
  "immutable": true,
9743
10454
  "locationInModule": {
9744
10455
  "filename": "lib/table.ts",
9745
- "line": 328
10456
+ "line": 584
9746
10457
  },
9747
10458
  "name": "type",
9748
10459
  "type": {
9749
10460
  "primitive": "string"
9750
10461
  }
9751
10462
  },
10463
+ {
10464
+ "abstract": true,
10465
+ "docs": {
10466
+ "default": "- Auto-assigned by S3 Tables",
10467
+ "stability": "experimental",
10468
+ "summary": "The unique identifier for the field."
10469
+ },
10470
+ "immutable": true,
10471
+ "locationInModule": {
10472
+ "filename": "lib/table.ts",
10473
+ "line": 563
10474
+ },
10475
+ "name": "id",
10476
+ "optional": true,
10477
+ "type": {
10478
+ "primitive": "number"
10479
+ }
10480
+ },
9752
10481
  {
9753
10482
  "abstract": true,
9754
10483
  "docs": {
@@ -9760,7 +10489,7 @@
9760
10489
  "immutable": true,
9761
10490
  "locationInModule": {
9762
10491
  "filename": "lib/table.ts",
9763
- "line": 321
10492
+ "line": 577
9764
10493
  },
9765
10494
  "name": "required",
9766
10495
  "optional": true,
@@ -9788,7 +10517,7 @@
9788
10517
  "kind": "interface",
9789
10518
  "locationInModule": {
9790
10519
  "filename": "lib/table.ts",
9791
- "line": 338
10520
+ "line": 594
9792
10521
  },
9793
10522
  "name": "SnapshotManagementProperty",
9794
10523
  "properties": [
@@ -9802,7 +10531,7 @@
9802
10531
  "immutable": true,
9803
10532
  "locationInModule": {
9804
10533
  "filename": "lib/table.ts",
9805
- "line": 344
10534
+ "line": 600
9806
10535
  },
9807
10536
  "name": "maxSnapshotAgeHours",
9808
10537
  "optional": true,
@@ -9820,7 +10549,7 @@
9820
10549
  "immutable": true,
9821
10550
  "locationInModule": {
9822
10551
  "filename": "lib/table.ts",
9823
- "line": 351
10552
+ "line": 607
9824
10553
  },
9825
10554
  "name": "minSnapshotsToKeep",
9826
10555
  "optional": true,
@@ -9838,7 +10567,7 @@
9838
10567
  "immutable": true,
9839
10568
  "locationInModule": {
9840
10569
  "filename": "lib/table.ts",
9841
- "line": 358
10570
+ "line": 614
9842
10571
  },
9843
10572
  "name": "status",
9844
10573
  "optional": true,
@@ -9849,6 +10578,41 @@
9849
10578
  ],
9850
10579
  "symbolId": "lib/table:SnapshotManagementProperty"
9851
10580
  },
10581
+ "@aws-cdk/aws-s3tables-alpha.SortDirection": {
10582
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
10583
+ "docs": {
10584
+ "stability": "experimental",
10585
+ "summary": "Sort direction values for Iceberg sort fields.",
10586
+ "example": "// Build a table with partition spec, sort order, and table properties\nconst advancedTable = new Table(scope, 'AdvancedTable', {\n tableName: 'advanced_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n icebergMetadata: {\n icebergSchema: {\n schemaFieldList: [\n { id: 1, name: 'event_date', type: 'date', required: true },\n { id: 2, name: 'user_id', type: 'string', required: true },\n ],\n },\n icebergPartitionSpec: {\n specId: 0,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n name: 'date_partition',\n fieldId: 1000,\n },\n ],\n },\n icebergSortOrder: {\n orderId: 1,\n fields: [\n {\n sourceId: 1,\n transform: IcebergTransform.IDENTITY,\n direction: SortDirection.ASC,\n nullOrder: NullOrder.NULLS_LAST,\n },\n ],\n },\n tableProperties: [\n { key: 'write.format.default', value: 'parquet' },\n ],\n },\n});",
10587
+ "custom": {
10588
+ "exampleMetadata": "infused"
10589
+ }
10590
+ },
10591
+ "fqn": "@aws-cdk/aws-s3tables-alpha.SortDirection",
10592
+ "kind": "enum",
10593
+ "locationInModule": {
10594
+ "filename": "lib/table.ts",
10595
+ "line": 372
10596
+ },
10597
+ "members": [
10598
+ {
10599
+ "docs": {
10600
+ "stability": "experimental",
10601
+ "summary": "Sort values in ascending order."
10602
+ },
10603
+ "name": "ASC"
10604
+ },
10605
+ {
10606
+ "docs": {
10607
+ "stability": "experimental",
10608
+ "summary": "Sort values in descending order."
10609
+ },
10610
+ "name": "DESC"
10611
+ }
10612
+ ],
10613
+ "name": "SortDirection",
10614
+ "symbolId": "lib/table:SortDirection"
10615
+ },
9852
10616
  "@aws-cdk/aws-s3tables-alpha.Status": {
9853
10617
  "assembly": "@aws-cdk/aws-s3tables-alpha",
9854
10618
  "docs": {
@@ -9863,7 +10627,7 @@
9863
10627
  "kind": "enum",
9864
10628
  "locationInModule": {
9865
10629
  "filename": "lib/table.ts",
9866
- "line": 271
10630
+ "line": 273
9867
10631
  },
9868
10632
  "members": [
9869
10633
  {
@@ -9902,7 +10666,7 @@
9902
10666
  },
9903
10667
  "locationInModule": {
9904
10668
  "filename": "lib/table.ts",
9905
- "line": 504
10669
+ "line": 765
9906
10670
  },
9907
10671
  "parameters": [
9908
10672
  {
@@ -9926,12 +10690,13 @@
9926
10690
  ]
9927
10691
  },
9928
10692
  "interfaces": [
10693
+ "aws-cdk-lib.ITaggableV2",
9929
10694
  "@aws-cdk/aws-s3tables-alpha.ITable"
9930
10695
  ],
9931
10696
  "kind": "class",
9932
10697
  "locationInModule": {
9933
10698
  "filename": "lib/table.ts",
9934
- "line": 382
10699
+ "line": 638
9935
10700
  },
9936
10701
  "methods": [
9937
10702
  {
@@ -9941,7 +10706,7 @@
9941
10706
  },
9942
10707
  "locationInModule": {
9943
10708
  "filename": "lib/table.ts",
9944
- "line": 394
10709
+ "line": 650
9945
10710
  },
9946
10711
  "name": "fromTableAttributes",
9947
10712
  "parameters": [
@@ -9990,7 +10755,7 @@
9990
10755
  },
9991
10756
  "locationInModule": {
9992
10757
  "filename": "lib/table.ts",
9993
- "line": 427
10758
+ "line": 683
9994
10759
  },
9995
10760
  "name": "validateTableName",
9996
10761
  "parameters": [
@@ -10014,7 +10779,7 @@
10014
10779
  },
10015
10780
  "locationInModule": {
10016
10781
  "filename": "lib/table.ts",
10017
- "line": 121
10782
+ "line": 123
10018
10783
  },
10019
10784
  "name": "addToResourcePolicy",
10020
10785
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
@@ -10039,7 +10804,7 @@
10039
10804
  },
10040
10805
  "locationInModule": {
10041
10806
  "filename": "lib/table.ts",
10042
- "line": 142
10807
+ "line": 144
10043
10808
  },
10044
10809
  "name": "grantRead",
10045
10810
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
@@ -10064,7 +10829,7 @@
10064
10829
  },
10065
10830
  "locationInModule": {
10066
10831
  "filename": "lib/table.ts",
10067
- "line": 164
10832
+ "line": 166
10068
10833
  },
10069
10834
  "name": "grantReadWrite",
10070
10835
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
@@ -10089,7 +10854,7 @@
10089
10854
  },
10090
10855
  "locationInModule": {
10091
10856
  "filename": "lib/table.ts",
10092
- "line": 153
10857
+ "line": 155
10093
10858
  },
10094
10859
  "name": "grantWrite",
10095
10860
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
@@ -10119,7 +10884,7 @@
10119
10884
  "immutable": true,
10120
10885
  "locationInModule": {
10121
10886
  "filename": "lib/table.ts",
10122
- "line": 385
10887
+ "line": 641
10123
10888
  },
10124
10889
  "name": "PROPERTY_INJECTION_ID",
10125
10890
  "static": true,
@@ -10127,6 +10892,22 @@
10127
10892
  "primitive": "string"
10128
10893
  }
10129
10894
  },
10895
+ {
10896
+ "docs": {
10897
+ "stability": "experimental",
10898
+ "summary": "The tag manager for this resource."
10899
+ },
10900
+ "immutable": true,
10901
+ "locationInModule": {
10902
+ "filename": "lib/table.ts",
10903
+ "line": 746
10904
+ },
10905
+ "name": "cdkTagManager",
10906
+ "overrides": "aws-cdk-lib.ITaggableV2",
10907
+ "type": {
10908
+ "fqn": "aws-cdk-lib.TagManager"
10909
+ }
10910
+ },
10130
10911
  {
10131
10912
  "docs": {
10132
10913
  "stability": "experimental",
@@ -10135,7 +10916,7 @@
10135
10916
  "immutable": true,
10136
10917
  "locationInModule": {
10137
10918
  "filename": "lib/table.ts",
10138
- "line": 495
10919
+ "line": 756
10139
10920
  },
10140
10921
  "name": "namespace",
10141
10922
  "type": {
@@ -10150,7 +10931,7 @@
10150
10931
  "immutable": true,
10151
10932
  "locationInModule": {
10152
10933
  "filename": "lib/table.ts",
10153
- "line": 479
10934
+ "line": 735
10154
10935
  },
10155
10936
  "name": "tableArn",
10156
10937
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
@@ -10166,7 +10947,7 @@
10166
10947
  "immutable": true,
10167
10948
  "locationInModule": {
10168
10949
  "filename": "lib/table.ts",
10169
- "line": 490
10950
+ "line": 751
10170
10951
  },
10171
10952
  "name": "tableName",
10172
10953
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
@@ -10182,7 +10963,7 @@
10182
10963
  "immutable": true,
10183
10964
  "locationInModule": {
10184
10965
  "filename": "lib/table.ts",
10185
- "line": 500
10966
+ "line": 761
10186
10967
  },
10187
10968
  "name": "tablePolicy",
10188
10969
  "optional": true,
@@ -10197,7 +10978,7 @@
10197
10978
  },
10198
10979
  "locationInModule": {
10199
10980
  "filename": "lib/table.ts",
10200
- "line": 502
10981
+ "line": 763
10201
10982
  },
10202
10983
  "name": "autoCreatePolicy",
10203
10984
  "protected": true,
@@ -10224,7 +11005,7 @@
10224
11005
  "kind": "interface",
10225
11006
  "locationInModule": {
10226
11007
  "filename": "lib/table.ts",
10227
- "line": 367
11008
+ "line": 623
10228
11009
  },
10229
11010
  "name": "TableAttributes",
10230
11011
  "properties": [
@@ -10237,7 +11018,7 @@
10237
11018
  "immutable": true,
10238
11019
  "locationInModule": {
10239
11020
  "filename": "lib/table.ts",
10240
- "line": 376
11021
+ "line": 632
10241
11022
  },
10242
11023
  "name": "tableArn",
10243
11024
  "type": {
@@ -10253,7 +11034,7 @@
10253
11034
  "immutable": true,
10254
11035
  "locationInModule": {
10255
11036
  "filename": "lib/table.ts",
10256
- "line": 371
11037
+ "line": 627
10257
11038
  },
10258
11039
  "name": "tableName",
10259
11040
  "type": {
@@ -10282,7 +11063,7 @@
10282
11063
  },
10283
11064
  "locationInModule": {
10284
11065
  "filename": "lib/table-bucket.ts",
10285
- "line": 583
11066
+ "line": 613
10286
11067
  },
10287
11068
  "parameters": [
10288
11069
  {
@@ -10306,12 +11087,13 @@
10306
11087
  ]
10307
11088
  },
10308
11089
  "interfaces": [
11090
+ "aws-cdk-lib.ITaggableV2",
10309
11091
  "@aws-cdk/aws-s3tables-alpha.ITableBucket"
10310
11092
  ],
10311
11093
  "kind": "class",
10312
11094
  "locationInModule": {
10313
11095
  "filename": "lib/table-bucket.ts",
10314
- "line": 409
11096
+ "line": 434
10315
11097
  },
10316
11098
  "methods": [
10317
11099
  {
@@ -10321,7 +11103,7 @@
10321
11103
  },
10322
11104
  "locationInModule": {
10323
11105
  "filename": "lib/table-bucket.ts",
10324
- "line": 421
11106
+ "line": 446
10325
11107
  },
10326
11108
  "name": "fromTableBucketArn",
10327
11109
  "parameters": [
@@ -10367,7 +11149,7 @@
10367
11149
  },
10368
11150
  "locationInModule": {
10369
11151
  "filename": "lib/table-bucket.ts",
10370
- "line": 432
11152
+ "line": 457
10371
11153
  },
10372
11154
  "name": "fromTableBucketAttributes",
10373
11155
  "parameters": [
@@ -10414,7 +11196,7 @@
10414
11196
  },
10415
11197
  "locationInModule": {
10416
11198
  "filename": "lib/table-bucket.ts",
10417
- "line": 468
11199
+ "line": 493
10418
11200
  },
10419
11201
  "name": "validateTableBucketName",
10420
11202
  "parameters": [
@@ -10438,7 +11220,7 @@
10438
11220
  },
10439
11221
  "locationInModule": {
10440
11222
  "filename": "lib/table-bucket.ts",
10441
- "line": 525
11223
+ "line": 550
10442
11224
  },
10443
11225
  "name": "validateUnreferencedFileRemoval",
10444
11226
  "parameters": [
@@ -10464,7 +11246,7 @@
10464
11246
  },
10465
11247
  "locationInModule": {
10466
11248
  "filename": "lib/table-bucket.ts",
10467
- "line": 206
11249
+ "line": 221
10468
11250
  },
10469
11251
  "name": "addToResourcePolicy",
10470
11252
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
@@ -10492,7 +11274,7 @@
10492
11274
  },
10493
11275
  "locationInModule": {
10494
11276
  "filename": "lib/table-bucket.ts",
10495
- "line": 226
11277
+ "line": 241
10496
11278
  },
10497
11279
  "name": "grantRead",
10498
11280
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
@@ -10523,7 +11305,7 @@
10523
11305
  },
10524
11306
  "locationInModule": {
10525
11307
  "filename": "lib/table-bucket.ts",
10526
- "line": 252
11308
+ "line": 267
10527
11309
  },
10528
11310
  "name": "grantReadWrite",
10529
11311
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
@@ -10554,7 +11336,7 @@
10554
11336
  },
10555
11337
  "locationInModule": {
10556
11338
  "filename": "lib/table-bucket.ts",
10557
- "line": 239
11339
+ "line": 254
10558
11340
  },
10559
11341
  "name": "grantWrite",
10560
11342
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
@@ -10590,7 +11372,7 @@
10590
11372
  "immutable": true,
10591
11373
  "locationInModule": {
10592
11374
  "filename": "lib/table-bucket.ts",
10593
- "line": 412
11375
+ "line": 437
10594
11376
  },
10595
11377
  "name": "PROPERTY_INJECTION_ID",
10596
11378
  "static": true,
@@ -10598,6 +11380,22 @@
10598
11380
  "primitive": "string"
10599
11381
  }
10600
11382
  },
11383
+ {
11384
+ "docs": {
11385
+ "stability": "experimental",
11386
+ "summary": "The tag manager for this resource."
11387
+ },
11388
+ "immutable": true,
11389
+ "locationInModule": {
11390
+ "filename": "lib/table-bucket.ts",
11391
+ "line": 602
11392
+ },
11393
+ "name": "cdkTagManager",
11394
+ "overrides": "aws-cdk-lib.ITaggableV2",
11395
+ "type": {
11396
+ "fqn": "aws-cdk-lib.TagManager"
11397
+ }
11398
+ },
10601
11399
  {
10602
11400
  "docs": {
10603
11401
  "stability": "experimental",
@@ -10606,7 +11404,7 @@
10606
11404
  "immutable": true,
10607
11405
  "locationInModule": {
10608
11406
  "filename": "lib/table-bucket.ts",
10609
- "line": 620
11407
+ "line": 652
10610
11408
  },
10611
11409
  "name": "tableBucketArn",
10612
11410
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
@@ -10622,7 +11420,7 @@
10622
11420
  "immutable": true,
10623
11421
  "locationInModule": {
10624
11422
  "filename": "lib/table-bucket.ts",
10625
- "line": 612
11423
+ "line": 644
10626
11424
  },
10627
11425
  "name": "tableBucketName",
10628
11426
  "overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
@@ -10638,7 +11436,7 @@
10638
11436
  "immutable": true,
10639
11437
  "locationInModule": {
10640
11438
  "filename": "lib/table-bucket.ts",
10641
- "line": 579
11439
+ "line": 609
10642
11440
  },
10643
11441
  "name": "encryptionKey",
10644
11442
  "optional": true,
@@ -10655,7 +11453,7 @@
10655
11453
  "immutable": true,
10656
11454
  "locationInModule": {
10657
11455
  "filename": "lib/table-bucket.ts",
10658
- "line": 577
11456
+ "line": 607
10659
11457
  },
10660
11458
  "name": "tableBucketPolicy",
10661
11459
  "optional": true,
@@ -10670,7 +11468,7 @@
10670
11468
  },
10671
11469
  "locationInModule": {
10672
11470
  "filename": "lib/table-bucket.ts",
10673
- "line": 581
11471
+ "line": 611
10674
11472
  },
10675
11473
  "name": "autoCreatePolicy",
10676
11474
  "protected": true,
@@ -10697,7 +11495,7 @@
10697
11495
  "kind": "interface",
10698
11496
  "locationInModule": {
10699
11497
  "filename": "lib/table-bucket.ts",
10700
- "line": 360
11498
+ "line": 385
10701
11499
  },
10702
11500
  "name": "TableBucketAttributes",
10703
11501
  "properties": [
@@ -10711,7 +11509,7 @@
10711
11509
  "immutable": true,
10712
11510
  "locationInModule": {
10713
11511
  "filename": "lib/table-bucket.ts",
10714
- "line": 371
11512
+ "line": 396
10715
11513
  },
10716
11514
  "name": "account",
10717
11515
  "optional": true,
@@ -10729,7 +11527,7 @@
10729
11527
  "immutable": true,
10730
11528
  "locationInModule": {
10731
11529
  "filename": "lib/table-bucket.ts",
10732
- "line": 389
11530
+ "line": 414
10733
11531
  },
10734
11532
  "name": "encryptionKey",
10735
11533
  "optional": true,
@@ -10747,7 +11545,7 @@
10747
11545
  "immutable": true,
10748
11546
  "locationInModule": {
10749
11547
  "filename": "lib/table-bucket.ts",
10750
- "line": 365
11548
+ "line": 390
10751
11549
  },
10752
11550
  "name": "region",
10753
11551
  "optional": true,
@@ -10765,7 +11563,7 @@
10765
11563
  "immutable": true,
10766
11564
  "locationInModule": {
10767
11565
  "filename": "lib/table-bucket.ts",
10768
- "line": 383
11566
+ "line": 408
10769
11567
  },
10770
11568
  "name": "tableBucketArn",
10771
11569
  "optional": true,
@@ -10783,7 +11581,7 @@
10783
11581
  "immutable": true,
10784
11582
  "locationInModule": {
10785
11583
  "filename": "lib/table-bucket.ts",
10786
- "line": 377
11584
+ "line": 402
10787
11585
  },
10788
11586
  "name": "tableBucketName",
10789
11587
  "optional": true,
@@ -10808,7 +11606,7 @@
10808
11606
  "kind": "enum",
10809
11607
  "locationInModule": {
10810
11608
  "filename": "lib/table-bucket.ts",
10811
- "line": 153
11609
+ "line": 168
10812
11610
  },
10813
11611
  "members": [
10814
11612
  {
@@ -11002,7 +11800,7 @@
11002
11800
  "kind": "interface",
11003
11801
  "locationInModule": {
11004
11802
  "filename": "lib/table-bucket.ts",
11005
- "line": 296
11803
+ "line": 311
11006
11804
  },
11007
11805
  "name": "TableBucketProps",
11008
11806
  "properties": [
@@ -11018,7 +11816,7 @@
11018
11816
  "immutable": true,
11019
11817
  "locationInModule": {
11020
11818
  "filename": "lib/table-bucket.ts",
11021
- "line": 301
11819
+ "line": 316
11022
11820
  },
11023
11821
  "name": "tableBucketName",
11024
11822
  "type": {
@@ -11035,7 +11833,7 @@
11035
11833
  "immutable": true,
11036
11834
  "locationInModule": {
11037
11835
  "filename": "lib/table-bucket.ts",
11038
- "line": 323
11836
+ "line": 338
11039
11837
  },
11040
11838
  "name": "account",
11041
11839
  "optional": true,
@@ -11054,7 +11852,7 @@
11054
11852
  "immutable": true,
11055
11853
  "locationInModule": {
11056
11854
  "filename": "lib/table-bucket.ts",
11057
- "line": 333
11855
+ "line": 348
11058
11856
  },
11059
11857
  "name": "encryption",
11060
11858
  "optional": true,
@@ -11073,7 +11871,7 @@
11073
11871
  "immutable": true,
11074
11872
  "locationInModule": {
11075
11873
  "filename": "lib/table-bucket.ts",
11076
- "line": 344
11874
+ "line": 359
11077
11875
  },
11078
11876
  "name": "encryptionKey",
11079
11877
  "optional": true,
@@ -11091,7 +11889,7 @@
11091
11889
  "immutable": true,
11092
11890
  "locationInModule": {
11093
11891
  "filename": "lib/table-bucket.ts",
11094
- "line": 316
11892
+ "line": 331
11095
11893
  },
11096
11894
  "name": "region",
11097
11895
  "optional": true,
@@ -11109,7 +11907,7 @@
11109
11907
  "immutable": true,
11110
11908
  "locationInModule": {
11111
11909
  "filename": "lib/table-bucket.ts",
11112
- "line": 351
11910
+ "line": 366
11113
11911
  },
11114
11912
  "name": "removalPolicy",
11115
11913
  "optional": true,
@@ -11117,6 +11915,25 @@
11117
11915
  "fqn": "aws-cdk-lib.RemovalPolicy"
11118
11916
  }
11119
11917
  },
11918
+ {
11919
+ "abstract": true,
11920
+ "docs": {
11921
+ "default": "- Request metrics are disabled",
11922
+ "remarks": "When enabled, S3 Tables publishes CloudWatch request metrics for the table bucket.\nRequest metrics provide insight into Amazon S3 Tables requests.",
11923
+ "stability": "experimental",
11924
+ "summary": "CloudWatch request metrics configuration for the table bucket."
11925
+ },
11926
+ "immutable": true,
11927
+ "locationInModule": {
11928
+ "filename": "lib/table-bucket.ts",
11929
+ "line": 376
11930
+ },
11931
+ "name": "requestMetricsStatus",
11932
+ "optional": true,
11933
+ "type": {
11934
+ "fqn": "@aws-cdk/aws-s3tables-alpha.RequestMetricsStatus"
11935
+ }
11936
+ },
11120
11937
  {
11121
11938
  "abstract": true,
11122
11939
  "docs": {
@@ -11131,7 +11948,7 @@
11131
11948
  "immutable": true,
11132
11949
  "locationInModule": {
11133
11950
  "filename": "lib/table-bucket.ts",
11134
- "line": 309
11951
+ "line": 324
11135
11952
  },
11136
11953
  "name": "unreferencedFileRemoval",
11137
11954
  "optional": true,
@@ -11300,6 +12117,60 @@
11300
12117
  ],
11301
12118
  "symbolId": "lib/table-policy:TablePolicyProps"
11302
12119
  },
12120
+ "@aws-cdk/aws-s3tables-alpha.TablePropertyEntry": {
12121
+ "assembly": "@aws-cdk/aws-s3tables-alpha",
12122
+ "datatype": true,
12123
+ "docs": {
12124
+ "stability": "experimental",
12125
+ "summary": "A single table property key-value pair for Iceberg table configuration.",
12126
+ "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';\nconst tablePropertyEntry: s3tables_alpha.TablePropertyEntry = {\n key: 'key',\n value: 'value',\n};",
12127
+ "custom": {
12128
+ "exampleMetadata": "fixture=_generated"
12129
+ }
12130
+ },
12131
+ "fqn": "@aws-cdk/aws-s3tables-alpha.TablePropertyEntry",
12132
+ "kind": "interface",
12133
+ "locationInModule": {
12134
+ "filename": "lib/table.ts",
12135
+ "line": 497
12136
+ },
12137
+ "name": "TablePropertyEntry",
12138
+ "properties": [
12139
+ {
12140
+ "abstract": true,
12141
+ "docs": {
12142
+ "stability": "experimental",
12143
+ "summary": "The property key."
12144
+ },
12145
+ "immutable": true,
12146
+ "locationInModule": {
12147
+ "filename": "lib/table.ts",
12148
+ "line": 501
12149
+ },
12150
+ "name": "key",
12151
+ "type": {
12152
+ "primitive": "string"
12153
+ }
12154
+ },
12155
+ {
12156
+ "abstract": true,
12157
+ "docs": {
12158
+ "stability": "experimental",
12159
+ "summary": "The property value."
12160
+ },
12161
+ "immutable": true,
12162
+ "locationInModule": {
12163
+ "filename": "lib/table.ts",
12164
+ "line": 506
12165
+ },
12166
+ "name": "value",
12167
+ "type": {
12168
+ "primitive": "string"
12169
+ }
12170
+ }
12171
+ ],
12172
+ "symbolId": "lib/table:TablePropertyEntry"
12173
+ },
11303
12174
  "@aws-cdk/aws-s3tables-alpha.TableProps": {
11304
12175
  "assembly": "@aws-cdk/aws-s3tables-alpha",
11305
12176
  "datatype": true,
@@ -11315,7 +12186,7 @@
11315
12186
  "kind": "interface",
11316
12187
  "locationInModule": {
11317
12188
  "filename": "lib/table.ts",
11318
- "line": 197
12189
+ "line": 199
11319
12190
  },
11320
12191
  "name": "TableProps",
11321
12192
  "properties": [
@@ -11328,7 +12199,7 @@
11328
12199
  "immutable": true,
11329
12200
  "locationInModule": {
11330
12201
  "filename": "lib/table.ts",
11331
- "line": 205
12202
+ "line": 207
11332
12203
  },
11333
12204
  "name": "namespace",
11334
12205
  "type": {
@@ -11345,7 +12216,7 @@
11345
12216
  "immutable": true,
11346
12217
  "locationInModule": {
11347
12218
  "filename": "lib/table.ts",
11348
- "line": 209
12219
+ "line": 211
11349
12220
  },
11350
12221
  "name": "openTableFormat",
11351
12222
  "type": {
@@ -11361,7 +12232,7 @@
11361
12232
  "immutable": true,
11362
12233
  "locationInModule": {
11363
12234
  "filename": "lib/table.ts",
11364
- "line": 201
12235
+ "line": 203
11365
12236
  },
11366
12237
  "name": "tableName",
11367
12238
  "type": {
@@ -11379,7 +12250,7 @@
11379
12250
  "immutable": true,
11380
12251
  "locationInModule": {
11381
12252
  "filename": "lib/table.ts",
11382
- "line": 215
12253
+ "line": 217
11383
12254
  },
11384
12255
  "name": "compaction",
11385
12256
  "optional": true,
@@ -11397,7 +12268,7 @@
11397
12268
  "immutable": true,
11398
12269
  "locationInModule": {
11399
12270
  "filename": "lib/table.ts",
11400
- "line": 220
12271
+ "line": 222
11401
12272
  },
11402
12273
  "name": "icebergMetadata",
11403
12274
  "optional": true,
@@ -11415,7 +12286,7 @@
11415
12286
  "immutable": true,
11416
12287
  "locationInModule": {
11417
12288
  "filename": "lib/table.ts",
11418
- "line": 231
12289
+ "line": 233
11419
12290
  },
11420
12291
  "name": "removalPolicy",
11421
12292
  "optional": true,
@@ -11433,7 +12304,7 @@
11433
12304
  "immutable": true,
11434
12305
  "locationInModule": {
11435
12306
  "filename": "lib/table.ts",
11436
- "line": 225
12307
+ "line": 227
11437
12308
  },
11438
12309
  "name": "snapshotManagement",
11439
12310
  "optional": true,
@@ -11452,7 +12323,7 @@
11452
12323
  "immutable": true,
11453
12324
  "locationInModule": {
11454
12325
  "filename": "lib/table.ts",
11455
- "line": 239
12326
+ "line": 241
11456
12327
  },
11457
12328
  "name": "withoutMetadata",
11458
12329
  "optional": true,
@@ -11581,6 +12452,6 @@
11581
12452
  "symbolId": "lib/table-bucket:UnreferencedFileRemovalStatus"
11582
12453
  }
11583
12454
  },
11584
- "version": "2.244.0-alpha.0",
12455
+ "version": "2.245.0-alpha.0",
11585
12456
  "fingerprint": "**********"
11586
12457
  }