#[non_exhaustive]pub struct AutoMlResolvedAttributesBuilder { /* private fields */ }
Expand description
A builder for AutoMlResolvedAttributes
.
Implementations§
source§impl AutoMlResolvedAttributesBuilder
impl AutoMlResolvedAttributesBuilder
sourcepub fn auto_ml_job_objective(self, input: AutoMlJobObjective) -> Self
pub fn auto_ml_job_objective(self, input: AutoMlJobObjective) -> Self
Specifies a metric to minimize or maximize as the objective of a job.
sourcepub fn set_auto_ml_job_objective(
self,
input: Option<AutoMlJobObjective>
) -> Self
pub fn set_auto_ml_job_objective( self, input: Option<AutoMlJobObjective> ) -> Self
Specifies a metric to minimize or maximize as the objective of a job.
sourcepub fn get_auto_ml_job_objective(&self) -> &Option<AutoMlJobObjective>
pub fn get_auto_ml_job_objective(&self) -> &Option<AutoMlJobObjective>
Specifies a metric to minimize or maximize as the objective of a job.
sourcepub fn completion_criteria(self, input: AutoMlJobCompletionCriteria) -> Self
pub fn completion_criteria(self, input: AutoMlJobCompletionCriteria) -> Self
How long a job is allowed to run, or how many candidates a job is allowed to generate.
sourcepub fn set_completion_criteria(
self,
input: Option<AutoMlJobCompletionCriteria>
) -> Self
pub fn set_completion_criteria( self, input: Option<AutoMlJobCompletionCriteria> ) -> Self
How long a job is allowed to run, or how many candidates a job is allowed to generate.
sourcepub fn get_completion_criteria(&self) -> &Option<AutoMlJobCompletionCriteria>
pub fn get_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,
input: AutoMlProblemTypeResolvedAttributes
) -> Self
pub fn auto_ml_problem_type_resolved_attributes( self, input: AutoMlProblemTypeResolvedAttributes ) -> Self
Defines the resolved attributes specific to a problem type.
sourcepub fn set_auto_ml_problem_type_resolved_attributes(
self,
input: Option<AutoMlProblemTypeResolvedAttributes>
) -> Self
pub fn set_auto_ml_problem_type_resolved_attributes( self, input: Option<AutoMlProblemTypeResolvedAttributes> ) -> Self
Defines the resolved attributes specific to a problem type.
sourcepub fn get_auto_ml_problem_type_resolved_attributes(
&self
) -> &Option<AutoMlProblemTypeResolvedAttributes>
pub fn get_auto_ml_problem_type_resolved_attributes( &self ) -> &Option<AutoMlProblemTypeResolvedAttributes>
Defines the resolved attributes specific to a problem type.
sourcepub fn build(self) -> AutoMlResolvedAttributes
pub fn build(self) -> AutoMlResolvedAttributes
Consumes the builder and constructs a AutoMlResolvedAttributes
.
Trait Implementations§
source§impl Clone for AutoMlResolvedAttributesBuilder
impl Clone for AutoMlResolvedAttributesBuilder
source§fn clone(&self) -> AutoMlResolvedAttributesBuilder
fn clone(&self) -> AutoMlResolvedAttributesBuilder
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 Default for AutoMlResolvedAttributesBuilder
impl Default for AutoMlResolvedAttributesBuilder
source§fn default() -> AutoMlResolvedAttributesBuilder
fn default() -> AutoMlResolvedAttributesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<AutoMlResolvedAttributesBuilder> for AutoMlResolvedAttributesBuilder
impl PartialEq<AutoMlResolvedAttributesBuilder> for AutoMlResolvedAttributesBuilder
source§fn eq(&self, other: &AutoMlResolvedAttributesBuilder) -> bool
fn eq(&self, other: &AutoMlResolvedAttributesBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AutoMlResolvedAttributesBuilder
Auto Trait Implementations§
impl RefUnwindSafe for AutoMlResolvedAttributesBuilder
impl Send for AutoMlResolvedAttributesBuilder
impl Sync for AutoMlResolvedAttributesBuilder
impl Unpin for AutoMlResolvedAttributesBuilder
impl UnwindSafe for AutoMlResolvedAttributesBuilder
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