Struct aws_sdk_glue::types::DataQualityRuleResult
source · #[non_exhaustive]pub struct DataQualityRuleResult {
pub name: Option<String>,
pub description: Option<String>,
pub evaluation_message: Option<String>,
pub result: Option<DataQualityRuleResultStatus>,
pub evaluated_metrics: Option<HashMap<String, f64>>,
}Expand description
Describes the result of the evaluation of a data quality rule.
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 rule.
description: Option<String>A description of the data quality rule.
evaluation_message: Option<String>An evaluation message.
result: Option<DataQualityRuleResultStatus>A pass or fail status for the rule.
evaluated_metrics: Option<HashMap<String, f64>>A map of metrics associated with the evaluation of the rule.
Implementations§
source§impl DataQualityRuleResult
impl DataQualityRuleResult
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the data quality rule.
sourcepub fn evaluation_message(&self) -> Option<&str>
pub fn evaluation_message(&self) -> Option<&str>
An evaluation message.
sourcepub fn result(&self) -> Option<&DataQualityRuleResultStatus>
pub fn result(&self) -> Option<&DataQualityRuleResultStatus>
A pass or fail status for the rule.
source§impl DataQualityRuleResult
impl DataQualityRuleResult
sourcepub fn builder() -> DataQualityRuleResultBuilder
pub fn builder() -> DataQualityRuleResultBuilder
Creates a new builder-style object to manufacture DataQualityRuleResult.
Trait Implementations§
source§impl Clone for DataQualityRuleResult
impl Clone for DataQualityRuleResult
source§fn clone(&self) -> DataQualityRuleResult
fn clone(&self) -> DataQualityRuleResult
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 Debug for DataQualityRuleResult
impl Debug for DataQualityRuleResult
source§impl PartialEq for DataQualityRuleResult
impl PartialEq for DataQualityRuleResult
source§fn eq(&self, other: &DataQualityRuleResult) -> bool
fn eq(&self, other: &DataQualityRuleResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataQualityRuleResult
Auto Trait Implementations§
impl RefUnwindSafe for DataQualityRuleResult
impl Send for DataQualityRuleResult
impl Sync for DataQualityRuleResult
impl Unpin for DataQualityRuleResult
impl UnwindSafe for DataQualityRuleResult
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>
Creates a shared type from an unshared type.