Class: Aws::SageMaker::Types::LabelingJobStoppingConditions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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.

Labeling jobs fail after 30 days with an appropriate client error message.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_human_labeled_object_countInteger

The maximum number of objects that can be labeled by human workers.

Returns:

  • (Integer)


24429
24430
24431
24432
24433
24434
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24429

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_labeledInteger

The maximum number of input data objects that should be labeled.

Returns:

  • (Integer)


24429
24430
24431
24432
24433
24434
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24429

class LabelingJobStoppingConditions < Struct.new(
  :max_human_labeled_object_count,
  :max_percentage_of_input_dataset_labeled)
  SENSITIVE = []
  include Aws::Structure
end