[][src]Struct rusoto_sagemaker::CreateTrialComponentRequest

pub struct CreateTrialComponentRequest {
    pub display_name: Option<String>,
    pub end_time: Option<f64>,
    pub input_artifacts: Option<HashMap<String, TrialComponentArtifact>>,
    pub metadata_properties: Option<MetadataProperties>,
    pub output_artifacts: Option<HashMap<String, TrialComponentArtifact>>,
    pub parameters: Option<HashMap<String, TrialComponentParameterValue>>,
    pub start_time: Option<f64>,
    pub status: Option<TrialComponentStatus>,
    pub tags: Option<Vec<Tag>>,
    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>>

The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.

metadata_properties: Option<MetadataProperties>output_artifacts: Option<HashMap<String, TrialComponentArtifact>>

The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.

parameters: Option<HashMap<String, TrialComponentParameterValue>>

The hyperparameters for the component.

start_time: Option<f64>

When the component started.

status: Option<TrialComponentStatus>

The status of the component. States include:

  • InProgress

  • Completed

  • Failed

tags: Option<Vec<Tag>>

A list of tags to associate with the component. You can use Search API to search on the tags.

trial_component_name: String

The name of the component. The name must be unique in your AWS account and is not case-sensitive.

Trait Implementations

impl Clone for CreateTrialComponentRequest[src]

impl Debug for CreateTrialComponentRequest[src]

impl Default for CreateTrialComponentRequest[src]

impl PartialEq<CreateTrialComponentRequest> for CreateTrialComponentRequest[src]

impl Serialize for CreateTrialComponentRequest[src]

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