Interface CfnTablePropsMixin.SchemaFieldProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.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.cfnpropertymixins.services.s3tables.*;
 SchemaFieldProperty schemaFieldProperty = SchemaFieldProperty.builder()
         .id(123)
         .name("name")
         .required(false)
         .type("type")
         .build();
 

See Also: