Interface CfnDataset.SchemaProperty

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

@Stability(Stable) public static interface CfnDataset.SchemaProperty extends software.amazon.jsii.JsiiSerializable
The schema 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.*;
 SchemaProperty schemaProperty = SchemaProperty.builder()
         .fields(List.of(DataLakeDatasetSchemaFieldProperty.builder()
                 .isRequired(false)
                 .name("name")
                 .type("type")
                 .build()))
         .name("name")
         // the properties below are optional
         .primaryKeys(List.of(DataLakeDatasetPrimaryKeyFieldProperty.builder()
                 .name("name")
                 .build()))
         .build();
 

See Also: