Class: Aws::Glue::Types::TableError
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Glue::Types::TableError
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-glue/types.rb
 
Overview
An error record for table operations.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_detail  ⇒ Types::ErrorDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The details about the error.
 - 
  
    
      #table_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the table.
 
Instance Attribute Details
#error_detail ⇒ Types::ErrorDetail
The details about the error.
      22490 22491 22492 22493 22494 22495  | 
    
      # File 'lib/aws-sdk-glue/types.rb', line 22490 class TableError < Struct.new( :table_name, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#table_name ⇒ String
The name of the table. For Hive compatibility, this must be entirely lowercase.
      22490 22491 22492 22493 22494 22495  | 
    
      # File 'lib/aws-sdk-glue/types.rb', line 22490 class TableError < Struct.new( :table_name, :error_detail) SENSITIVE = [] include Aws::Structure end  |