Class: Aws::Glue::Types::SerDeInfo
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::SerDeInfo
 
- 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
- 
  
    
      #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.
| 22980 22981 22982 22983 22984 22985 22986 | # File 'lib/aws-sdk-glue/types.rb', line 22980 class SerDeInfo < Struct.new( :name, :serialization_library, :parameters) SENSITIVE = [] include Aws::Structure end | 
#parameters ⇒ Hash<String,String>
These key-value pairs define initialization parameters for the SerDe.
| 22980 22981 22982 22983 22984 22985 22986 | # File 'lib/aws-sdk-glue/types.rb', line 22980 class SerDeInfo < Struct.new( :name, :serialization_library, :parameters) SENSITIVE = [] include Aws::Structure end | 
#serialization_library ⇒ String
Usually the class that implements the SerDe. An example is ‘org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe`.
| 22980 22981 22982 22983 22984 22985 22986 | # File 'lib/aws-sdk-glue/types.rb', line 22980 class SerDeInfo < Struct.new( :name, :serialization_library, :parameters) SENSITIVE = [] include Aws::Structure end |