interface IcebergPartitionFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.IcebergPartitionFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_IcebergPartitionFieldProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTable.IcebergPartitionFieldProperty |
Python | aws_cdk.aws_s3tables.CfnTable.IcebergPartitionFieldProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » IcebergPartitionFieldProperty |
A partition field 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 icebergPartitionFieldProperty: s3tables.CfnTable.IcebergPartitionFieldProperty = {
name: 'name',
sourceId: 123,
transform: 'transform',
// the properties below are optional
fieldId: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the partition field. |
| source | number | The source column ID to partition on. |
| transform | string | The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour). |
| field | number | The partition field ID (auto-assigned starting from 1000 if not specified). |
name
Type:
string
The name of the partition field.
sourceId
Type:
number
The source column ID to partition on.
transform
Type:
string
The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).
fieldId?
Type:
number
(optional)
The partition field ID (auto-assigned starting from 1000 if not specified).

.NET
Go
Java
Python
TypeScript