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

.NET
Go
Java
Python
TypeScript