Struct aws_sdk_sagemaker::types::builders::ModelDataQualityBuilder
source · #[non_exhaustive]pub struct ModelDataQualityBuilder { /* private fields */ }
Expand description
A builder for ModelDataQuality
.
Implementations§
source§impl ModelDataQualityBuilder
impl ModelDataQualityBuilder
sourcepub fn statistics(self, input: MetricsSource) -> Self
pub fn statistics(self, input: MetricsSource) -> Self
Data quality statistics for a model.
sourcepub fn set_statistics(self, input: Option<MetricsSource>) -> Self
pub fn set_statistics(self, input: Option<MetricsSource>) -> Self
Data quality statistics for a model.
sourcepub fn get_statistics(&self) -> &Option<MetricsSource>
pub fn get_statistics(&self) -> &Option<MetricsSource>
Data quality statistics for a model.
sourcepub fn constraints(self, input: MetricsSource) -> Self
pub fn constraints(self, input: MetricsSource) -> Self
Data quality constraints for a model.
sourcepub fn set_constraints(self, input: Option<MetricsSource>) -> Self
pub fn set_constraints(self, input: Option<MetricsSource>) -> Self
Data quality constraints for a model.
sourcepub fn get_constraints(&self) -> &Option<MetricsSource>
pub fn get_constraints(&self) -> &Option<MetricsSource>
Data quality constraints for a model.
sourcepub fn build(self) -> ModelDataQuality
pub fn build(self) -> ModelDataQuality
Consumes the builder and constructs a ModelDataQuality
.
Trait Implementations§
source§impl Clone for ModelDataQualityBuilder
impl Clone for ModelDataQualityBuilder
source§fn clone(&self) -> ModelDataQualityBuilder
fn clone(&self) -> ModelDataQualityBuilder
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 ModelDataQualityBuilder
impl Debug for ModelDataQualityBuilder
source§impl Default for ModelDataQualityBuilder
impl Default for ModelDataQualityBuilder
source§fn default() -> ModelDataQualityBuilder
fn default() -> ModelDataQualityBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ModelDataQualityBuilder
impl PartialEq for ModelDataQualityBuilder
source§fn eq(&self, other: &ModelDataQualityBuilder) -> bool
fn eq(&self, other: &ModelDataQualityBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModelDataQualityBuilder
Auto Trait Implementations§
impl Freeze for ModelDataQualityBuilder
impl RefUnwindSafe for ModelDataQualityBuilder
impl Send for ModelDataQualityBuilder
impl Sync for ModelDataQualityBuilder
impl Unpin for ModelDataQualityBuilder
impl UnwindSafe for ModelDataQualityBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.