Interface CfnType.FieldProperty

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

@Stability(Stable) public static interface CfnType.FieldProperty extends software.amazon.jsii.JsiiSerializable
The name and data type of an individual field in a user-defined type (UDT).

In addition to a Cassandra data type, you can also use another UDT. When you nest another UDT or collection data type, you have to declare them with the FROZEN keyword.

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.cassandra.*;
 FieldProperty fieldProperty = FieldProperty.builder()
         .fieldName("fieldName")
         .fieldType("fieldType")
         .build();
 

See Also: