Struct aws_sdk_sagemaker::model::AutoMlCandidate
source · #[non_exhaustive]pub struct AutoMlCandidate { /* private fields */ }
Expand description
Information about a candidate produced by an AutoML training job, including its status, steps, and other properties.
Implementations§
source§impl 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.
source§impl AutoMlCandidate
impl AutoMlCandidate
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoMlCandidate
.
Trait Implementations§
source§impl Clone for AutoMlCandidate
impl Clone for AutoMlCandidate
source§fn clone(&self) -> AutoMlCandidate
fn clone(&self) -> AutoMlCandidate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AutoMlCandidate
impl Debug for AutoMlCandidate
source§impl PartialEq<AutoMlCandidate> for AutoMlCandidate
impl PartialEq<AutoMlCandidate> for AutoMlCandidate
source§fn 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 ==
.