[][src]Struct rusoto_sagemaker::TrialComponentSummary

pub struct TrialComponentSummary {
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub display_name: Option<String>,
    pub end_time: Option<f64>,
    pub last_modified_by: Option<UserContext>,
    pub last_modified_time: Option<f64>,
    pub start_time: Option<f64>,
    pub status: Option<TrialComponentStatus>,
    pub trial_component_arn: Option<String>,
    pub trial_component_name: Option<String>,
    pub trial_component_source: Option<TrialComponentSource>,
}

A summary of the properties of a trial component. To get all the properties, call the DescribeTrialComponent API and provide the TrialComponentName.

Fields

created_by: Option<UserContext>

Who created the component.

creation_time: Option<f64>

When the component was created.

display_name: Option<String>

The name of the component as displayed. If DisplayName isn't specified, TrialComponentName is displayed.

end_time: Option<f64>

When the component ended.

last_modified_by: Option<UserContext>

Who last modified the component.

last_modified_time: Option<f64>

When the component was last modified.

start_time: Option<f64>

When the component started.

status: Option<TrialComponentStatus>

The status of the component. States include:

  • InProgress

  • Completed

  • Failed

trial_component_arn: Option<String>

The ARN of the trial component.

trial_component_name: Option<String>

The name of the trial component.

trial_component_source: Option<TrialComponentSource>

Trait Implementations

impl Clone for TrialComponentSummary[src]

impl Debug for TrialComponentSummary[src]

impl Default for TrialComponentSummary[src]

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

impl PartialEq<TrialComponentSummary> for TrialComponentSummary[src]

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