Class: Aws::Glue::Types::StatementOutput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::StatementOutput
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The code execution output in JSON format.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #data  ⇒ Types::StatementOutputData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The code execution output. 
- 
  
    
      #error_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the error in the output. 
- 
  
    
      #error_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error value of the output. 
- 
  
    
      #execution_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The execution count of the output. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the code execution output. 
- 
  
    
      #traceback  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The traceback of the output. 
Instance Attribute Details
#data ⇒ Types::StatementOutputData
The code execution output.
| 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 | # File 'lib/aws-sdk-glue/types.rb', line 24431 class StatementOutput < Struct.new( :data, :execution_count, :status, :error_name, :error_value, :traceback) SENSITIVE = [] include Aws::Structure end | 
#error_name ⇒ String
The name of the error in the output.
| 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 | # File 'lib/aws-sdk-glue/types.rb', line 24431 class StatementOutput < Struct.new( :data, :execution_count, :status, :error_name, :error_value, :traceback) SENSITIVE = [] include Aws::Structure end | 
#error_value ⇒ String
The error value of the output.
| 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 | # File 'lib/aws-sdk-glue/types.rb', line 24431 class StatementOutput < Struct.new( :data, :execution_count, :status, :error_name, :error_value, :traceback) SENSITIVE = [] include Aws::Structure end | 
#execution_count ⇒ Integer
The execution count of the output.
| 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 | # File 'lib/aws-sdk-glue/types.rb', line 24431 class StatementOutput < Struct.new( :data, :execution_count, :status, :error_name, :error_value, :traceback) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the code execution output.
| 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 | # File 'lib/aws-sdk-glue/types.rb', line 24431 class StatementOutput < Struct.new( :data, :execution_count, :status, :error_name, :error_value, :traceback) SENSITIVE = [] include Aws::Structure end | 
#traceback ⇒ Array<String>
The traceback of the output.
| 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 | # File 'lib/aws-sdk-glue/types.rb', line 24431 class StatementOutput < Struct.new( :data, :execution_count, :status, :error_name, :error_value, :traceback) SENSITIVE = [] include Aws::Structure end |