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
Defines the fields of a 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.forecast.*;
 SchemaProperty schemaProperty = SchemaProperty.builder()
         .attributes(List.of(AttributesItemsProperty.builder()
                 .attributeName("attributeName")
                 .attributeType("attributeType")
                 .build()))
         .build();
 

See Also: