Struct aws_sdk_glue::types::DataQualityResultDescription
source · #[non_exhaustive]pub struct DataQualityResultDescription {
pub result_id: Option<String>,
pub data_source: Option<DataSource>,
pub job_name: Option<String>,
pub job_run_id: Option<String>,
pub started_on: Option<DateTime>,
}Expand description
Describes a data quality result.
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.result_id: Option<String>The unique result ID for this data quality result.
data_source: Option<DataSource>The table name associated with the data quality result.
job_name: Option<String>The job name associated with the data quality result.
job_run_id: Option<String>The job run ID associated with the data quality result.
started_on: Option<DateTime>The time that the run started for this data quality result.
Implementations§
source§impl DataQualityResultDescription
impl DataQualityResultDescription
sourcepub fn data_source(&self) -> Option<&DataSource>
pub fn data_source(&self) -> Option<&DataSource>
The table name associated with the data quality result.
sourcepub fn job_run_id(&self) -> Option<&str>
pub fn job_run_id(&self) -> Option<&str>
The job run ID associated with the data quality result.
sourcepub fn started_on(&self) -> Option<&DateTime>
pub fn started_on(&self) -> Option<&DateTime>
The time that the run started for this data quality result.
source§impl DataQualityResultDescription
impl DataQualityResultDescription
sourcepub fn builder() -> DataQualityResultDescriptionBuilder
pub fn builder() -> DataQualityResultDescriptionBuilder
Creates a new builder-style object to manufacture DataQualityResultDescription.
Trait Implementations§
source§impl Clone for DataQualityResultDescription
impl Clone for DataQualityResultDescription
source§fn clone(&self) -> DataQualityResultDescription
fn clone(&self) -> DataQualityResultDescription
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 DataQualityResultDescription
impl Debug for DataQualityResultDescription
source§impl PartialEq<DataQualityResultDescription> for DataQualityResultDescription
impl PartialEq<DataQualityResultDescription> for DataQualityResultDescription
source§fn eq(&self, other: &DataQualityResultDescription) -> bool
fn eq(&self, other: &DataQualityResultDescription) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataQualityResultDescription
Auto Trait Implementations§
impl RefUnwindSafe for DataQualityResultDescription
impl Send for DataQualityResultDescription
impl Sync for DataQualityResultDescription
impl Unpin for DataQualityResultDescription
impl UnwindSafe for DataQualityResultDescription
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