#[non_exhaustive]pub struct LabelingJobStoppingConditions { /* private fields */ }
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.
Implementations§
source§impl LabelingJobStoppingConditions
impl LabelingJobStoppingConditions
sourcepub fn max_human_labeled_object_count(&self) -> Option<i32>
pub fn max_human_labeled_object_count(&self) -> Option<i32>
The maximum number of objects that can be labeled by human workers.
sourcepub fn max_percentage_of_input_dataset_labeled(&self) -> Option<i32>
pub fn max_percentage_of_input_dataset_labeled(&self) -> Option<i32>
The maximum number of input data objects that should be labeled.
source§impl LabelingJobStoppingConditions
impl LabelingJobStoppingConditions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LabelingJobStoppingConditions
.
Trait Implementations§
source§impl Clone for LabelingJobStoppingConditions
impl Clone for LabelingJobStoppingConditions
source§fn clone(&self) -> LabelingJobStoppingConditions
fn clone(&self) -> LabelingJobStoppingConditions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<LabelingJobStoppingConditions> for LabelingJobStoppingConditions
impl PartialEq<LabelingJobStoppingConditions> for LabelingJobStoppingConditions
source§fn eq(&self, other: &LabelingJobStoppingConditions) -> bool
fn eq(&self, other: &LabelingJobStoppingConditions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.