@Stability(value=Stable)
public static interface CfnPartition.SerdeInfoProperty
extends software.amazon.jsii.JsiiSerializable
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPartition.SerdeInfoProperty.Builder
A builder for
CfnPartition.SerdeInfoProperty |
static class |
CfnPartition.SerdeInfoProperty.Jsii$Proxy
An implementation for
CfnPartition.SerdeInfoProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPartition.SerdeInfoProperty.Builder |
builder() |
default String |
getName()
Name of the SerDe.
|
default Object |
getParameters()
These key-value pairs define initialization parameters for the SerDe.
|
default String |
getSerializationLibrary()
Usually the class that implements the SerDe.
|
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) @Nullable default String getSerializationLibrary()
An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
@Stability(value=Stable) static CfnPartition.SerdeInfoProperty.Builder builder()
Copyright © 2023. All rights reserved.