@aws-cdk/aws-s3tables-alpha 2.265.0-alpha.0 → 2.267.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 +203 -127
- package/.jsii.tabl.json.gz +0 -0
- package/README.md +32 -0
- package/lib/namespace.js +1 -1
- package/lib/table-bucket-policy.js +1 -1
- package/lib/table-bucket.d.ts +30 -0
- package/lib/table-bucket.js +26 -3
- package/lib/table-policy.js +1 -1
- package/lib/table.d.ts +12 -0
- package/lib/table.js +4 -3
- package/package.json +6 -6
- package/rosetta/default.ts-fixture +1 -1
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"aws-cdk-lib": "^2.267.0",
|
|
12
12
|
"constructs": "^10.5.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -9411,7 +9411,7 @@
|
|
|
9411
9411
|
},
|
|
9412
9412
|
"name": "@aws-cdk/aws-s3tables-alpha",
|
|
9413
9413
|
"readme": {
|
|
9414
|
-
"markdown": "# Amazon S3 Tables Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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"
|
|
9414
|
+
"markdown": "# Amazon S3 Tables Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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### Configuring Storage Class\n\nYou can configure the storage class for your table bucket and tables. Storage class determines how data is stored and billed, allowing you to optimize for different access patterns.\n\n```ts\n// Create a table bucket with INTELLIGENT_TIERING storage class\nconst tableBucketWithStorageClass = new TableBucket(scope, 'TableBucketWithStorageClass', {\n tableBucketName: 'storage-class-bucket',\n storageClass: StorageClass.INTELLIGENT_TIERING,\n});\n```\n\nTables inherit the storage class from their parent bucket by default. You can also override the storage class at the table level:\n\n```ts\n// Create a table with explicit storage class (overrides bucket default)\nconst tableWithStorageClass = new Table(scope, 'TableWithStorageClass', {\n tableName: 'storage_class_table',\n namespace: namespace,\n openTableFormat: OpenTableFormat.ICEBERG,\n withoutMetadata: true,\n storageClass: StorageClass.STANDARD,\n});\n```\n\nAvailable storage classes:\n\n- `StorageClass.STANDARD` - For frequently accessed data\n- `StorageClass.INTELLIGENT_TIERING` - Automatically moves data between access tiers based on usage patterns\n\nNote: Table storage class is a create-only property and cannot be changed after the table is created.\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"
|
|
9415
9415
|
},
|
|
9416
9416
|
"repository": {
|
|
9417
9417
|
"directory": "packages/@aws-cdk/aws-s3tables-alpha",
|
|
@@ -9461,7 +9461,7 @@
|
|
|
9461
9461
|
"kind": "interface",
|
|
9462
9462
|
"locationInModule": {
|
|
9463
9463
|
"filename": "lib/table.ts",
|
|
9464
|
-
"line":
|
|
9464
|
+
"line": 273
|
|
9465
9465
|
},
|
|
9466
9466
|
"name": "CompactionProperty",
|
|
9467
9467
|
"properties": [
|
|
@@ -9474,7 +9474,7 @@
|
|
|
9474
9474
|
"immutable": true,
|
|
9475
9475
|
"locationInModule": {
|
|
9476
9476
|
"filename": "lib/table.ts",
|
|
9477
|
-
"line":
|
|
9477
|
+
"line": 277
|
|
9478
9478
|
},
|
|
9479
9479
|
"name": "status",
|
|
9480
9480
|
"type": {
|
|
@@ -9490,7 +9490,7 @@
|
|
|
9490
9490
|
"immutable": true,
|
|
9491
9491
|
"locationInModule": {
|
|
9492
9492
|
"filename": "lib/table.ts",
|
|
9493
|
-
"line":
|
|
9493
|
+
"line": 281
|
|
9494
9494
|
},
|
|
9495
9495
|
"name": "targetFileSizeMb",
|
|
9496
9496
|
"type": {
|
|
@@ -9571,7 +9571,7 @@
|
|
|
9571
9571
|
"kind": "interface",
|
|
9572
9572
|
"locationInModule": {
|
|
9573
9573
|
"filename": "lib/table.ts",
|
|
9574
|
-
"line":
|
|
9574
|
+
"line": 26
|
|
9575
9575
|
},
|
|
9576
9576
|
"methods": [
|
|
9577
9577
|
{
|
|
@@ -9584,7 +9584,7 @@
|
|
|
9584
9584
|
},
|
|
9585
9585
|
"locationInModule": {
|
|
9586
9586
|
"filename": "lib/table.ts",
|
|
9587
|
-
"line":
|
|
9587
|
+
"line": 69
|
|
9588
9588
|
},
|
|
9589
9589
|
"name": "addToResourcePolicy",
|
|
9590
9590
|
"parameters": [
|
|
@@ -9613,7 +9613,7 @@
|
|
|
9613
9613
|
},
|
|
9614
9614
|
"locationInModule": {
|
|
9615
9615
|
"filename": "lib/table.ts",
|
|
9616
|
-
"line":
|
|
9616
|
+
"line": 79
|
|
9617
9617
|
},
|
|
9618
9618
|
"name": "grantRead",
|
|
9619
9619
|
"parameters": [
|
|
@@ -9642,7 +9642,7 @@
|
|
|
9642
9642
|
},
|
|
9643
9643
|
"locationInModule": {
|
|
9644
9644
|
"filename": "lib/table.ts",
|
|
9645
|
-
"line":
|
|
9645
|
+
"line": 101
|
|
9646
9646
|
},
|
|
9647
9647
|
"name": "grantReadWrite",
|
|
9648
9648
|
"parameters": [
|
|
@@ -9671,7 +9671,7 @@
|
|
|
9671
9671
|
},
|
|
9672
9672
|
"locationInModule": {
|
|
9673
9673
|
"filename": "lib/table.ts",
|
|
9674
|
-
"line":
|
|
9674
|
+
"line": 90
|
|
9675
9675
|
},
|
|
9676
9676
|
"name": "grantWrite",
|
|
9677
9677
|
"parameters": [
|
|
@@ -9706,7 +9706,7 @@
|
|
|
9706
9706
|
"immutable": true,
|
|
9707
9707
|
"locationInModule": {
|
|
9708
9708
|
"filename": "lib/table.ts",
|
|
9709
|
-
"line":
|
|
9709
|
+
"line": 31
|
|
9710
9710
|
},
|
|
9711
9711
|
"name": "tableArn",
|
|
9712
9712
|
"type": {
|
|
@@ -9725,7 +9725,7 @@
|
|
|
9725
9725
|
"immutable": true,
|
|
9726
9726
|
"locationInModule": {
|
|
9727
9727
|
"filename": "lib/table.ts",
|
|
9728
|
-
"line":
|
|
9728
|
+
"line": 37
|
|
9729
9729
|
},
|
|
9730
9730
|
"name": "tableName",
|
|
9731
9731
|
"type": {
|
|
@@ -9744,7 +9744,7 @@
|
|
|
9744
9744
|
"immutable": true,
|
|
9745
9745
|
"locationInModule": {
|
|
9746
9746
|
"filename": "lib/table.ts",
|
|
9747
|
-
"line":
|
|
9747
|
+
"line": 43
|
|
9748
9748
|
},
|
|
9749
9749
|
"name": "account",
|
|
9750
9750
|
"optional": true,
|
|
@@ -9764,7 +9764,7 @@
|
|
|
9764
9764
|
"immutable": true,
|
|
9765
9765
|
"locationInModule": {
|
|
9766
9766
|
"filename": "lib/table.ts",
|
|
9767
|
-
"line":
|
|
9767
|
+
"line": 49
|
|
9768
9768
|
},
|
|
9769
9769
|
"name": "region",
|
|
9770
9770
|
"optional": true,
|
|
@@ -10052,7 +10052,7 @@
|
|
|
10052
10052
|
"kind": "interface",
|
|
10053
10053
|
"locationInModule": {
|
|
10054
10054
|
"filename": "lib/table.ts",
|
|
10055
|
-
"line":
|
|
10055
|
+
"line": 527
|
|
10056
10056
|
},
|
|
10057
10057
|
"name": "IcebergMetadataProperty",
|
|
10058
10058
|
"properties": [
|
|
@@ -10066,7 +10066,7 @@
|
|
|
10066
10066
|
"immutable": true,
|
|
10067
10067
|
"locationInModule": {
|
|
10068
10068
|
"filename": "lib/table.ts",
|
|
10069
|
-
"line":
|
|
10069
|
+
"line": 533
|
|
10070
10070
|
},
|
|
10071
10071
|
"name": "icebergSchema",
|
|
10072
10072
|
"type": {
|
|
@@ -10083,7 +10083,7 @@
|
|
|
10083
10083
|
"immutable": true,
|
|
10084
10084
|
"locationInModule": {
|
|
10085
10085
|
"filename": "lib/table.ts",
|
|
10086
|
-
"line":
|
|
10086
|
+
"line": 540
|
|
10087
10087
|
},
|
|
10088
10088
|
"name": "icebergPartitionSpec",
|
|
10089
10089
|
"optional": true,
|
|
@@ -10101,7 +10101,7 @@
|
|
|
10101
10101
|
"immutable": true,
|
|
10102
10102
|
"locationInModule": {
|
|
10103
10103
|
"filename": "lib/table.ts",
|
|
10104
|
-
"line":
|
|
10104
|
+
"line": 547
|
|
10105
10105
|
},
|
|
10106
10106
|
"name": "icebergSortOrder",
|
|
10107
10107
|
"optional": true,
|
|
@@ -10120,7 +10120,7 @@
|
|
|
10120
10120
|
"immutable": true,
|
|
10121
10121
|
"locationInModule": {
|
|
10122
10122
|
"filename": "lib/table.ts",
|
|
10123
|
-
"line":
|
|
10123
|
+
"line": 555
|
|
10124
10124
|
},
|
|
10125
10125
|
"name": "tableProperties",
|
|
10126
10126
|
"optional": true,
|
|
@@ -10152,7 +10152,7 @@
|
|
|
10152
10152
|
"kind": "interface",
|
|
10153
10153
|
"locationInModule": {
|
|
10154
10154
|
"filename": "lib/table.ts",
|
|
10155
|
-
"line":
|
|
10155
|
+
"line": 417
|
|
10156
10156
|
},
|
|
10157
10157
|
"name": "IcebergPartitionField",
|
|
10158
10158
|
"properties": [
|
|
@@ -10165,7 +10165,7 @@
|
|
|
10165
10165
|
"immutable": true,
|
|
10166
10166
|
"locationInModule": {
|
|
10167
10167
|
"filename": "lib/table.ts",
|
|
10168
|
-
"line":
|
|
10168
|
+
"line": 433
|
|
10169
10169
|
},
|
|
10170
10170
|
"name": "name",
|
|
10171
10171
|
"type": {
|
|
@@ -10181,7 +10181,7 @@
|
|
|
10181
10181
|
"immutable": true,
|
|
10182
10182
|
"locationInModule": {
|
|
10183
10183
|
"filename": "lib/table.ts",
|
|
10184
|
-
"line":
|
|
10184
|
+
"line": 421
|
|
10185
10185
|
},
|
|
10186
10186
|
"name": "sourceId",
|
|
10187
10187
|
"type": {
|
|
@@ -10198,7 +10198,7 @@
|
|
|
10198
10198
|
"immutable": true,
|
|
10199
10199
|
"locationInModule": {
|
|
10200
10200
|
"filename": "lib/table.ts",
|
|
10201
|
-
"line":
|
|
10201
|
+
"line": 429
|
|
10202
10202
|
},
|
|
10203
10203
|
"name": "transform",
|
|
10204
10204
|
"type": {
|
|
@@ -10215,7 +10215,7 @@
|
|
|
10215
10215
|
"immutable": true,
|
|
10216
10216
|
"locationInModule": {
|
|
10217
10217
|
"filename": "lib/table.ts",
|
|
10218
|
-
"line":
|
|
10218
|
+
"line": 440
|
|
10219
10219
|
},
|
|
10220
10220
|
"name": "fieldId",
|
|
10221
10221
|
"optional": true,
|
|
@@ -10242,7 +10242,7 @@
|
|
|
10242
10242
|
"kind": "interface",
|
|
10243
10243
|
"locationInModule": {
|
|
10244
10244
|
"filename": "lib/table.ts",
|
|
10245
|
-
"line":
|
|
10245
|
+
"line": 449
|
|
10246
10246
|
},
|
|
10247
10247
|
"name": "IcebergPartitionSpec",
|
|
10248
10248
|
"properties": [
|
|
@@ -10255,7 +10255,7 @@
|
|
|
10255
10255
|
"immutable": true,
|
|
10256
10256
|
"locationInModule": {
|
|
10257
10257
|
"filename": "lib/table.ts",
|
|
10258
|
-
"line":
|
|
10258
|
+
"line": 453
|
|
10259
10259
|
},
|
|
10260
10260
|
"name": "fields",
|
|
10261
10261
|
"type": {
|
|
@@ -10277,7 +10277,7 @@
|
|
|
10277
10277
|
"immutable": true,
|
|
10278
10278
|
"locationInModule": {
|
|
10279
10279
|
"filename": "lib/table.ts",
|
|
10280
|
-
"line":
|
|
10280
|
+
"line": 460
|
|
10281
10281
|
},
|
|
10282
10282
|
"name": "specId",
|
|
10283
10283
|
"optional": true,
|
|
@@ -10303,7 +10303,7 @@
|
|
|
10303
10303
|
"kind": "interface",
|
|
10304
10304
|
"locationInModule": {
|
|
10305
10305
|
"filename": "lib/table.ts",
|
|
10306
|
-
"line":
|
|
10306
|
+
"line": 561
|
|
10307
10307
|
},
|
|
10308
10308
|
"name": "IcebergSchemaProperty",
|
|
10309
10309
|
"properties": [
|
|
@@ -10316,7 +10316,7 @@
|
|
|
10316
10316
|
"immutable": true,
|
|
10317
10317
|
"locationInModule": {
|
|
10318
10318
|
"filename": "lib/table.ts",
|
|
10319
|
-
"line":
|
|
10319
|
+
"line": 565
|
|
10320
10320
|
},
|
|
10321
10321
|
"name": "schemaFieldList",
|
|
10322
10322
|
"type": {
|
|
@@ -10346,7 +10346,7 @@
|
|
|
10346
10346
|
"kind": "interface",
|
|
10347
10347
|
"locationInModule": {
|
|
10348
10348
|
"filename": "lib/table.ts",
|
|
10349
|
-
"line":
|
|
10349
|
+
"line": 466
|
|
10350
10350
|
},
|
|
10351
10351
|
"name": "IcebergSortField",
|
|
10352
10352
|
"properties": [
|
|
@@ -10359,7 +10359,7 @@
|
|
|
10359
10359
|
"immutable": true,
|
|
10360
10360
|
"locationInModule": {
|
|
10361
10361
|
"filename": "lib/table.ts",
|
|
10362
|
-
"line":
|
|
10362
|
+
"line": 483
|
|
10363
10363
|
},
|
|
10364
10364
|
"name": "direction",
|
|
10365
10365
|
"type": {
|
|
@@ -10375,7 +10375,7 @@
|
|
|
10375
10375
|
"immutable": true,
|
|
10376
10376
|
"locationInModule": {
|
|
10377
10377
|
"filename": "lib/table.ts",
|
|
10378
|
-
"line":
|
|
10378
|
+
"line": 488
|
|
10379
10379
|
},
|
|
10380
10380
|
"name": "nullOrder",
|
|
10381
10381
|
"type": {
|
|
@@ -10391,7 +10391,7 @@
|
|
|
10391
10391
|
"immutable": true,
|
|
10392
10392
|
"locationInModule": {
|
|
10393
10393
|
"filename": "lib/table.ts",
|
|
10394
|
-
"line":
|
|
10394
|
+
"line": 470
|
|
10395
10395
|
},
|
|
10396
10396
|
"name": "sourceId",
|
|
10397
10397
|
"type": {
|
|
@@ -10408,7 +10408,7 @@
|
|
|
10408
10408
|
"immutable": true,
|
|
10409
10409
|
"locationInModule": {
|
|
10410
10410
|
"filename": "lib/table.ts",
|
|
10411
|
-
"line":
|
|
10411
|
+
"line": 478
|
|
10412
10412
|
},
|
|
10413
10413
|
"name": "transform",
|
|
10414
10414
|
"type": {
|
|
@@ -10433,7 +10433,7 @@
|
|
|
10433
10433
|
"kind": "interface",
|
|
10434
10434
|
"locationInModule": {
|
|
10435
10435
|
"filename": "lib/table.ts",
|
|
10436
|
-
"line":
|
|
10436
|
+
"line": 494
|
|
10437
10437
|
},
|
|
10438
10438
|
"name": "IcebergSortOrder",
|
|
10439
10439
|
"properties": [
|
|
@@ -10446,7 +10446,7 @@
|
|
|
10446
10446
|
"immutable": true,
|
|
10447
10447
|
"locationInModule": {
|
|
10448
10448
|
"filename": "lib/table.ts",
|
|
10449
|
-
"line":
|
|
10449
|
+
"line": 498
|
|
10450
10450
|
},
|
|
10451
10451
|
"name": "fields",
|
|
10452
10452
|
"type": {
|
|
@@ -10468,7 +10468,7 @@
|
|
|
10468
10468
|
"immutable": true,
|
|
10469
10469
|
"locationInModule": {
|
|
10470
10470
|
"filename": "lib/table.ts",
|
|
10471
|
-
"line":
|
|
10471
|
+
"line": 505
|
|
10472
10472
|
},
|
|
10473
10473
|
"name": "orderId",
|
|
10474
10474
|
"optional": true,
|
|
@@ -10493,7 +10493,7 @@
|
|
|
10493
10493
|
"kind": "class",
|
|
10494
10494
|
"locationInModule": {
|
|
10495
10495
|
"filename": "lib/table.ts",
|
|
10496
|
-
"line":
|
|
10496
|
+
"line": 301
|
|
10497
10497
|
},
|
|
10498
10498
|
"methods": [
|
|
10499
10499
|
{
|
|
@@ -10503,7 +10503,7 @@
|
|
|
10503
10503
|
},
|
|
10504
10504
|
"locationInModule": {
|
|
10505
10505
|
"filename": "lib/table.ts",
|
|
10506
|
-
"line":
|
|
10506
|
+
"line": 332
|
|
10507
10507
|
},
|
|
10508
10508
|
"name": "bucket",
|
|
10509
10509
|
"parameters": [
|
|
@@ -10531,7 +10531,7 @@
|
|
|
10531
10531
|
},
|
|
10532
10532
|
"locationInModule": {
|
|
10533
10533
|
"filename": "lib/table.ts",
|
|
10534
|
-
"line":
|
|
10534
|
+
"line": 362
|
|
10535
10535
|
},
|
|
10536
10536
|
"name": "of",
|
|
10537
10537
|
"parameters": [
|
|
@@ -10559,7 +10559,7 @@
|
|
|
10559
10559
|
},
|
|
10560
10560
|
"locationInModule": {
|
|
10561
10561
|
"filename": "lib/table.ts",
|
|
10562
|
-
"line":
|
|
10562
|
+
"line": 347
|
|
10563
10563
|
},
|
|
10564
10564
|
"name": "truncate",
|
|
10565
10565
|
"parameters": [
|
|
@@ -10587,7 +10587,7 @@
|
|
|
10587
10587
|
},
|
|
10588
10588
|
"locationInModule": {
|
|
10589
10589
|
"filename": "lib/table.ts",
|
|
10590
|
-
"line":
|
|
10590
|
+
"line": 378
|
|
10591
10591
|
},
|
|
10592
10592
|
"name": "toString",
|
|
10593
10593
|
"returns": {
|
|
@@ -10608,7 +10608,7 @@
|
|
|
10608
10608
|
"immutable": true,
|
|
10609
10609
|
"locationInModule": {
|
|
10610
10610
|
"filename": "lib/table.ts",
|
|
10611
|
-
"line":
|
|
10611
|
+
"line": 320
|
|
10612
10612
|
},
|
|
10613
10613
|
"name": "DAY",
|
|
10614
10614
|
"static": true,
|
|
@@ -10625,7 +10625,7 @@
|
|
|
10625
10625
|
"immutable": true,
|
|
10626
10626
|
"locationInModule": {
|
|
10627
10627
|
"filename": "lib/table.ts",
|
|
10628
|
-
"line":
|
|
10628
|
+
"line": 325
|
|
10629
10629
|
},
|
|
10630
10630
|
"name": "HOUR",
|
|
10631
10631
|
"static": true,
|
|
@@ -10642,7 +10642,7 @@
|
|
|
10642
10642
|
"immutable": true,
|
|
10643
10643
|
"locationInModule": {
|
|
10644
10644
|
"filename": "lib/table.ts",
|
|
10645
|
-
"line":
|
|
10645
|
+
"line": 305
|
|
10646
10646
|
},
|
|
10647
10647
|
"name": "IDENTITY",
|
|
10648
10648
|
"static": true,
|
|
@@ -10659,7 +10659,7 @@
|
|
|
10659
10659
|
"immutable": true,
|
|
10660
10660
|
"locationInModule": {
|
|
10661
10661
|
"filename": "lib/table.ts",
|
|
10662
|
-
"line":
|
|
10662
|
+
"line": 315
|
|
10663
10663
|
},
|
|
10664
10664
|
"name": "MONTH",
|
|
10665
10665
|
"static": true,
|
|
@@ -10676,7 +10676,7 @@
|
|
|
10676
10676
|
"immutable": true,
|
|
10677
10677
|
"locationInModule": {
|
|
10678
10678
|
"filename": "lib/table.ts",
|
|
10679
|
-
"line":
|
|
10679
|
+
"line": 310
|
|
10680
10680
|
},
|
|
10681
10681
|
"name": "YEAR",
|
|
10682
10682
|
"static": true,
|
|
@@ -10692,7 +10692,7 @@
|
|
|
10692
10692
|
"immutable": true,
|
|
10693
10693
|
"locationInModule": {
|
|
10694
10694
|
"filename": "lib/table.ts",
|
|
10695
|
-
"line":
|
|
10695
|
+
"line": 369
|
|
10696
10696
|
},
|
|
10697
10697
|
"name": "value",
|
|
10698
10698
|
"type": {
|
|
@@ -11011,7 +11011,7 @@
|
|
|
11011
11011
|
"kind": "enum",
|
|
11012
11012
|
"locationInModule": {
|
|
11013
11013
|
"filename": "lib/table.ts",
|
|
11014
|
-
"line":
|
|
11014
|
+
"line": 400
|
|
11015
11015
|
},
|
|
11016
11016
|
"members": [
|
|
11017
11017
|
{
|
|
@@ -11042,7 +11042,7 @@
|
|
|
11042
11042
|
"kind": "enum",
|
|
11043
11043
|
"locationInModule": {
|
|
11044
11044
|
"filename": "lib/table.ts",
|
|
11045
|
-
"line":
|
|
11045
|
+
"line": 261
|
|
11046
11046
|
},
|
|
11047
11047
|
"members": [
|
|
11048
11048
|
{
|
|
@@ -11106,7 +11106,7 @@
|
|
|
11106
11106
|
"kind": "interface",
|
|
11107
11107
|
"locationInModule": {
|
|
11108
11108
|
"filename": "lib/table.ts",
|
|
11109
|
-
"line":
|
|
11109
|
+
"line": 571
|
|
11110
11110
|
},
|
|
11111
11111
|
"name": "SchemaFieldProperty",
|
|
11112
11112
|
"properties": [
|
|
@@ -11119,7 +11119,7 @@
|
|
|
11119
11119
|
"immutable": true,
|
|
11120
11120
|
"locationInModule": {
|
|
11121
11121
|
"filename": "lib/table.ts",
|
|
11122
|
-
"line":
|
|
11122
|
+
"line": 582
|
|
11123
11123
|
},
|
|
11124
11124
|
"name": "name",
|
|
11125
11125
|
"type": {
|
|
@@ -11136,7 +11136,7 @@
|
|
|
11136
11136
|
"immutable": true,
|
|
11137
11137
|
"locationInModule": {
|
|
11138
11138
|
"filename": "lib/table.ts",
|
|
11139
|
-
"line":
|
|
11139
|
+
"line": 598
|
|
11140
11140
|
},
|
|
11141
11141
|
"name": "type",
|
|
11142
11142
|
"type": {
|
|
@@ -11153,7 +11153,7 @@
|
|
|
11153
11153
|
"immutable": true,
|
|
11154
11154
|
"locationInModule": {
|
|
11155
11155
|
"filename": "lib/table.ts",
|
|
11156
|
-
"line":
|
|
11156
|
+
"line": 577
|
|
11157
11157
|
},
|
|
11158
11158
|
"name": "id",
|
|
11159
11159
|
"optional": true,
|
|
@@ -11172,7 +11172,7 @@
|
|
|
11172
11172
|
"immutable": true,
|
|
11173
11173
|
"locationInModule": {
|
|
11174
11174
|
"filename": "lib/table.ts",
|
|
11175
|
-
"line":
|
|
11175
|
+
"line": 591
|
|
11176
11176
|
},
|
|
11177
11177
|
"name": "required",
|
|
11178
11178
|
"optional": true,
|
|
@@ -11200,7 +11200,7 @@
|
|
|
11200
11200
|
"kind": "interface",
|
|
11201
11201
|
"locationInModule": {
|
|
11202
11202
|
"filename": "lib/table.ts",
|
|
11203
|
-
"line":
|
|
11203
|
+
"line": 608
|
|
11204
11204
|
},
|
|
11205
11205
|
"name": "SnapshotManagementProperty",
|
|
11206
11206
|
"properties": [
|
|
@@ -11214,7 +11214,7 @@
|
|
|
11214
11214
|
"immutable": true,
|
|
11215
11215
|
"locationInModule": {
|
|
11216
11216
|
"filename": "lib/table.ts",
|
|
11217
|
-
"line":
|
|
11217
|
+
"line": 614
|
|
11218
11218
|
},
|
|
11219
11219
|
"name": "maxSnapshotAgeHours",
|
|
11220
11220
|
"optional": true,
|
|
@@ -11232,7 +11232,7 @@
|
|
|
11232
11232
|
"immutable": true,
|
|
11233
11233
|
"locationInModule": {
|
|
11234
11234
|
"filename": "lib/table.ts",
|
|
11235
|
-
"line":
|
|
11235
|
+
"line": 621
|
|
11236
11236
|
},
|
|
11237
11237
|
"name": "minSnapshotsToKeep",
|
|
11238
11238
|
"optional": true,
|
|
@@ -11250,7 +11250,7 @@
|
|
|
11250
11250
|
"immutable": true,
|
|
11251
11251
|
"locationInModule": {
|
|
11252
11252
|
"filename": "lib/table.ts",
|
|
11253
|
-
"line":
|
|
11253
|
+
"line": 628
|
|
11254
11254
|
},
|
|
11255
11255
|
"name": "status",
|
|
11256
11256
|
"optional": true,
|
|
@@ -11275,7 +11275,7 @@
|
|
|
11275
11275
|
"kind": "enum",
|
|
11276
11276
|
"locationInModule": {
|
|
11277
11277
|
"filename": "lib/table.ts",
|
|
11278
|
-
"line":
|
|
11278
|
+
"line": 386
|
|
11279
11279
|
},
|
|
11280
11280
|
"members": [
|
|
11281
11281
|
{
|
|
@@ -11310,7 +11310,7 @@
|
|
|
11310
11310
|
"kind": "enum",
|
|
11311
11311
|
"locationInModule": {
|
|
11312
11312
|
"filename": "lib/table.ts",
|
|
11313
|
-
"line":
|
|
11313
|
+
"line": 287
|
|
11314
11314
|
},
|
|
11315
11315
|
"members": [
|
|
11316
11316
|
{
|
|
@@ -11331,13 +11331,51 @@
|
|
|
11331
11331
|
"name": "Status",
|
|
11332
11332
|
"symbolId": "lib/table:Status"
|
|
11333
11333
|
},
|
|
11334
|
+
"@aws-cdk/aws-s3tables-alpha.StorageClass": {
|
|
11335
|
+
"assembly": "@aws-cdk/aws-s3tables-alpha",
|
|
11336
|
+
"docs": {
|
|
11337
|
+
"remarks": "Determines the storage tier used for table data, allowing optimization\nfor different access patterns and cost profiles.",
|
|
11338
|
+
"stability": "experimental",
|
|
11339
|
+
"summary": "Storage class for S3 Tables.",
|
|
11340
|
+
"example": "// Create a table bucket with INTELLIGENT_TIERING storage class\nconst tableBucketWithStorageClass = new TableBucket(scope, 'TableBucketWithStorageClass', {\n tableBucketName: 'storage-class-bucket',\n storageClass: StorageClass.INTELLIGENT_TIERING,\n});",
|
|
11341
|
+
"custom": {
|
|
11342
|
+
"exampleMetadata": "infused"
|
|
11343
|
+
}
|
|
11344
|
+
},
|
|
11345
|
+
"fqn": "@aws-cdk/aws-s3tables-alpha.StorageClass",
|
|
11346
|
+
"kind": "enum",
|
|
11347
|
+
"locationInModule": {
|
|
11348
|
+
"filename": "lib/table-bucket.ts",
|
|
11349
|
+
"line": 171
|
|
11350
|
+
},
|
|
11351
|
+
"members": [
|
|
11352
|
+
{
|
|
11353
|
+
"docs": {
|
|
11354
|
+
"remarks": "Use this for tables with consistent, high-frequency access patterns.",
|
|
11355
|
+
"stability": "experimental",
|
|
11356
|
+
"summary": "Standard storage class for frequently accessed data."
|
|
11357
|
+
},
|
|
11358
|
+
"name": "STANDARD"
|
|
11359
|
+
},
|
|
11360
|
+
{
|
|
11361
|
+
"docs": {
|
|
11362
|
+
"remarks": "Use this for tables with unknown or changing access patterns to optimize costs\nwhile maintaining performance for frequently accessed data.",
|
|
11363
|
+
"stability": "experimental",
|
|
11364
|
+
"summary": "Intelligent-Tiering storage class that automatically moves data between access tiers."
|
|
11365
|
+
},
|
|
11366
|
+
"name": "INTELLIGENT_TIERING"
|
|
11367
|
+
}
|
|
11368
|
+
],
|
|
11369
|
+
"name": "StorageClass",
|
|
11370
|
+
"symbolId": "lib/table-bucket:StorageClass"
|
|
11371
|
+
},
|
|
11334
11372
|
"@aws-cdk/aws-s3tables-alpha.Table": {
|
|
11335
11373
|
"assembly": "@aws-cdk/aws-s3tables-alpha",
|
|
11336
11374
|
"base": "aws-cdk-lib.Resource",
|
|
11337
11375
|
"docs": {
|
|
11338
11376
|
"stability": "experimental",
|
|
11339
11377
|
"summary": "An S3 Table with helpers.",
|
|
11340
|
-
"example": "// Build a table
|
|
11378
|
+
"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});",
|
|
11341
11379
|
"custom": {
|
|
11342
11380
|
"exampleMetadata": "infused"
|
|
11343
11381
|
}
|
|
@@ -11349,7 +11387,7 @@
|
|
|
11349
11387
|
},
|
|
11350
11388
|
"locationInModule": {
|
|
11351
11389
|
"filename": "lib/table.ts",
|
|
11352
|
-
"line":
|
|
11390
|
+
"line": 779
|
|
11353
11391
|
},
|
|
11354
11392
|
"parameters": [
|
|
11355
11393
|
{
|
|
@@ -11379,7 +11417,7 @@
|
|
|
11379
11417
|
"kind": "class",
|
|
11380
11418
|
"locationInModule": {
|
|
11381
11419
|
"filename": "lib/table.ts",
|
|
11382
|
-
"line":
|
|
11420
|
+
"line": 652
|
|
11383
11421
|
},
|
|
11384
11422
|
"methods": [
|
|
11385
11423
|
{
|
|
@@ -11389,7 +11427,7 @@
|
|
|
11389
11427
|
},
|
|
11390
11428
|
"locationInModule": {
|
|
11391
11429
|
"filename": "lib/table.ts",
|
|
11392
|
-
"line":
|
|
11430
|
+
"line": 664
|
|
11393
11431
|
},
|
|
11394
11432
|
"name": "fromTableAttributes",
|
|
11395
11433
|
"parameters": [
|
|
@@ -11438,7 +11476,7 @@
|
|
|
11438
11476
|
},
|
|
11439
11477
|
"locationInModule": {
|
|
11440
11478
|
"filename": "lib/table.ts",
|
|
11441
|
-
"line":
|
|
11479
|
+
"line": 697
|
|
11442
11480
|
},
|
|
11443
11481
|
"name": "validateTableName",
|
|
11444
11482
|
"parameters": [
|
|
@@ -11462,7 +11500,7 @@
|
|
|
11462
11500
|
},
|
|
11463
11501
|
"locationInModule": {
|
|
11464
11502
|
"filename": "lib/table.ts",
|
|
11465
|
-
"line":
|
|
11503
|
+
"line": 125
|
|
11466
11504
|
},
|
|
11467
11505
|
"name": "addToResourcePolicy",
|
|
11468
11506
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
|
|
@@ -11487,7 +11525,7 @@
|
|
|
11487
11525
|
},
|
|
11488
11526
|
"locationInModule": {
|
|
11489
11527
|
"filename": "lib/table.ts",
|
|
11490
|
-
"line":
|
|
11528
|
+
"line": 146
|
|
11491
11529
|
},
|
|
11492
11530
|
"name": "grantRead",
|
|
11493
11531
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
|
|
@@ -11512,7 +11550,7 @@
|
|
|
11512
11550
|
},
|
|
11513
11551
|
"locationInModule": {
|
|
11514
11552
|
"filename": "lib/table.ts",
|
|
11515
|
-
"line":
|
|
11553
|
+
"line": 168
|
|
11516
11554
|
},
|
|
11517
11555
|
"name": "grantReadWrite",
|
|
11518
11556
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
|
|
@@ -11537,7 +11575,7 @@
|
|
|
11537
11575
|
},
|
|
11538
11576
|
"locationInModule": {
|
|
11539
11577
|
"filename": "lib/table.ts",
|
|
11540
|
-
"line":
|
|
11578
|
+
"line": 157
|
|
11541
11579
|
},
|
|
11542
11580
|
"name": "grantWrite",
|
|
11543
11581
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
|
|
@@ -11567,7 +11605,7 @@
|
|
|
11567
11605
|
"immutable": true,
|
|
11568
11606
|
"locationInModule": {
|
|
11569
11607
|
"filename": "lib/table.ts",
|
|
11570
|
-
"line":
|
|
11608
|
+
"line": 655
|
|
11571
11609
|
},
|
|
11572
11610
|
"name": "PROPERTY_INJECTION_ID",
|
|
11573
11611
|
"static": true,
|
|
@@ -11583,7 +11621,7 @@
|
|
|
11583
11621
|
"immutable": true,
|
|
11584
11622
|
"locationInModule": {
|
|
11585
11623
|
"filename": "lib/table.ts",
|
|
11586
|
-
"line":
|
|
11624
|
+
"line": 760
|
|
11587
11625
|
},
|
|
11588
11626
|
"name": "cdkTagManager",
|
|
11589
11627
|
"overrides": "aws-cdk-lib.ITaggableV2",
|
|
@@ -11599,7 +11637,7 @@
|
|
|
11599
11637
|
"immutable": true,
|
|
11600
11638
|
"locationInModule": {
|
|
11601
11639
|
"filename": "lib/table.ts",
|
|
11602
|
-
"line":
|
|
11640
|
+
"line": 770
|
|
11603
11641
|
},
|
|
11604
11642
|
"name": "namespace",
|
|
11605
11643
|
"type": {
|
|
@@ -11614,7 +11652,7 @@
|
|
|
11614
11652
|
"immutable": true,
|
|
11615
11653
|
"locationInModule": {
|
|
11616
11654
|
"filename": "lib/table.ts",
|
|
11617
|
-
"line":
|
|
11655
|
+
"line": 749
|
|
11618
11656
|
},
|
|
11619
11657
|
"name": "tableArn",
|
|
11620
11658
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
|
|
@@ -11630,7 +11668,7 @@
|
|
|
11630
11668
|
"immutable": true,
|
|
11631
11669
|
"locationInModule": {
|
|
11632
11670
|
"filename": "lib/table.ts",
|
|
11633
|
-
"line":
|
|
11671
|
+
"line": 765
|
|
11634
11672
|
},
|
|
11635
11673
|
"name": "tableName",
|
|
11636
11674
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITable",
|
|
@@ -11646,7 +11684,7 @@
|
|
|
11646
11684
|
"immutable": true,
|
|
11647
11685
|
"locationInModule": {
|
|
11648
11686
|
"filename": "lib/table.ts",
|
|
11649
|
-
"line":
|
|
11687
|
+
"line": 775
|
|
11650
11688
|
},
|
|
11651
11689
|
"name": "tablePolicy",
|
|
11652
11690
|
"optional": true,
|
|
@@ -11661,7 +11699,7 @@
|
|
|
11661
11699
|
},
|
|
11662
11700
|
"locationInModule": {
|
|
11663
11701
|
"filename": "lib/table.ts",
|
|
11664
|
-
"line":
|
|
11702
|
+
"line": 777
|
|
11665
11703
|
},
|
|
11666
11704
|
"name": "autoCreatePolicy",
|
|
11667
11705
|
"protected": true,
|
|
@@ -11688,7 +11726,7 @@
|
|
|
11688
11726
|
"kind": "interface",
|
|
11689
11727
|
"locationInModule": {
|
|
11690
11728
|
"filename": "lib/table.ts",
|
|
11691
|
-
"line":
|
|
11729
|
+
"line": 637
|
|
11692
11730
|
},
|
|
11693
11731
|
"name": "TableAttributes",
|
|
11694
11732
|
"properties": [
|
|
@@ -11701,7 +11739,7 @@
|
|
|
11701
11739
|
"immutable": true,
|
|
11702
11740
|
"locationInModule": {
|
|
11703
11741
|
"filename": "lib/table.ts",
|
|
11704
|
-
"line":
|
|
11742
|
+
"line": 646
|
|
11705
11743
|
},
|
|
11706
11744
|
"name": "tableArn",
|
|
11707
11745
|
"type": {
|
|
@@ -11717,7 +11755,7 @@
|
|
|
11717
11755
|
"immutable": true,
|
|
11718
11756
|
"locationInModule": {
|
|
11719
11757
|
"filename": "lib/table.ts",
|
|
11720
|
-
"line":
|
|
11758
|
+
"line": 641
|
|
11721
11759
|
},
|
|
11722
11760
|
"name": "tableName",
|
|
11723
11761
|
"type": {
|
|
@@ -11746,7 +11784,7 @@
|
|
|
11746
11784
|
},
|
|
11747
11785
|
"locationInModule": {
|
|
11748
11786
|
"filename": "lib/table-bucket.ts",
|
|
11749
|
-
"line":
|
|
11787
|
+
"line": 646
|
|
11750
11788
|
},
|
|
11751
11789
|
"parameters": [
|
|
11752
11790
|
{
|
|
@@ -11776,7 +11814,7 @@
|
|
|
11776
11814
|
"kind": "class",
|
|
11777
11815
|
"locationInModule": {
|
|
11778
11816
|
"filename": "lib/table-bucket.ts",
|
|
11779
|
-
"line":
|
|
11817
|
+
"line": 467
|
|
11780
11818
|
},
|
|
11781
11819
|
"methods": [
|
|
11782
11820
|
{
|
|
@@ -11786,7 +11824,7 @@
|
|
|
11786
11824
|
},
|
|
11787
11825
|
"locationInModule": {
|
|
11788
11826
|
"filename": "lib/table-bucket.ts",
|
|
11789
|
-
"line":
|
|
11827
|
+
"line": 479
|
|
11790
11828
|
},
|
|
11791
11829
|
"name": "fromTableBucketArn",
|
|
11792
11830
|
"parameters": [
|
|
@@ -11832,7 +11870,7 @@
|
|
|
11832
11870
|
},
|
|
11833
11871
|
"locationInModule": {
|
|
11834
11872
|
"filename": "lib/table-bucket.ts",
|
|
11835
|
-
"line":
|
|
11873
|
+
"line": 490
|
|
11836
11874
|
},
|
|
11837
11875
|
"name": "fromTableBucketAttributes",
|
|
11838
11876
|
"parameters": [
|
|
@@ -11879,7 +11917,7 @@
|
|
|
11879
11917
|
},
|
|
11880
11918
|
"locationInModule": {
|
|
11881
11919
|
"filename": "lib/table-bucket.ts",
|
|
11882
|
-
"line":
|
|
11920
|
+
"line": 526
|
|
11883
11921
|
},
|
|
11884
11922
|
"name": "validateTableBucketName",
|
|
11885
11923
|
"parameters": [
|
|
@@ -11903,7 +11941,7 @@
|
|
|
11903
11941
|
},
|
|
11904
11942
|
"locationInModule": {
|
|
11905
11943
|
"filename": "lib/table-bucket.ts",
|
|
11906
|
-
"line":
|
|
11944
|
+
"line": 583
|
|
11907
11945
|
},
|
|
11908
11946
|
"name": "validateUnreferencedFileRemoval",
|
|
11909
11947
|
"parameters": [
|
|
@@ -11929,7 +11967,7 @@
|
|
|
11929
11967
|
},
|
|
11930
11968
|
"locationInModule": {
|
|
11931
11969
|
"filename": "lib/table-bucket.ts",
|
|
11932
|
-
"line":
|
|
11970
|
+
"line": 244
|
|
11933
11971
|
},
|
|
11934
11972
|
"name": "addToResourcePolicy",
|
|
11935
11973
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
|
|
@@ -11957,7 +11995,7 @@
|
|
|
11957
11995
|
},
|
|
11958
11996
|
"locationInModule": {
|
|
11959
11997
|
"filename": "lib/table-bucket.ts",
|
|
11960
|
-
"line":
|
|
11998
|
+
"line": 264
|
|
11961
11999
|
},
|
|
11962
12000
|
"name": "grantRead",
|
|
11963
12001
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
|
|
@@ -11988,7 +12026,7 @@
|
|
|
11988
12026
|
},
|
|
11989
12027
|
"locationInModule": {
|
|
11990
12028
|
"filename": "lib/table-bucket.ts",
|
|
11991
|
-
"line":
|
|
12029
|
+
"line": 290
|
|
11992
12030
|
},
|
|
11993
12031
|
"name": "grantReadWrite",
|
|
11994
12032
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
|
|
@@ -12019,7 +12057,7 @@
|
|
|
12019
12057
|
},
|
|
12020
12058
|
"locationInModule": {
|
|
12021
12059
|
"filename": "lib/table-bucket.ts",
|
|
12022
|
-
"line":
|
|
12060
|
+
"line": 277
|
|
12023
12061
|
},
|
|
12024
12062
|
"name": "grantWrite",
|
|
12025
12063
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
|
|
@@ -12055,7 +12093,7 @@
|
|
|
12055
12093
|
"immutable": true,
|
|
12056
12094
|
"locationInModule": {
|
|
12057
12095
|
"filename": "lib/table-bucket.ts",
|
|
12058
|
-
"line":
|
|
12096
|
+
"line": 470
|
|
12059
12097
|
},
|
|
12060
12098
|
"name": "PROPERTY_INJECTION_ID",
|
|
12061
12099
|
"static": true,
|
|
@@ -12071,7 +12109,7 @@
|
|
|
12071
12109
|
"immutable": true,
|
|
12072
12110
|
"locationInModule": {
|
|
12073
12111
|
"filename": "lib/table-bucket.ts",
|
|
12074
|
-
"line":
|
|
12112
|
+
"line": 635
|
|
12075
12113
|
},
|
|
12076
12114
|
"name": "cdkTagManager",
|
|
12077
12115
|
"overrides": "aws-cdk-lib.ITaggableV2",
|
|
@@ -12087,7 +12125,7 @@
|
|
|
12087
12125
|
"immutable": true,
|
|
12088
12126
|
"locationInModule": {
|
|
12089
12127
|
"filename": "lib/table-bucket.ts",
|
|
12090
|
-
"line":
|
|
12128
|
+
"line": 686
|
|
12091
12129
|
},
|
|
12092
12130
|
"name": "tableBucketArn",
|
|
12093
12131
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
|
|
@@ -12103,7 +12141,7 @@
|
|
|
12103
12141
|
"immutable": true,
|
|
12104
12142
|
"locationInModule": {
|
|
12105
12143
|
"filename": "lib/table-bucket.ts",
|
|
12106
|
-
"line":
|
|
12144
|
+
"line": 678
|
|
12107
12145
|
},
|
|
12108
12146
|
"name": "tableBucketName",
|
|
12109
12147
|
"overrides": "@aws-cdk/aws-s3tables-alpha.ITableBucket",
|
|
@@ -12119,7 +12157,7 @@
|
|
|
12119
12157
|
"immutable": true,
|
|
12120
12158
|
"locationInModule": {
|
|
12121
12159
|
"filename": "lib/table-bucket.ts",
|
|
12122
|
-
"line":
|
|
12160
|
+
"line": 642
|
|
12123
12161
|
},
|
|
12124
12162
|
"name": "encryptionKey",
|
|
12125
12163
|
"optional": true,
|
|
@@ -12136,7 +12174,7 @@
|
|
|
12136
12174
|
"immutable": true,
|
|
12137
12175
|
"locationInModule": {
|
|
12138
12176
|
"filename": "lib/table-bucket.ts",
|
|
12139
|
-
"line":
|
|
12177
|
+
"line": 640
|
|
12140
12178
|
},
|
|
12141
12179
|
"name": "tableBucketPolicy",
|
|
12142
12180
|
"optional": true,
|
|
@@ -12151,7 +12189,7 @@
|
|
|
12151
12189
|
},
|
|
12152
12190
|
"locationInModule": {
|
|
12153
12191
|
"filename": "lib/table-bucket.ts",
|
|
12154
|
-
"line":
|
|
12192
|
+
"line": 644
|
|
12155
12193
|
},
|
|
12156
12194
|
"name": "autoCreatePolicy",
|
|
12157
12195
|
"protected": true,
|
|
@@ -12178,7 +12216,7 @@
|
|
|
12178
12216
|
"kind": "interface",
|
|
12179
12217
|
"locationInModule": {
|
|
12180
12218
|
"filename": "lib/table-bucket.ts",
|
|
12181
|
-
"line":
|
|
12219
|
+
"line": 418
|
|
12182
12220
|
},
|
|
12183
12221
|
"name": "TableBucketAttributes",
|
|
12184
12222
|
"properties": [
|
|
@@ -12192,7 +12230,7 @@
|
|
|
12192
12230
|
"immutable": true,
|
|
12193
12231
|
"locationInModule": {
|
|
12194
12232
|
"filename": "lib/table-bucket.ts",
|
|
12195
|
-
"line":
|
|
12233
|
+
"line": 429
|
|
12196
12234
|
},
|
|
12197
12235
|
"name": "account",
|
|
12198
12236
|
"optional": true,
|
|
@@ -12210,7 +12248,7 @@
|
|
|
12210
12248
|
"immutable": true,
|
|
12211
12249
|
"locationInModule": {
|
|
12212
12250
|
"filename": "lib/table-bucket.ts",
|
|
12213
|
-
"line":
|
|
12251
|
+
"line": 447
|
|
12214
12252
|
},
|
|
12215
12253
|
"name": "encryptionKey",
|
|
12216
12254
|
"optional": true,
|
|
@@ -12228,7 +12266,7 @@
|
|
|
12228
12266
|
"immutable": true,
|
|
12229
12267
|
"locationInModule": {
|
|
12230
12268
|
"filename": "lib/table-bucket.ts",
|
|
12231
|
-
"line":
|
|
12269
|
+
"line": 423
|
|
12232
12270
|
},
|
|
12233
12271
|
"name": "region",
|
|
12234
12272
|
"optional": true,
|
|
@@ -12246,7 +12284,7 @@
|
|
|
12246
12284
|
"immutable": true,
|
|
12247
12285
|
"locationInModule": {
|
|
12248
12286
|
"filename": "lib/table-bucket.ts",
|
|
12249
|
-
"line":
|
|
12287
|
+
"line": 441
|
|
12250
12288
|
},
|
|
12251
12289
|
"name": "tableBucketArn",
|
|
12252
12290
|
"optional": true,
|
|
@@ -12264,7 +12302,7 @@
|
|
|
12264
12302
|
"immutable": true,
|
|
12265
12303
|
"locationInModule": {
|
|
12266
12304
|
"filename": "lib/table-bucket.ts",
|
|
12267
|
-
"line":
|
|
12305
|
+
"line": 435
|
|
12268
12306
|
},
|
|
12269
12307
|
"name": "tableBucketName",
|
|
12270
12308
|
"optional": true,
|
|
@@ -12289,7 +12327,7 @@
|
|
|
12289
12327
|
"kind": "enum",
|
|
12290
12328
|
"locationInModule": {
|
|
12291
12329
|
"filename": "lib/table-bucket.ts",
|
|
12292
|
-
"line":
|
|
12330
|
+
"line": 191
|
|
12293
12331
|
},
|
|
12294
12332
|
"members": [
|
|
12295
12333
|
{
|
|
@@ -12483,7 +12521,7 @@
|
|
|
12483
12521
|
"kind": "interface",
|
|
12484
12522
|
"locationInModule": {
|
|
12485
12523
|
"filename": "lib/table-bucket.ts",
|
|
12486
|
-
"line":
|
|
12524
|
+
"line": 334
|
|
12487
12525
|
},
|
|
12488
12526
|
"name": "TableBucketProps",
|
|
12489
12527
|
"properties": [
|
|
@@ -12499,7 +12537,7 @@
|
|
|
12499
12537
|
"immutable": true,
|
|
12500
12538
|
"locationInModule": {
|
|
12501
12539
|
"filename": "lib/table-bucket.ts",
|
|
12502
|
-
"line":
|
|
12540
|
+
"line": 339
|
|
12503
12541
|
},
|
|
12504
12542
|
"name": "tableBucketName",
|
|
12505
12543
|
"type": {
|
|
@@ -12516,7 +12554,7 @@
|
|
|
12516
12554
|
"immutable": true,
|
|
12517
12555
|
"locationInModule": {
|
|
12518
12556
|
"filename": "lib/table-bucket.ts",
|
|
12519
|
-
"line":
|
|
12557
|
+
"line": 361
|
|
12520
12558
|
},
|
|
12521
12559
|
"name": "account",
|
|
12522
12560
|
"optional": true,
|
|
@@ -12535,7 +12573,7 @@
|
|
|
12535
12573
|
"immutable": true,
|
|
12536
12574
|
"locationInModule": {
|
|
12537
12575
|
"filename": "lib/table-bucket.ts",
|
|
12538
|
-
"line":
|
|
12576
|
+
"line": 371
|
|
12539
12577
|
},
|
|
12540
12578
|
"name": "encryption",
|
|
12541
12579
|
"optional": true,
|
|
@@ -12554,7 +12592,7 @@
|
|
|
12554
12592
|
"immutable": true,
|
|
12555
12593
|
"locationInModule": {
|
|
12556
12594
|
"filename": "lib/table-bucket.ts",
|
|
12557
|
-
"line":
|
|
12595
|
+
"line": 382
|
|
12558
12596
|
},
|
|
12559
12597
|
"name": "encryptionKey",
|
|
12560
12598
|
"optional": true,
|
|
@@ -12572,7 +12610,7 @@
|
|
|
12572
12610
|
"immutable": true,
|
|
12573
12611
|
"locationInModule": {
|
|
12574
12612
|
"filename": "lib/table-bucket.ts",
|
|
12575
|
-
"line":
|
|
12613
|
+
"line": 354
|
|
12576
12614
|
},
|
|
12577
12615
|
"name": "region",
|
|
12578
12616
|
"optional": true,
|
|
@@ -12590,7 +12628,7 @@
|
|
|
12590
12628
|
"immutable": true,
|
|
12591
12629
|
"locationInModule": {
|
|
12592
12630
|
"filename": "lib/table-bucket.ts",
|
|
12593
|
-
"line":
|
|
12631
|
+
"line": 389
|
|
12594
12632
|
},
|
|
12595
12633
|
"name": "removalPolicy",
|
|
12596
12634
|
"optional": true,
|
|
@@ -12609,7 +12647,7 @@
|
|
|
12609
12647
|
"immutable": true,
|
|
12610
12648
|
"locationInModule": {
|
|
12611
12649
|
"filename": "lib/table-bucket.ts",
|
|
12612
|
-
"line":
|
|
12650
|
+
"line": 399
|
|
12613
12651
|
},
|
|
12614
12652
|
"name": "requestMetricsStatus",
|
|
12615
12653
|
"optional": true,
|
|
@@ -12617,6 +12655,25 @@
|
|
|
12617
12655
|
"fqn": "@aws-cdk/aws-s3tables-alpha.RequestMetricsStatus"
|
|
12618
12656
|
}
|
|
12619
12657
|
},
|
|
12658
|
+
{
|
|
12659
|
+
"abstract": true,
|
|
12660
|
+
"docs": {
|
|
12661
|
+
"default": "- STANDARD storage class",
|
|
12662
|
+
"remarks": "Determines the storage tier used for table data, allowing optimization\nfor different access patterns and cost profiles.",
|
|
12663
|
+
"stability": "experimental",
|
|
12664
|
+
"summary": "The storage class for the table bucket."
|
|
12665
|
+
},
|
|
12666
|
+
"immutable": true,
|
|
12667
|
+
"locationInModule": {
|
|
12668
|
+
"filename": "lib/table-bucket.ts",
|
|
12669
|
+
"line": 409
|
|
12670
|
+
},
|
|
12671
|
+
"name": "storageClass",
|
|
12672
|
+
"optional": true,
|
|
12673
|
+
"type": {
|
|
12674
|
+
"fqn": "@aws-cdk/aws-s3tables-alpha.StorageClass"
|
|
12675
|
+
}
|
|
12676
|
+
},
|
|
12620
12677
|
{
|
|
12621
12678
|
"abstract": true,
|
|
12622
12679
|
"docs": {
|
|
@@ -12631,7 +12688,7 @@
|
|
|
12631
12688
|
"immutable": true,
|
|
12632
12689
|
"locationInModule": {
|
|
12633
12690
|
"filename": "lib/table-bucket.ts",
|
|
12634
|
-
"line":
|
|
12691
|
+
"line": 347
|
|
12635
12692
|
},
|
|
12636
12693
|
"name": "unreferencedFileRemoval",
|
|
12637
12694
|
"optional": true,
|
|
@@ -12815,7 +12872,7 @@
|
|
|
12815
12872
|
"kind": "interface",
|
|
12816
12873
|
"locationInModule": {
|
|
12817
12874
|
"filename": "lib/table.ts",
|
|
12818
|
-
"line":
|
|
12875
|
+
"line": 511
|
|
12819
12876
|
},
|
|
12820
12877
|
"name": "TablePropertyEntry",
|
|
12821
12878
|
"properties": [
|
|
@@ -12828,7 +12885,7 @@
|
|
|
12828
12885
|
"immutable": true,
|
|
12829
12886
|
"locationInModule": {
|
|
12830
12887
|
"filename": "lib/table.ts",
|
|
12831
|
-
"line":
|
|
12888
|
+
"line": 515
|
|
12832
12889
|
},
|
|
12833
12890
|
"name": "key",
|
|
12834
12891
|
"type": {
|
|
@@ -12844,7 +12901,7 @@
|
|
|
12844
12901
|
"immutable": true,
|
|
12845
12902
|
"locationInModule": {
|
|
12846
12903
|
"filename": "lib/table.ts",
|
|
12847
|
-
"line":
|
|
12904
|
+
"line": 520
|
|
12848
12905
|
},
|
|
12849
12906
|
"name": "value",
|
|
12850
12907
|
"type": {
|
|
@@ -12860,7 +12917,7 @@
|
|
|
12860
12917
|
"docs": {
|
|
12861
12918
|
"stability": "experimental",
|
|
12862
12919
|
"summary": "Properties for creating a new S3 Table.",
|
|
12863
|
-
"example": "// Build a table
|
|
12920
|
+
"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});",
|
|
12864
12921
|
"custom": {
|
|
12865
12922
|
"exampleMetadata": "infused"
|
|
12866
12923
|
}
|
|
@@ -12869,7 +12926,7 @@
|
|
|
12869
12926
|
"kind": "interface",
|
|
12870
12927
|
"locationInModule": {
|
|
12871
12928
|
"filename": "lib/table.ts",
|
|
12872
|
-
"line":
|
|
12929
|
+
"line": 201
|
|
12873
12930
|
},
|
|
12874
12931
|
"name": "TableProps",
|
|
12875
12932
|
"properties": [
|
|
@@ -12882,7 +12939,7 @@
|
|
|
12882
12939
|
"immutable": true,
|
|
12883
12940
|
"locationInModule": {
|
|
12884
12941
|
"filename": "lib/table.ts",
|
|
12885
|
-
"line":
|
|
12942
|
+
"line": 209
|
|
12886
12943
|
},
|
|
12887
12944
|
"name": "namespace",
|
|
12888
12945
|
"type": {
|
|
@@ -12899,7 +12956,7 @@
|
|
|
12899
12956
|
"immutable": true,
|
|
12900
12957
|
"locationInModule": {
|
|
12901
12958
|
"filename": "lib/table.ts",
|
|
12902
|
-
"line":
|
|
12959
|
+
"line": 213
|
|
12903
12960
|
},
|
|
12904
12961
|
"name": "openTableFormat",
|
|
12905
12962
|
"type": {
|
|
@@ -12915,7 +12972,7 @@
|
|
|
12915
12972
|
"immutable": true,
|
|
12916
12973
|
"locationInModule": {
|
|
12917
12974
|
"filename": "lib/table.ts",
|
|
12918
|
-
"line":
|
|
12975
|
+
"line": 205
|
|
12919
12976
|
},
|
|
12920
12977
|
"name": "tableName",
|
|
12921
12978
|
"type": {
|
|
@@ -12933,7 +12990,7 @@
|
|
|
12933
12990
|
"immutable": true,
|
|
12934
12991
|
"locationInModule": {
|
|
12935
12992
|
"filename": "lib/table.ts",
|
|
12936
|
-
"line":
|
|
12993
|
+
"line": 219
|
|
12937
12994
|
},
|
|
12938
12995
|
"name": "compaction",
|
|
12939
12996
|
"optional": true,
|
|
@@ -12951,7 +13008,7 @@
|
|
|
12951
13008
|
"immutable": true,
|
|
12952
13009
|
"locationInModule": {
|
|
12953
13010
|
"filename": "lib/table.ts",
|
|
12954
|
-
"line":
|
|
13011
|
+
"line": 224
|
|
12955
13012
|
},
|
|
12956
13013
|
"name": "icebergMetadata",
|
|
12957
13014
|
"optional": true,
|
|
@@ -12969,7 +13026,7 @@
|
|
|
12969
13026
|
"immutable": true,
|
|
12970
13027
|
"locationInModule": {
|
|
12971
13028
|
"filename": "lib/table.ts",
|
|
12972
|
-
"line":
|
|
13029
|
+
"line": 235
|
|
12973
13030
|
},
|
|
12974
13031
|
"name": "removalPolicy",
|
|
12975
13032
|
"optional": true,
|
|
@@ -12987,7 +13044,7 @@
|
|
|
12987
13044
|
"immutable": true,
|
|
12988
13045
|
"locationInModule": {
|
|
12989
13046
|
"filename": "lib/table.ts",
|
|
12990
|
-
"line":
|
|
13047
|
+
"line": 229
|
|
12991
13048
|
},
|
|
12992
13049
|
"name": "snapshotManagement",
|
|
12993
13050
|
"optional": true,
|
|
@@ -12995,6 +13052,25 @@
|
|
|
12995
13052
|
"fqn": "@aws-cdk/aws-s3tables-alpha.SnapshotManagementProperty"
|
|
12996
13053
|
}
|
|
12997
13054
|
},
|
|
13055
|
+
{
|
|
13056
|
+
"abstract": true,
|
|
13057
|
+
"docs": {
|
|
13058
|
+
"default": "- Inherits from the table bucket's storage class configuration",
|
|
13059
|
+
"remarks": "Determines the storage tier used for table data, allowing optimization\nfor different access patterns and cost profiles.\n\nNote: This is a create-only property and cannot be changed after the table is created.",
|
|
13060
|
+
"stability": "experimental",
|
|
13061
|
+
"summary": "The storage class for the table."
|
|
13062
|
+
},
|
|
13063
|
+
"immutable": true,
|
|
13064
|
+
"locationInModule": {
|
|
13065
|
+
"filename": "lib/table.ts",
|
|
13066
|
+
"line": 255
|
|
13067
|
+
},
|
|
13068
|
+
"name": "storageClass",
|
|
13069
|
+
"optional": true,
|
|
13070
|
+
"type": {
|
|
13071
|
+
"fqn": "@aws-cdk/aws-s3tables-alpha.StorageClass"
|
|
13072
|
+
}
|
|
13073
|
+
},
|
|
12998
13074
|
{
|
|
12999
13075
|
"abstract": true,
|
|
13000
13076
|
"docs": {
|
|
@@ -13006,7 +13082,7 @@
|
|
|
13006
13082
|
"immutable": true,
|
|
13007
13083
|
"locationInModule": {
|
|
13008
13084
|
"filename": "lib/table.ts",
|
|
13009
|
-
"line":
|
|
13085
|
+
"line": 243
|
|
13010
13086
|
},
|
|
13011
13087
|
"name": "withoutMetadata",
|
|
13012
13088
|
"optional": true,
|
|
@@ -13135,6 +13211,6 @@
|
|
|
13135
13211
|
"symbolId": "lib/table-bucket:UnreferencedFileRemovalStatus"
|
|
13136
13212
|
}
|
|
13137
13213
|
},
|
|
13138
|
-
"version": "2.
|
|
13214
|
+
"version": "2.267.0-alpha.0",
|
|
13139
13215
|
"fingerprint": "**********"
|
|
13140
13216
|
}
|