Class: Aws::Glue::Types::BatchStopJobRunError
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::BatchStopJobRunError
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Records an error that occurred when attempting to stop a specified job run.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #error_detail  ⇒ Types::ErrorDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies details about the error that was encountered. 
- 
  
    
      #job_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the job definition that is used in the job run in question. 
- 
  
    
      #job_run_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ‘JobRunId` of the job run in question. 
Instance Attribute Details
#error_detail ⇒ Types::ErrorDetail
Specifies details about the error that was encountered.
| 1414 1415 1416 1417 1418 1419 1420 | # File 'lib/aws-sdk-glue/types.rb', line 1414 class BatchStopJobRunError < Struct.new( :job_name, :job_run_id, :error_detail) SENSITIVE = [] include Aws::Structure end | 
#job_name ⇒ String
The name of the job definition that is used in the job run in question.
| 1414 1415 1416 1417 1418 1419 1420 | # File 'lib/aws-sdk-glue/types.rb', line 1414 class BatchStopJobRunError < Struct.new( :job_name, :job_run_id, :error_detail) SENSITIVE = [] include Aws::Structure end | 
#job_run_id ⇒ String
The ‘JobRunId` of the job run in question.
| 1414 1415 1416 1417 1418 1419 1420 | # File 'lib/aws-sdk-glue/types.rb', line 1414 class BatchStopJobRunError < Struct.new( :job_name, :job_run_id, :error_detail) SENSITIVE = [] include Aws::Structure end |