You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Glue::Types::SerDeInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SerDeInfo
- Defined in:
- (unknown)
Overview
Note:
When passing SerDeInfo as input to an Aws::Client method, you can use a vanilla Hash:
{
name: "NameString",
serialization_library: "NameString",
parameters: {
"KeyString" => "ParametersMapValue",
},
}
Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.
Returned by:
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the SerDe.
-
#parameters ⇒ Hash<String,String>
These key-value pairs define initialization parameters for the SerDe.
-
#serialization_library ⇒ String
Usually the class that implements the SerDe.
Instance Attribute Details
#name ⇒ String
Name of the SerDe.
#parameters ⇒ Hash<String,String>
These key-value pairs define initialization parameters for the SerDe.
#serialization_library ⇒ String
Usually the class that implements the SerDe. An example is
org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.