Class: Aws::Glue::Types::ColumnError
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::ColumnError
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Encapsulates a column name that failed and the reason for failure.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #column_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the column that failed. 
- 
  
    
      #error  ⇒ Types::ErrorDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An error message with the reason for the failure of an operation. 
Instance Attribute Details
#column_name ⇒ String
The name of the column that failed.
| 3033 3034 3035 3036 3037 3038 | # File 'lib/aws-sdk-glue/types.rb', line 3033 class ColumnError < Struct.new( :column_name, :error) SENSITIVE = [] include Aws::Structure end | 
#error ⇒ Types::ErrorDetail
An error message with the reason for the failure of an operation.
| 3033 3034 3035 3036 3037 3038 | # File 'lib/aws-sdk-glue/types.rb', line 3033 class ColumnError < Struct.new( :column_name, :error) SENSITIVE = [] include Aws::Structure end |