Class: Aws::Glue::Types::Column
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Column
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A column in a ‘Table`.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #comment  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A free-form text comment. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the ‘Column`. 
- 
  
    
      #parameters  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    These key-value pairs define properties associated with the column. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data type of the ‘Column`. 
Instance Attribute Details
#comment ⇒ String
A free-form text comment.
| 3012 3013 3014 3015 3016 3017 3018 3019 | # File 'lib/aws-sdk-glue/types.rb', line 3012 class Column < Struct.new( :name, :type, :comment, :parameters) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the ‘Column`.
| 3012 3013 3014 3015 3016 3017 3018 3019 | # File 'lib/aws-sdk-glue/types.rb', line 3012 class Column < Struct.new( :name, :type, :comment, :parameters) SENSITIVE = [] include Aws::Structure end |