Interface CfnDatasetPropsMixin.SchemaProperty

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

@Stability(Stable) public static interface CfnDatasetPropsMixin.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.cfnpropertymixins.services.scn.*;
 SchemaProperty schemaProperty = SchemaProperty.builder()
         .fields(List.of(DataLakeDatasetSchemaFieldProperty.builder()
                 .isRequired(false)
                 .name("name")
                 .type("type")
                 .build()))
         .name("name")
         .primaryKeys(List.of(DataLakeDatasetPrimaryKeyFieldProperty.builder()
                 .name("name")
                 .build()))
         .build();
 

See Also: