[][src]Struct rusoto_sagemaker::CreateAlgorithmInput

pub struct CreateAlgorithmInput {
    pub algorithm_description: Option<String>,
    pub algorithm_name: String,
    pub certify_for_marketplace: Option<bool>,
    pub inference_specification: Option<InferenceSpecification>,
    pub training_specification: TrainingSpecification,
    pub validation_specification: Option<AlgorithmValidationSpecification>,
}

Fields

algorithm_description: Option<String>

A description of the algorithm.

algorithm_name: String

The name of the algorithm.

certify_for_marketplace: Option<bool>

Whether to certify the algorithm so that it can be listed in AWS Marketplace.

inference_specification: Option<InferenceSpecification>

Specifies details about inference jobs that the algorithm runs, including the following:

training_specification: TrainingSpecification

Specifies details about training jobs run by this algorithm, including the following:

validation_specification: Option<AlgorithmValidationSpecification>

Specifies configurations for one or more training jobs and that Amazon SageMaker runs to test the algorithm's training code and, optionally, one or more batch transform jobs that Amazon SageMaker runs to test the algorithm's inference code.

Trait Implementations

impl PartialEq<CreateAlgorithmInput> for CreateAlgorithmInput[src]

impl Default for CreateAlgorithmInput[src]

impl Clone for CreateAlgorithmInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateAlgorithmInput[src]

impl Serialize for CreateAlgorithmInput[src]

Auto Trait Implementations

impl Send for CreateAlgorithmInput

impl Sync for CreateAlgorithmInput

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self