interface PartitionSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SCN.CfnDataset.PartitionSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsscn#CfnDataset_PartitionSpecProperty |
Java | software.amazon.awscdk.services.scn.CfnDataset.PartitionSpecProperty |
Python | aws_cdk.aws_scn.CfnDataset.PartitionSpecProperty |
TypeScript | aws-cdk-lib » aws_scn » CfnDataset » PartitionSpecProperty |
The partition specification of the dataset.
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 partitionSpecProperty: scn.CfnDataset.PartitionSpecProperty = {
fields: [{
name: 'name',
transform: {
type: 'type',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| fields | IResolvable | (IResolvable | Data)[] | The partition fields. |
fields
Type:
IResolvable | (IResolvable | Data)[]
The partition fields.

.NET
Go
Java
Python
TypeScript