pub struct LabelingJobOutput {
pub final_active_learning_model_arn: Option<String>,
pub output_dataset_s3_uri: String,
}
Expand description
Specifies the location of the output produced by the labeling job.
Fields§
§final_active_learning_model_arn: Option<String>
The Amazon Resource Name (ARN) for the most recent Amazon SageMaker model trained as part of automated data labeling.
output_dataset_s3_uri: String
The Amazon S3 bucket location of the manifest file for labeled data.
Trait Implementations§
Source§impl Clone for LabelingJobOutput
impl Clone for LabelingJobOutput
Source§fn clone(&self) -> LabelingJobOutput
fn clone(&self) -> LabelingJobOutput
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 Debug for LabelingJobOutput
impl Debug for LabelingJobOutput
Source§impl Default for LabelingJobOutput
impl Default for LabelingJobOutput
Source§fn default() -> LabelingJobOutput
fn default() -> LabelingJobOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelingJobOutput
impl<'de> Deserialize<'de> for LabelingJobOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LabelingJobOutput
impl PartialEq for LabelingJobOutput
impl StructuralPartialEq for LabelingJobOutput
Auto Trait Implementations§
impl Freeze for LabelingJobOutput
impl RefUnwindSafe for LabelingJobOutput
impl Send for LabelingJobOutput
impl Sync for LabelingJobOutput
impl Unpin for LabelingJobOutput
impl UnwindSafe for LabelingJobOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more