[][src]Struct rusoto_personalize::CreateSolutionVersionRequest

pub struct CreateSolutionVersionRequest {
    pub solution_arn: String,
    pub training_mode: Option<String>,
}

Fields

solution_arn: String

The Amazon Resource Name (ARN) of the solution containing the training configuration information.

training_mode: Option<String>

The scope of training to be performed when creating the solution version. The FULL option trains the solution version based on the entirety of the input solution's training data, while the UPDATE option processes only the data that has changed in comparison to the input solution. Choose UPDATE when you want to incrementally update your solution version instead of creating an entirely new one.

The UPDATE option can only be used when you already have an active solution version created from the input solution using the FULL option and the input solution was trained with the native-recipe-hrnn-coldstart recipe.

Trait Implementations

impl Clone for CreateSolutionVersionRequest[src]

impl Debug for CreateSolutionVersionRequest[src]

impl Default for CreateSolutionVersionRequest[src]

impl PartialEq<CreateSolutionVersionRequest> for CreateSolutionVersionRequest[src]

impl Serialize for CreateSolutionVersionRequest[src]

impl StructuralPartialEq for CreateSolutionVersionRequest[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.