Struct aws_sdk_sagemaker::model::label_counters::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for LabelCounters
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn total_labeled(self, input: i32) -> Self
pub fn total_labeled(self, input: i32) -> Self
The total number of objects labeled.
sourcepub fn set_total_labeled(self, input: Option<i32>) -> Self
pub fn set_total_labeled(self, input: Option<i32>) -> Self
The total number of objects labeled.
sourcepub fn human_labeled(self, input: i32) -> Self
pub fn human_labeled(self, input: i32) -> Self
The total number of objects labeled by a human worker.
sourcepub fn set_human_labeled(self, input: Option<i32>) -> Self
pub fn set_human_labeled(self, input: Option<i32>) -> Self
The total number of objects labeled by a human worker.
sourcepub fn machine_labeled(self, input: i32) -> Self
pub fn machine_labeled(self, input: i32) -> Self
The total number of objects labeled by automated data labeling.
sourcepub fn set_machine_labeled(self, input: Option<i32>) -> Self
pub fn set_machine_labeled(self, input: Option<i32>) -> Self
The total number of objects labeled by automated data labeling.
sourcepub fn failed_non_retryable_error(self, input: i32) -> Self
pub fn failed_non_retryable_error(self, input: i32) -> Self
The total number of objects that could not be labeled due to an error.
sourcepub fn set_failed_non_retryable_error(self, input: Option<i32>) -> Self
pub fn set_failed_non_retryable_error(self, input: Option<i32>) -> Self
The total number of objects that could not be labeled due to an error.
sourcepub fn set_unlabeled(self, input: Option<i32>) -> Self
pub fn set_unlabeled(self, input: Option<i32>) -> Self
The total number of objects not yet labeled.
sourcepub fn build(self) -> LabelCounters
pub fn build(self) -> LabelCounters
Consumes the builder and constructs a LabelCounters
.