#[non_exhaustive]pub struct AutoDataQuality {
pub is_enabled: bool,
pub evaluation_context: Option<String>,
}Expand description
Specifies configuration options for automatic data quality evaluation in Glue jobs. This structure enables automated data quality checks and monitoring during ETL operations, helping to ensure data integrity and reliability without manual intervention.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.is_enabled: boolSpecifies whether automatic data quality evaluation is enabled. When set to true, data quality checks are performed automatically.
evaluation_context: Option<String>The evaluation context for the automatic data quality checks. This defines the scope and parameters for the data quality evaluation.
Implementations§
Source§impl AutoDataQuality
impl AutoDataQuality
Sourcepub fn is_enabled(&self) -> bool
pub fn is_enabled(&self) -> bool
Specifies whether automatic data quality evaluation is enabled. When set to true, data quality checks are performed automatically.
Sourcepub fn evaluation_context(&self) -> Option<&str>
pub fn evaluation_context(&self) -> Option<&str>
The evaluation context for the automatic data quality checks. This defines the scope and parameters for the data quality evaluation.
Source§impl AutoDataQuality
impl AutoDataQuality
Sourcepub fn builder() -> AutoDataQualityBuilder
pub fn builder() -> AutoDataQualityBuilder
Creates a new builder-style object to manufacture AutoDataQuality.
Trait Implementations§
Source§impl Clone for AutoDataQuality
impl Clone for AutoDataQuality
Source§fn clone(&self) -> AutoDataQuality
fn clone(&self) -> AutoDataQuality
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AutoDataQuality
impl Debug for AutoDataQuality
Source§impl PartialEq for AutoDataQuality
impl PartialEq for AutoDataQuality
Source§fn eq(&self, other: &AutoDataQuality) -> bool
fn eq(&self, other: &AutoDataQuality) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutoDataQuality
Auto Trait Implementations§
impl Freeze for AutoDataQuality
impl RefUnwindSafe for AutoDataQuality
impl Send for AutoDataQuality
impl Sync for AutoDataQuality
impl Unpin for AutoDataQuality
impl UnsafeUnpin for AutoDataQuality
impl UnwindSafe for AutoDataQuality
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
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>
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>
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 more