#[non_exhaustive]pub struct UpdateDataQualityRulesetInput {
pub name: Option<String>,
pub description: Option<String>,
pub ruleset: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the data quality ruleset.
description: Option<String>A description of the ruleset.
ruleset: Option<String>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
Implementations§
source§impl UpdateDataQualityRulesetInput
impl UpdateDataQualityRulesetInput
sourcepub fn builder() -> UpdateDataQualityRulesetInputBuilder
pub fn builder() -> UpdateDataQualityRulesetInputBuilder
Creates a new builder-style object to manufacture UpdateDataQualityRulesetInput.
Trait Implementations§
source§impl Clone for UpdateDataQualityRulesetInput
impl Clone for UpdateDataQualityRulesetInput
source§fn clone(&self) -> UpdateDataQualityRulesetInput
fn clone(&self) -> UpdateDataQualityRulesetInput
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 PartialEq<UpdateDataQualityRulesetInput> for UpdateDataQualityRulesetInput
impl PartialEq<UpdateDataQualityRulesetInput> for UpdateDataQualityRulesetInput
source§fn eq(&self, other: &UpdateDataQualityRulesetInput) -> bool
fn eq(&self, other: &UpdateDataQualityRulesetInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDataQualityRulesetInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateDataQualityRulesetInput
impl Send for UpdateDataQualityRulesetInput
impl Sync for UpdateDataQualityRulesetInput
impl Unpin for UpdateDataQualityRulesetInput
impl UnwindSafe for UpdateDataQualityRulesetInput
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