#[non_exhaustive]pub struct TabularResolvedAttributesBuilder { /* private fields */ }
Expand description
A builder for TabularResolvedAttributes
.
Implementations§
source§impl TabularResolvedAttributesBuilder
impl TabularResolvedAttributesBuilder
sourcepub fn problem_type(self, input: ProblemType) -> Self
pub fn problem_type(self, input: ProblemType) -> Self
The type of supervised learning problem available for the model candidates of the AutoML job V2 (Binary Classification, Multiclass Classification, Regression). For more information, see SageMaker Autopilot problem types.
sourcepub fn set_problem_type(self, input: Option<ProblemType>) -> Self
pub fn set_problem_type(self, input: Option<ProblemType>) -> Self
The type of supervised learning problem available for the model candidates of the AutoML job V2 (Binary Classification, Multiclass Classification, Regression). For more information, see SageMaker Autopilot problem types.
sourcepub fn get_problem_type(&self) -> &Option<ProblemType>
pub fn get_problem_type(&self) -> &Option<ProblemType>
The type of supervised learning problem available for the model candidates of the AutoML job V2 (Binary Classification, Multiclass Classification, Regression). For more information, see SageMaker Autopilot problem types.
sourcepub fn build(self) -> TabularResolvedAttributes
pub fn build(self) -> TabularResolvedAttributes
Consumes the builder and constructs a TabularResolvedAttributes
.
Trait Implementations§
source§impl Clone for TabularResolvedAttributesBuilder
impl Clone for TabularResolvedAttributesBuilder
source§fn clone(&self) -> TabularResolvedAttributesBuilder
fn clone(&self) -> TabularResolvedAttributesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TabularResolvedAttributesBuilder
impl Default for TabularResolvedAttributesBuilder
source§fn default() -> TabularResolvedAttributesBuilder
fn default() -> TabularResolvedAttributesBuilder
source§impl PartialEq for TabularResolvedAttributesBuilder
impl PartialEq for TabularResolvedAttributesBuilder
source§fn eq(&self, other: &TabularResolvedAttributesBuilder) -> bool
fn eq(&self, other: &TabularResolvedAttributesBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TabularResolvedAttributesBuilder
Auto Trait Implementations§
impl Freeze for TabularResolvedAttributesBuilder
impl RefUnwindSafe for TabularResolvedAttributesBuilder
impl Send for TabularResolvedAttributesBuilder
impl Sync for TabularResolvedAttributesBuilder
impl Unpin for TabularResolvedAttributesBuilder
impl UnwindSafe for TabularResolvedAttributesBuilder
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