Interface CfnTypeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTypeProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-05-20T23:52:51.340Z") @Stability(Stable) public interface CfnTypeProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnType.

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.*;
 CfnTypeProps cfnTypeProps = CfnTypeProps.builder()
         .fields(List.of(FieldProperty.builder()
                 .fieldName("fieldName")
                 .fieldType("fieldType")
                 .build()))
         .keyspaceName("keyspaceName")
         .typeName("typeName")
         .build();
 

See Also: