Interface CfnTable.SerdeInfoProperty

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

@Stability(Stable) public static interface CfnTable.SerdeInfoProperty extends software.amazon.jsii.JsiiSerializable
Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.

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.glue.*;
 Object parameters;
 SerdeInfoProperty serdeInfoProperty = SerdeInfoProperty.builder()
         .name("name")
         .parameters(parameters)
         .serializationLibrary("serializationLibrary")
         .build();
 

See Also: