Struct aws_sdk_rekognition::model::testing_data_result::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for TestingDataResult.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn input(self, input: TestingData) -> Self
pub fn input(self, input: TestingData) -> Self
The testing dataset that was supplied for training.
sourcepub fn set_input(self, input: Option<TestingData>) -> Self
pub fn set_input(self, input: Option<TestingData>) -> Self
The testing dataset that was supplied for training.
sourcepub fn output(self, input: TestingData) -> Self
pub fn output(self, input: TestingData) -> Self
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
sourcepub fn set_output(self, input: Option<TestingData>) -> Self
pub fn set_output(self, input: Option<TestingData>) -> Self
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
sourcepub fn validation(self, input: ValidationData) -> Self
pub fn validation(self, input: ValidationData) -> Self
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
sourcepub fn set_validation(self, input: Option<ValidationData>) -> Self
pub fn set_validation(self, input: Option<ValidationData>) -> Self
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
sourcepub fn build(self) -> TestingDataResult
pub fn build(self) -> TestingDataResult
Consumes the builder and constructs a TestingDataResult.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more