Struct aws_sdk_sagemaker::types::AutoMlResolvedAttributes
source · #[non_exhaustive]pub struct AutoMlResolvedAttributes {
pub auto_ml_job_objective: Option<AutoMlJobObjective>,
pub completion_criteria: Option<AutoMlJobCompletionCriteria>,
pub auto_ml_problem_type_resolved_attributes: Option<AutoMlProblemTypeResolvedAttributes>,
}
Expand description
The resolved attributes used to configure an AutoML job V2.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.auto_ml_job_objective: Option<AutoMlJobObjective>
Specifies a metric to minimize or maximize as the objective of an AutoML job.
completion_criteria: Option<AutoMlJobCompletionCriteria>
How long a job is allowed to run, or how many candidates a job is allowed to generate.
auto_ml_problem_type_resolved_attributes: Option<AutoMlProblemTypeResolvedAttributes>
Defines the resolved attributes specific to a problem type.
Implementations§
source§impl AutoMlResolvedAttributes
impl AutoMlResolvedAttributes
sourcepub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
pub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
Specifies a metric to minimize or maximize as the objective of an AutoML job.
sourcepub fn completion_criteria(&self) -> Option<&AutoMlJobCompletionCriteria>
pub fn completion_criteria(&self) -> Option<&AutoMlJobCompletionCriteria>
How long a job is allowed to run, or how many candidates a job is allowed to generate.
sourcepub fn auto_ml_problem_type_resolved_attributes(
&self
) -> Option<&AutoMlProblemTypeResolvedAttributes>
pub fn auto_ml_problem_type_resolved_attributes( &self ) -> Option<&AutoMlProblemTypeResolvedAttributes>
Defines the resolved attributes specific to a problem type.
source§impl AutoMlResolvedAttributes
impl AutoMlResolvedAttributes
sourcepub fn builder() -> AutoMlResolvedAttributesBuilder
pub fn builder() -> AutoMlResolvedAttributesBuilder
Creates a new builder-style object to manufacture AutoMlResolvedAttributes
.
Trait Implementations§
source§impl Clone for AutoMlResolvedAttributes
impl Clone for AutoMlResolvedAttributes
source§fn clone(&self) -> AutoMlResolvedAttributes
fn clone(&self) -> AutoMlResolvedAttributes
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 AutoMlResolvedAttributes
impl Debug for AutoMlResolvedAttributes
source§impl PartialEq for AutoMlResolvedAttributes
impl PartialEq for AutoMlResolvedAttributes
source§fn eq(&self, other: &AutoMlResolvedAttributes) -> bool
fn eq(&self, other: &AutoMlResolvedAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AutoMlResolvedAttributes
Auto Trait Implementations§
impl RefUnwindSafe for AutoMlResolvedAttributes
impl Send for AutoMlResolvedAttributes
impl Sync for AutoMlResolvedAttributes
impl Unpin for AutoMlResolvedAttributes
impl UnwindSafe for AutoMlResolvedAttributes
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.