#[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 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 DataQualityRuleRecommendationRunDescriptionBuilder
impl Default for DataQualityRuleRecommendationRunDescriptionBuilder
source§fn default() -> DataQualityRuleRecommendationRunDescriptionBuilder
fn default() -> DataQualityRuleRecommendationRunDescriptionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DataQualityRuleRecommendationRunDescriptionBuilder> for DataQualityRuleRecommendationRunDescriptionBuilder
impl PartialEq<DataQualityRuleRecommendationRunDescriptionBuilder> for DataQualityRuleRecommendationRunDescriptionBuilder
source§fn eq(&self, other: &DataQualityRuleRecommendationRunDescriptionBuilder) -> bool
fn eq(&self, other: &DataQualityRuleRecommendationRunDescriptionBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataQualityRuleRecommendationRunDescriptionBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DataQualityRuleRecommendationRunDescriptionBuilder
impl Send for DataQualityRuleRecommendationRunDescriptionBuilder
impl Sync for DataQualityRuleRecommendationRunDescriptionBuilder
impl Unpin 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