Struct aws_sdk_glue::types::builders::EvaluationMetricsBuilder
source · #[non_exhaustive]pub struct EvaluationMetricsBuilder { /* private fields */ }Expand description
A builder for EvaluationMetrics.
Implementations§
source§impl EvaluationMetricsBuilder
impl EvaluationMetricsBuilder
sourcepub fn transform_type(self, input: TransformType) -> Self
pub fn transform_type(self, input: TransformType) -> Self
The type of machine learning transform.
This field is required.sourcepub fn set_transform_type(self, input: Option<TransformType>) -> Self
pub fn set_transform_type(self, input: Option<TransformType>) -> Self
The type of machine learning transform.
sourcepub fn get_transform_type(&self) -> &Option<TransformType>
pub fn get_transform_type(&self) -> &Option<TransformType>
The type of machine learning transform.
sourcepub fn find_matches_metrics(self, input: FindMatchesMetrics) -> Self
pub fn find_matches_metrics(self, input: FindMatchesMetrics) -> Self
The evaluation metrics for the find matches algorithm.
sourcepub fn set_find_matches_metrics(self, input: Option<FindMatchesMetrics>) -> Self
pub fn set_find_matches_metrics(self, input: Option<FindMatchesMetrics>) -> Self
The evaluation metrics for the find matches algorithm.
sourcepub fn get_find_matches_metrics(&self) -> &Option<FindMatchesMetrics>
pub fn get_find_matches_metrics(&self) -> &Option<FindMatchesMetrics>
The evaluation metrics for the find matches algorithm.
sourcepub fn build(self) -> Result<EvaluationMetrics, BuildError>
pub fn build(self) -> Result<EvaluationMetrics, BuildError>
Consumes the builder and constructs a EvaluationMetrics.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for EvaluationMetricsBuilder
impl Clone for EvaluationMetricsBuilder
source§fn clone(&self) -> EvaluationMetricsBuilder
fn clone(&self) -> EvaluationMetricsBuilder
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 EvaluationMetricsBuilder
impl Debug for EvaluationMetricsBuilder
source§impl Default for EvaluationMetricsBuilder
impl Default for EvaluationMetricsBuilder
source§fn default() -> EvaluationMetricsBuilder
fn default() -> EvaluationMetricsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for EvaluationMetricsBuilder
impl PartialEq for EvaluationMetricsBuilder
source§fn eq(&self, other: &EvaluationMetricsBuilder) -> bool
fn eq(&self, other: &EvaluationMetricsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EvaluationMetricsBuilder
Auto Trait Implementations§
impl Freeze for EvaluationMetricsBuilder
impl RefUnwindSafe for EvaluationMetricsBuilder
impl Send for EvaluationMetricsBuilder
impl Sync for EvaluationMetricsBuilder
impl Unpin for EvaluationMetricsBuilder
impl UnwindSafe for EvaluationMetricsBuilder
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>
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.