interface IcebergPartitionFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.IcebergPartitionFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_IcebergPartitionFieldProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.IcebergPartitionFieldProperty |
Python | aws_cdk.aws_glue.CfnTable.IcebergPartitionFieldProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » IcebergPartitionFieldProperty |
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 icebergPartitionFieldProperty: glue.CfnTable.IcebergPartitionFieldProperty = {
name: 'name',
sourceId: 123,
transform: 'transform',
// the properties below are optional
fieldId: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| source | number | |
| transform | string | |
| field | number |
name
Type:
string
sourceId
Type:
number
transform
Type:
string
fieldId?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript