[][src]Struct rusoto_sagemaker::AutoMLCandidate

pub struct AutoMLCandidate {
    pub candidate_name: String,
    pub candidate_status: String,
    pub candidate_steps: Vec<AutoMLCandidateStep>,
    pub creation_time: f64,
    pub end_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub final_auto_ml_job_objective_metric: Option<FinalAutoMLJobObjectiveMetric>,
    pub inference_containers: Option<Vec<AutoMLContainerDefinition>>,
    pub last_modified_time: f64,
    pub objective_status: String,
}

An AutoPilot job will return recommendations, or candidates. Each candidate has futher details about the steps involed, and the status.

Fields

candidate_name: String

The candidate name.

candidate_status: String

The candidate's status.

candidate_steps: Vec<AutoMLCandidateStep>

The candidate's steps.

creation_time: f64

The creation time.

end_time: Option<f64>

The end time.

failure_reason: Option<String>

The failure reason.

final_auto_ml_job_objective_metric: Option<FinalAutoMLJobObjectiveMetric>inference_containers: Option<Vec<AutoMLContainerDefinition>>

The inference containers.

last_modified_time: f64

The last modified time.

objective_status: String

The objective status.

Trait Implementations

impl Clone for AutoMLCandidate[src]

impl Debug for AutoMLCandidate[src]

impl Default for AutoMLCandidate[src]

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

impl PartialEq<AutoMLCandidate> for AutoMLCandidate[src]

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