[][src]Struct rusoto_sagemaker::Experiment

pub struct Experiment {
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub experiment_arn: Option<String>,
    pub experiment_name: Option<String>,
    pub last_modified_by: Option<UserContext>,
    pub last_modified_time: Option<f64>,
    pub source: Option<ExperimentSource>,
    pub tags: Option<Vec<Tag>>,
}

The properties of an experiment as returned by the Search API.

Fields

created_by: Option<UserContext>creation_time: Option<f64>

When the experiment was created.

description: Option<String>

The description of the experiment.

display_name: Option<String>

The name of the experiment as displayed. If DisplayName isn't specified, ExperimentName is displayed.

experiment_arn: Option<String>

The Amazon Resource Name (ARN) of the experiment.

experiment_name: Option<String>

The name of the experiment.

last_modified_by: Option<UserContext>last_modified_time: Option<f64>

When the experiment was last modified.

source: Option<ExperimentSource>tags: Option<Vec<Tag>>

The list of tags that are associated with the experiment. You can use Search API to search on the tags.

Trait Implementations

impl Clone for Experiment[src]

impl Debug for Experiment[src]

impl Default for Experiment[src]

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

impl PartialEq<Experiment> for Experiment[src]

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