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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_human_labeled_object_countInteger

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

Returns:

  • (Integer)


24459
24460
24461
24462
24463
24464
# File 'lib/aws-sdk-sagemaker/types.rb', line 24459

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)


24459
24460
24461
24462
24463
24464
# File 'lib/aws-sdk-sagemaker/types.rb', line 24459

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