#[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 an AutoML 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 an AutoML 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 an AutoML 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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AutoMlResolvedAttributesBuilder
impl Default for AutoMlResolvedAttributesBuilder
source§fn default() -> AutoMlResolvedAttributesBuilder
fn default() -> AutoMlResolvedAttributesBuilder
source§impl PartialEq for AutoMlResolvedAttributesBuilder
impl PartialEq for AutoMlResolvedAttributesBuilder
source§fn eq(&self, other: &AutoMlResolvedAttributesBuilder) -> bool
fn eq(&self, other: &AutoMlResolvedAttributesBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AutoMlResolvedAttributesBuilder
Auto Trait Implementations§
impl Freeze for AutoMlResolvedAttributesBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more