Struct aws_sdk_sagemaker::model::AutoMlCandidate [−][src]
#[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
The name of the candidate.
The best candidate result from an AutoML training job.
The objective's status.
Information about the candidate's steps.
The candidate's status.
Information about the inference container definitions.
The creation time.
The last modified time.
The failure reason.
The properties of an AutoML candidate job.
Creates a new builder-style object to manufacture AutoMlCandidate
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more