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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.PartitionSpecPropertystatic final classAn implementation forCfnDataset.PartitionSpecProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFields
The partition fields.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataset.DataLakeDatasetPartitionFieldProperty>- See Also:
-
builder
-