Struct aws_sdk_glue::operation::get_data_quality_model::builders::GetDataQualityModelOutputBuilder
source · #[non_exhaustive]pub struct GetDataQualityModelOutputBuilder { /* private fields */ }Expand description
A builder for GetDataQualityModelOutput.
Implementations§
source§impl GetDataQualityModelOutputBuilder
impl GetDataQualityModelOutputBuilder
sourcepub fn status(self, input: DataQualityModelStatus) -> Self
pub fn status(self, input: DataQualityModelStatus) -> Self
The training status of the data quality model.
sourcepub fn set_status(self, input: Option<DataQualityModelStatus>) -> Self
pub fn set_status(self, input: Option<DataQualityModelStatus>) -> Self
The training status of the data quality model.
sourcepub fn get_status(&self) -> &Option<DataQualityModelStatus>
pub fn get_status(&self) -> &Option<DataQualityModelStatus>
The training status of the data quality model.
sourcepub fn started_on(self, input: DateTime) -> Self
pub fn started_on(self, input: DateTime) -> Self
The timestamp when the data quality model training started.
sourcepub fn set_started_on(self, input: Option<DateTime>) -> Self
pub fn set_started_on(self, input: Option<DateTime>) -> Self
The timestamp when the data quality model training started.
sourcepub fn get_started_on(&self) -> &Option<DateTime>
pub fn get_started_on(&self) -> &Option<DateTime>
The timestamp when the data quality model training started.
sourcepub fn completed_on(self, input: DateTime) -> Self
pub fn completed_on(self, input: DateTime) -> Self
The timestamp when the data quality model training completed.
sourcepub fn set_completed_on(self, input: Option<DateTime>) -> Self
pub fn set_completed_on(self, input: Option<DateTime>) -> Self
The timestamp when the data quality model training completed.
sourcepub fn get_completed_on(&self) -> &Option<DateTime>
pub fn get_completed_on(&self) -> &Option<DateTime>
The timestamp when the data quality model training completed.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
The training failure reason.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
The training failure reason.
sourcepub fn get_failure_reason(&self) -> &Option<String>
pub fn get_failure_reason(&self) -> &Option<String>
The training failure reason.
sourcepub fn build(self) -> GetDataQualityModelOutput
pub fn build(self) -> GetDataQualityModelOutput
Consumes the builder and constructs a GetDataQualityModelOutput.
Trait Implementations§
source§impl Clone for GetDataQualityModelOutputBuilder
impl Clone for GetDataQualityModelOutputBuilder
source§fn clone(&self) -> GetDataQualityModelOutputBuilder
fn clone(&self) -> GetDataQualityModelOutputBuilder
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 GetDataQualityModelOutputBuilder
impl Default for GetDataQualityModelOutputBuilder
source§fn default() -> GetDataQualityModelOutputBuilder
fn default() -> GetDataQualityModelOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetDataQualityModelOutputBuilder
impl PartialEq for GetDataQualityModelOutputBuilder
source§fn eq(&self, other: &GetDataQualityModelOutputBuilder) -> bool
fn eq(&self, other: &GetDataQualityModelOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetDataQualityModelOutputBuilder
Auto Trait Implementations§
impl Freeze for GetDataQualityModelOutputBuilder
impl RefUnwindSafe for GetDataQualityModelOutputBuilder
impl Send for GetDataQualityModelOutputBuilder
impl Sync for GetDataQualityModelOutputBuilder
impl Unpin for GetDataQualityModelOutputBuilder
impl UnwindSafe for GetDataQualityModelOutputBuilder
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.