interface DataLakeDatasetPartitionFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SCN.CfnDataset.DataLakeDatasetPartitionFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsscn#CfnDataset_DataLakeDatasetPartitionFieldProperty |
Java | software.amazon.awscdk.services.scn.CfnDataset.DataLakeDatasetPartitionFieldProperty |
Python | aws_cdk.aws_scn.CfnDataset.DataLakeDatasetPartitionFieldProperty |
TypeScript | aws-cdk-lib » aws_scn » CfnDataset » DataLakeDatasetPartitionFieldProperty |
The partition field details.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_scn as scn } from 'aws-cdk-lib';
const dataLakeDatasetPartitionFieldProperty: scn.CfnDataset.DataLakeDatasetPartitionFieldProperty = {
name: 'name',
transform: {
type: 'type',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the partition field. |
| transform | IResolvable | Transform | The transformation of the partition field. |
name
Type:
string
The name of the partition field.
transform
Type:
IResolvable | Transform
The transformation of the partition field.

.NET
Go
Java
Python
TypeScript