Interface CfnPartition.SerdeInfoProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartition.SerdeInfoProperty.Jsii$Proxy
- Enclosing class:
CfnPartition
@Stability(Stable)
public static interface CfnPartition.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPartition.SerdeInfoProperty
static final class
An implementation forCfnPartition.SerdeInfoProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the SerDe. -
getParameters
These key-value pairs define initialization parameters for the SerDe. -
getSerializationLibrary
Usually the class that implements the SerDe.An example is
org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
. -
builder
-