#[non_exhaustive]pub struct DataQualityBaselineConfig {
pub baselining_job_name: Option<String>,
pub constraints_resource: Option<MonitoringConstraintsResource>,
pub statistics_resource: Option<MonitoringStatisticsResource>,
}
Expand description
Configuration for monitoring constraints and monitoring statistics. These baseline resources are compared against the results of the current job from the series of jobs scheduled to collect data periodically.
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.baselining_job_name: Option<String>
The name of the job that performs baselining for the data quality monitoring job.
constraints_resource: Option<MonitoringConstraintsResource>
The constraints resource for a monitoring job.
statistics_resource: Option<MonitoringStatisticsResource>
The statistics resource for a monitoring job.
Implementations§
source§impl DataQualityBaselineConfig
impl DataQualityBaselineConfig
sourcepub fn baselining_job_name(&self) -> Option<&str>
pub fn baselining_job_name(&self) -> Option<&str>
The name of the job that performs baselining for the data quality monitoring job.
sourcepub fn constraints_resource(&self) -> Option<&MonitoringConstraintsResource>
pub fn constraints_resource(&self) -> Option<&MonitoringConstraintsResource>
The constraints resource for a monitoring job.
sourcepub fn statistics_resource(&self) -> Option<&MonitoringStatisticsResource>
pub fn statistics_resource(&self) -> Option<&MonitoringStatisticsResource>
The statistics resource for a monitoring job.
source§impl DataQualityBaselineConfig
impl DataQualityBaselineConfig
sourcepub fn builder() -> DataQualityBaselineConfigBuilder
pub fn builder() -> DataQualityBaselineConfigBuilder
Creates a new builder-style object to manufacture DataQualityBaselineConfig
.
Trait Implementations§
source§impl Clone for DataQualityBaselineConfig
impl Clone for DataQualityBaselineConfig
source§fn clone(&self) -> DataQualityBaselineConfig
fn clone(&self) -> DataQualityBaselineConfig
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 DataQualityBaselineConfig
impl Debug for DataQualityBaselineConfig
source§impl PartialEq<DataQualityBaselineConfig> for DataQualityBaselineConfig
impl PartialEq<DataQualityBaselineConfig> for DataQualityBaselineConfig
source§fn eq(&self, other: &DataQualityBaselineConfig) -> bool
fn eq(&self, other: &DataQualityBaselineConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DataQualityBaselineConfig
Auto Trait Implementations§
impl RefUnwindSafe for DataQualityBaselineConfig
impl Send for DataQualityBaselineConfig
impl Sync for DataQualityBaselineConfig
impl Unpin for DataQualityBaselineConfig
impl UnwindSafe for DataQualityBaselineConfig
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