Struct aws_sdk_glue::operation::update_data_quality_ruleset::builders::UpdateDataQualityRulesetOutputBuilder
source · #[non_exhaustive]pub struct UpdateDataQualityRulesetOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateDataQualityRulesetOutput
.
Implementations§
source§impl UpdateDataQualityRulesetOutputBuilder
impl UpdateDataQualityRulesetOutputBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the ruleset.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the ruleset.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the ruleset.
sourcepub fn ruleset(self, input: impl Into<String>) -> Self
pub fn ruleset(self, input: impl Into<String>) -> Self
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
sourcepub fn set_ruleset(self, input: Option<String>) -> Self
pub fn set_ruleset(self, input: Option<String>) -> Self
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
sourcepub fn get_ruleset(&self) -> &Option<String>
pub fn get_ruleset(&self) -> &Option<String>
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
sourcepub fn build(self) -> UpdateDataQualityRulesetOutput
pub fn build(self) -> UpdateDataQualityRulesetOutput
Consumes the builder and constructs a UpdateDataQualityRulesetOutput
.
Trait Implementations§
source§impl Clone for UpdateDataQualityRulesetOutputBuilder
impl Clone for UpdateDataQualityRulesetOutputBuilder
source§fn clone(&self) -> UpdateDataQualityRulesetOutputBuilder
fn clone(&self) -> UpdateDataQualityRulesetOutputBuilder
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 UpdateDataQualityRulesetOutputBuilder
impl Default for UpdateDataQualityRulesetOutputBuilder
source§fn default() -> UpdateDataQualityRulesetOutputBuilder
fn default() -> UpdateDataQualityRulesetOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateDataQualityRulesetOutputBuilder
impl PartialEq for UpdateDataQualityRulesetOutputBuilder
source§fn eq(&self, other: &UpdateDataQualityRulesetOutputBuilder) -> bool
fn eq(&self, other: &UpdateDataQualityRulesetOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateDataQualityRulesetOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateDataQualityRulesetOutputBuilder
impl RefUnwindSafe for UpdateDataQualityRulesetOutputBuilder
impl Send for UpdateDataQualityRulesetOutputBuilder
impl Sync for UpdateDataQualityRulesetOutputBuilder
impl Unpin for UpdateDataQualityRulesetOutputBuilder
impl UnwindSafe for UpdateDataQualityRulesetOutputBuilder
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.