interface IcebergPartitionSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.IcebergPartitionSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_IcebergPartitionSpecProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTable.IcebergPartitionSpecProperty |
Python | aws_cdk.aws_s3tables.CfnTable.IcebergPartitionSpecProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » IcebergPartitionSpecProperty |
Partition specification for an Iceberg table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as s3tables } from 'aws-cdk-lib';
const icebergPartitionSpecProperty: s3tables.CfnTable.IcebergPartitionSpecProperty = {
fields: [{
name: 'name',
sourceId: 123,
transform: 'transform',
// the properties below are optional
fieldId: 123,
}],
// the properties below are optional
specId: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| fields | IResolvable | (IResolvable | Iceberg)[] | List of partition fields for an Iceberg table. |
| spec | number | The partition spec ID (defaults to 0 if not specified). |
fields
Type:
IResolvable | (IResolvable | Iceberg)[]
List of partition fields for an Iceberg table.
specId?
Type:
number
(optional)
The partition spec ID (defaults to 0 if not specified).

.NET
Go
Java
Python
TypeScript