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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/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)


19146
19147
19148
19149
19150
19151
19152
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19146

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>)


19146
19147
19148
19149
19150
19151
19152
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19146

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)


19146
19147
19148
19149
19150
19151
19152
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19146

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