Interface CfnDatasetPropsMixin.PartitionSpecProperty

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

@Stability(Stable) public static interface CfnDatasetPropsMixin.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.cfnpropertymixins.services.scn.*;
 PartitionSpecProperty partitionSpecProperty = PartitionSpecProperty.builder()
         .fields(List.of(DataLakeDatasetPartitionFieldProperty.builder()
                 .name("name")
                 .transform(TransformProperty.builder()
                         .type("type")
                         .build())
                 .build()))
         .build();
 

See Also: