interface IcebergPartitionSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins.CfnTablePropsMixin.IcebergPartitionSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3tables/mixins#CfnTablePropsMixin_IcebergPartitionSpecProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3tables.mixins.CfnTablePropsMixin.IcebergPartitionSpecProperty |
Python | aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTablePropsMixin.IcebergPartitionSpecProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3tables » mixins » CfnTablePropsMixin » 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 { mixins as s3tables_mixins } from '@aws-cdk/mixins-preview/aws-s3tables';
const icebergPartitionSpecProperty: s3tables_mixins.CfnTablePropsMixin.IcebergPartitionSpecProperty = {
fields: [{
fieldId: 123,
name: 'name',
sourceId: 123,
transform: 'transform',
}],
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)[]
(optional)
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