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
show all
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

Instance Attribute Details

#nameString

Name of the SerDe.

Returns:

  • (String)

    Name of the SerDe.

#parametersHash<String,String>

These key-value pairs define initialization parameters for the SerDe.

Returns:

  • (Hash<String,String>)

    These key-value pairs define initialization parameters for the SerDe.

#serialization_libraryString

Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

Returns:

  • (String)

    Usually the class that implements the SerDe.