[][src]Struct rusoto_rekognition::CreateProjectVersionRequest

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

impl Clone for CreateProjectVersionRequest[src]

impl Debug for CreateProjectVersionRequest[src]

impl Default for CreateProjectVersionRequest[src]

impl PartialEq<CreateProjectVersionRequest> for CreateProjectVersionRequest[src]

impl Serialize for CreateProjectVersionRequest[src]

impl StructuralPartialEq for CreateProjectVersionRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.