Class CfnTablePropsMixin.SerdeInfoProperty
Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.SerdeInfoProperty : CfnTablePropsMixin.ISerdeInfoProperty
Syntax (vb)
Public Class CfnTablePropsMixin.SerdeInfoProperty Implements CfnTablePropsMixin.ISerdeInfoProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins;
var parameters;
var serdeInfoProperty = new SerdeInfoProperty {
Name = "name",
Parameters = parameters,
SerializationLibrary = "serializationLibrary"
};
Synopsis
Constructors
| SerdeInfoProperty() | Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader. |
Properties
| Name | Name of the SerDe. |
| Parameters | These key-value pairs define initialization parameters for the SerDe. |
| SerializationLibrary | Usually the class that implements the SerDe. |
Constructors
SerdeInfoProperty()
Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.
public SerdeInfoProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins;
var parameters;
var serdeInfoProperty = new SerdeInfoProperty {
Name = "name",
Parameters = parameters,
SerializationLibrary = "serializationLibrary"
};
Properties
Name
Name of the SerDe.
public string? Name { get; set; }
Property Value
Remarks
Parameters
These key-value pairs define initialization parameters for the SerDe.
public object? Parameters { get; set; }
Property Value
Remarks
SerializationLibrary
Usually the class that implements the SerDe.
public string? SerializationLibrary { get; set; }
Property Value
Remarks
An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe .