Class: Aws::SageMaker::Types::LabelingJobStoppingConditions
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::LabelingJobStoppingConditions
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.
<note markdown=“1”> Labeling jobs fail after 30 days with an appropriate client error message.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max_human_labeled_object_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of objects that can be labeled by human workers.
 - 
  
    
      #max_percentage_of_input_dataset_labeled  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of input data objects that should be labeled.
 
Instance Attribute Details
#max_human_labeled_object_count ⇒ Integer
The maximum number of objects that can be labeled by human workers.
      26985 26986 26987 26988 26989 26990  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 26985 class LabelingJobStoppingConditions < Struct.new( :max_human_labeled_object_count, :max_percentage_of_input_dataset_labeled) SENSITIVE = [] include Aws::Structure end  | 
  
#max_percentage_of_input_dataset_labeled ⇒ Integer
The maximum number of input data objects that should be labeled.
      26985 26986 26987 26988 26989 26990  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 26985 class LabelingJobStoppingConditions < Struct.new( :max_human_labeled_object_count, :max_percentage_of_input_dataset_labeled) SENSITIVE = [] include Aws::Structure end  |