[][src]Struct rusoto_sagemaker::UpdateTrialComponentRequest

pub struct UpdateTrialComponentRequest {
    pub display_name: Option<String>,
    pub end_time: Option<f64>,
    pub input_artifacts: Option<HashMap<String, TrialComponentArtifact>>,
    pub input_artifacts_to_remove: Option<Vec<String>>,
    pub output_artifacts: Option<HashMap<String, TrialComponentArtifact>>,
    pub output_artifacts_to_remove: Option<Vec<String>>,
    pub parameters: Option<HashMap<String, TrialComponentParameterValue>>,
    pub parameters_to_remove: Option<Vec<String>>,
    pub start_time: Option<f64>,
    pub status: Option<TrialComponentStatus>,
    pub trial_component_name: String,
}

Fields

display_name: Option<String>

The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.

end_time: Option<f64>

When the component ended.

input_artifacts: Option<HashMap<String, TrialComponentArtifact>>

Replaces all of the component's input artifacts with the specified artifacts.

input_artifacts_to_remove: Option<Vec<String>>

The input artifacts to remove from the component.

output_artifacts: Option<HashMap<String, TrialComponentArtifact>>

Replaces all of the component's output artifacts with the specified artifacts.

output_artifacts_to_remove: Option<Vec<String>>

The output artifacts to remove from the component.

parameters: Option<HashMap<String, TrialComponentParameterValue>>

Replaces all of the component's hyperparameters with the specified hyperparameters.

parameters_to_remove: Option<Vec<String>>

The hyperparameters to remove from the component.

start_time: Option<f64>

When the component started.

status: Option<TrialComponentStatus>

The new status of the component.

trial_component_name: String

The name of the component to update.

Trait Implementations

impl Clone for UpdateTrialComponentRequest[src]

impl Debug for UpdateTrialComponentRequest[src]

impl Default for UpdateTrialComponentRequest[src]

impl PartialEq<UpdateTrialComponentRequest> for UpdateTrialComponentRequest[src]

impl Serialize for UpdateTrialComponentRequest[src]

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