interface IcebergPartitionSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.IcebergPartitionSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_IcebergPartitionSpecProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.IcebergPartitionSpecProperty |
Python | aws_cdk.aws_glue.CfnTable.IcebergPartitionSpecProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » IcebergPartitionSpecProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const icebergPartitionSpecProperty: glue.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)[] | |
| spec | number |
fields
Type:
IResolvable | (IResolvable | Iceberg)[]
specId?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript