#[non_exhaustive]pub struct DataQualityRuleRecommendationRunDescriptionBuilder { /* private fields */ }Expand description
A builder for DataQualityRuleRecommendationRunDescription.
Implementations§
Source§impl DataQualityRuleRecommendationRunDescriptionBuilder
impl DataQualityRuleRecommendationRunDescriptionBuilder
Sourcepub fn run_id(self, input: impl Into<String>) -> Self
pub fn run_id(self, input: impl Into<String>) -> Self
The unique run identifier associated with this run.
Sourcepub fn set_run_id(self, input: Option<String>) -> Self
pub fn set_run_id(self, input: Option<String>) -> Self
The unique run identifier associated with this run.
Sourcepub fn get_run_id(&self) -> &Option<String>
pub fn get_run_id(&self) -> &Option<String>
The unique run identifier associated with this run.
Sourcepub fn status(self, input: TaskStatusType) -> Self
pub fn status(self, input: TaskStatusType) -> Self
The status for this run.
Sourcepub fn set_status(self, input: Option<TaskStatusType>) -> Self
pub fn set_status(self, input: Option<TaskStatusType>) -> Self
The status for this run.
Sourcepub fn get_status(&self) -> &Option<TaskStatusType>
pub fn get_status(&self) -> &Option<TaskStatusType>
The status for this run.
Sourcepub fn started_on(self, input: DateTime) -> Self
pub fn started_on(self, input: DateTime) -> Self
The date and time when this run started.
Sourcepub fn set_started_on(self, input: Option<DateTime>) -> Self
pub fn set_started_on(self, input: Option<DateTime>) -> Self
The date and time when this run started.
Sourcepub fn get_started_on(&self) -> &Option<DateTime>
pub fn get_started_on(&self) -> &Option<DateTime>
The date and time when this run started.
Sourcepub fn data_source(self, input: DataSource) -> Self
pub fn data_source(self, input: DataSource) -> Self
The data source (Glue table) associated with the recommendation run.
Sourcepub fn set_data_source(self, input: Option<DataSource>) -> Self
pub fn set_data_source(self, input: Option<DataSource>) -> Self
The data source (Glue table) associated with the recommendation run.
Sourcepub fn get_data_source(&self) -> &Option<DataSource>
pub fn get_data_source(&self) -> &Option<DataSource>
The data source (Glue table) associated with the recommendation run.
Sourcepub fn build(self) -> DataQualityRuleRecommendationRunDescription
pub fn build(self) -> DataQualityRuleRecommendationRunDescription
Consumes the builder and constructs a DataQualityRuleRecommendationRunDescription.
Trait Implementations§
Source§impl Clone for DataQualityRuleRecommendationRunDescriptionBuilder
impl Clone for DataQualityRuleRecommendationRunDescriptionBuilder
Source§fn clone(&self) -> DataQualityRuleRecommendationRunDescriptionBuilder
fn clone(&self) -> DataQualityRuleRecommendationRunDescriptionBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataQualityRuleRecommendationRunDescriptionBuilder
impl Default for DataQualityRuleRecommendationRunDescriptionBuilder
Source§fn default() -> DataQualityRuleRecommendationRunDescriptionBuilder
fn default() -> DataQualityRuleRecommendationRunDescriptionBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for DataQualityRuleRecommendationRunDescriptionBuilder
impl PartialEq for DataQualityRuleRecommendationRunDescriptionBuilder
Source§fn eq(&self, other: &DataQualityRuleRecommendationRunDescriptionBuilder) -> bool
fn eq(&self, other: &DataQualityRuleRecommendationRunDescriptionBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataQualityRuleRecommendationRunDescriptionBuilder
Auto Trait Implementations§
impl Freeze for DataQualityRuleRecommendationRunDescriptionBuilder
impl RefUnwindSafe for DataQualityRuleRecommendationRunDescriptionBuilder
impl Send for DataQualityRuleRecommendationRunDescriptionBuilder
impl Sync for DataQualityRuleRecommendationRunDescriptionBuilder
impl Unpin for DataQualityRuleRecommendationRunDescriptionBuilder
impl UnsafeUnpin for DataQualityRuleRecommendationRunDescriptionBuilder
impl UnwindSafe for DataQualityRuleRecommendationRunDescriptionBuilder
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§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.