Struct aws_sdk_sagemaker::model::LabelingJobStoppingConditions [−][src]
#[non_exhaustive]pub struct LabelingJobStoppingConditions {
pub max_human_labeled_object_count: Option<i32>,
pub max_percentage_of_input_dataset_labeled: Option<i32>,
}
Expand description
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_human_labeled_object_count: Option<i32>
The maximum number of objects that can be labeled by human workers.
max_percentage_of_input_dataset_labeled: Option<i32>
The maximum number of input data objects that should be labeled.
Implementations
The maximum number of objects that can be labeled by human workers.
The maximum number of input data objects that should be labeled.
Creates a new builder-style object to manufacture LabelingJobStoppingConditions
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for LabelingJobStoppingConditions
impl Sync for LabelingJobStoppingConditions
impl Unpin for LabelingJobStoppingConditions
impl UnwindSafe for LabelingJobStoppingConditions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more