pub struct CreateProjectVersionRequest {
pub output_config: OutputConfig,
pub project_arn: String,
pub testing_data: TestingData,
pub training_data: TrainingData,
pub version_name: String,
}
Fields§
§output_config: OutputConfig
The Amazon S3 location to store the results of training.
project_arn: String
The ARN of the Amazon Rekognition Custom Labels project that manages the model that you want to train.
testing_data: TestingData
The dataset to use for testing.
training_data: TrainingData
The dataset to use for training.
version_name: String
A name for the version of the model. This value must be unique.
Trait Implementations§
Source§impl Clone for CreateProjectVersionRequest
impl Clone for CreateProjectVersionRequest
Source§fn clone(&self) -> CreateProjectVersionRequest
fn clone(&self) -> CreateProjectVersionRequest
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 CreateProjectVersionRequest
impl Debug for CreateProjectVersionRequest
Source§impl Default for CreateProjectVersionRequest
impl Default for CreateProjectVersionRequest
Source§fn default() -> CreateProjectVersionRequest
fn default() -> CreateProjectVersionRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateProjectVersionRequest
Auto Trait Implementations§
impl Freeze for CreateProjectVersionRequest
impl RefUnwindSafe for CreateProjectVersionRequest
impl Send for CreateProjectVersionRequest
impl Sync for CreateProjectVersionRequest
impl Unpin for CreateProjectVersionRequest
impl UnwindSafe for CreateProjectVersionRequest
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