[][src]Struct rusoto_sagemaker::ExperimentConfig

pub struct ExperimentConfig {
    pub experiment_name: Option<String>,
    pub trial_component_display_name: Option<String>,
    pub trial_name: Option<String>,
}

Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:

Fields

experiment_name: Option<String>

The name of an existing experiment to associate the trial component with.

trial_component_display_name: Option<String>

The display name for the trial component. If this key isn't specified, the display name is the trial component name.

trial_name: Option<String>

The name of an existing trial to associate the trial component with. If not specified, a new trial is created.

Trait Implementations

impl Clone for ExperimentConfig[src]

impl Debug for ExperimentConfig[src]

impl Default for ExperimentConfig[src]

impl<'de> Deserialize<'de> for ExperimentConfig[src]

impl PartialEq<ExperimentConfig> for ExperimentConfig[src]

impl Serialize for ExperimentConfig[src]

impl StructuralPartialEq for ExperimentConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.