Struct aws_sdk_sagemaker::model::AutoMlCandidate
source · [−]#[non_exhaustive]pub struct AutoMlCandidate {
pub candidate_name: Option<String>,
pub final_auto_ml_job_objective_metric: Option<FinalAutoMlJobObjectiveMetric>,
pub objective_status: Option<ObjectiveStatus>,
pub candidate_steps: Option<Vec<AutoMlCandidateStep>>,
pub candidate_status: Option<CandidateStatus>,
pub inference_containers: Option<Vec<AutoMlContainerDefinition>>,
pub creation_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub failure_reason: Option<String>,
pub candidate_properties: Option<CandidateProperties>,
}
Expand description
Information about a candidate produced by an AutoML training job, including its status, steps, and other properties.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.candidate_name: Option<String>
The name of the candidate.
final_auto_ml_job_objective_metric: Option<FinalAutoMlJobObjectiveMetric>
The best candidate result from an AutoML training job.
objective_status: Option<ObjectiveStatus>
The objective's status.
candidate_steps: Option<Vec<AutoMlCandidateStep>>
Information about the candidate's steps.
candidate_status: Option<CandidateStatus>
The candidate's status.
inference_containers: Option<Vec<AutoMlContainerDefinition>>
Information about the inference container definitions.
creation_time: Option<DateTime>
The creation time.
end_time: Option<DateTime>
The end time.
last_modified_time: Option<DateTime>
The last modified time.
failure_reason: Option<String>
The failure reason.
candidate_properties: Option<CandidateProperties>
The properties of an AutoML candidate job.
Implementations
sourceimpl AutoMlCandidate
impl AutoMlCandidate
sourcepub fn candidate_name(&self) -> Option<&str>
pub fn candidate_name(&self) -> Option<&str>
The name of the candidate.
sourcepub fn final_auto_ml_job_objective_metric(
&self
) -> Option<&FinalAutoMlJobObjectiveMetric>
pub fn final_auto_ml_job_objective_metric(
&self
) -> Option<&FinalAutoMlJobObjectiveMetric>
The best candidate result from an AutoML training job.
sourcepub fn objective_status(&self) -> Option<&ObjectiveStatus>
pub fn objective_status(&self) -> Option<&ObjectiveStatus>
The objective's status.
sourcepub fn candidate_steps(&self) -> Option<&[AutoMlCandidateStep]>
pub fn candidate_steps(&self) -> Option<&[AutoMlCandidateStep]>
Information about the candidate's steps.
sourcepub fn candidate_status(&self) -> Option<&CandidateStatus>
pub fn candidate_status(&self) -> Option<&CandidateStatus>
The candidate's status.
sourcepub fn inference_containers(&self) -> Option<&[AutoMlContainerDefinition]>
pub fn inference_containers(&self) -> Option<&[AutoMlContainerDefinition]>
Information about the inference container definitions.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last modified time.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The failure reason.
sourcepub fn candidate_properties(&self) -> Option<&CandidateProperties>
pub fn candidate_properties(&self) -> Option<&CandidateProperties>
The properties of an AutoML candidate job.
sourceimpl AutoMlCandidate
impl AutoMlCandidate
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoMlCandidate
Trait Implementations
sourceimpl Clone for AutoMlCandidate
impl Clone for AutoMlCandidate
sourcefn clone(&self) -> AutoMlCandidate
fn clone(&self) -> AutoMlCandidate
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AutoMlCandidate
impl Debug for AutoMlCandidate
sourceimpl PartialEq<AutoMlCandidate> for AutoMlCandidate
impl PartialEq<AutoMlCandidate> for AutoMlCandidate
sourcefn eq(&self, other: &AutoMlCandidate) -> bool
fn eq(&self, other: &AutoMlCandidate) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AutoMlCandidate) -> bool
fn ne(&self, other: &AutoMlCandidate) -> bool
This method tests for !=
.
impl StructuralPartialEq for AutoMlCandidate
Auto Trait Implementations
impl RefUnwindSafe for AutoMlCandidate
impl Send for AutoMlCandidate
impl Sync for AutoMlCandidate
impl Unpin for AutoMlCandidate
impl UnwindSafe for AutoMlCandidate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more