Interface CfnDataset.PartitionSpecProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.PartitionSpecProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.PartitionSpecProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.scn.*;
 PartitionSpecProperty partitionSpecProperty = PartitionSpecProperty.builder()
         .fields(List.of(DataLakeDatasetPartitionFieldProperty.builder()
                 .name("name")
                 .transform(TransformProperty.builder()
                         .type("type")
                         .build())
                 .build()))
         .build();
 

See Also: