Class: Aws::Glue::Types::SchemaColumn
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::SchemaColumn
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A key-value pair representing a column and data type that this transform can run against. The ‘Schema` parameter of the `MLTransform` may contain up to 100 of these structures.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #data_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of data in the column. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the column. 
Instance Attribute Details
#data_type ⇒ String
The type of data in the column.
| 22597 22598 22599 22600 22601 22602 | # File 'lib/aws-sdk-glue/types.rb', line 22597 class SchemaColumn < Struct.new( :name, :data_type) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the column.
| 22597 22598 22599 22600 22601 22602 | # File 'lib/aws-sdk-glue/types.rb', line 22597 class SchemaColumn < Struct.new( :name, :data_type) SENSITIVE = [] include Aws::Structure end |