Interface CfnTable.SchemaFieldProperty

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

@Stability(Stable) public static interface CfnTable.SchemaFieldProperty extends software.amazon.jsii.JsiiSerializable
Contains details about a schema field.

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.s3tables.*;
 SchemaFieldProperty schemaFieldProperty = SchemaFieldProperty.builder()
         .name("name")
         .type("type")
         // the properties below are optional
         .required(false)
         .build();
 

See Also: