Class: Aws::Glue::Types::SerDeInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of the SerDe.

Returns:

  • (String)


19798
19799
19800
19801
19802
19803
19804
# File 'lib/aws-sdk-glue/types.rb', line 19798

class SerDeInfo < Struct.new(
  :name,
  :serialization_library,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,String>

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

Returns:

  • (Hash<String,String>)


19798
19799
19800
19801
19802
19803
19804
# File 'lib/aws-sdk-glue/types.rb', line 19798

class SerDeInfo < Struct.new(
  :name,
  :serialization_library,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#serialization_libraryString

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

Returns:

  • (String)


19798
19799
19800
19801
19802
19803
19804
# File 'lib/aws-sdk-glue/types.rb', line 19798

class SerDeInfo < Struct.new(
  :name,
  :serialization_library,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end