Struct aws_sdk_sagemaker::types::MonitoringBaselineConfig
source · #[non_exhaustive]pub struct MonitoringBaselineConfig {
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
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 monitoring job.
constraints_resource: Option<MonitoringConstraintsResource>
The baseline constraint file in Amazon S3 that the current monitoring job should validated against.
statistics_resource: Option<MonitoringStatisticsResource>
The baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
Implementations§
source§impl MonitoringBaselineConfig
impl MonitoringBaselineConfig
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 monitoring job.
sourcepub fn constraints_resource(&self) -> Option<&MonitoringConstraintsResource>
pub fn constraints_resource(&self) -> Option<&MonitoringConstraintsResource>
The baseline constraint file in Amazon S3 that the current monitoring job should validated against.
sourcepub fn statistics_resource(&self) -> Option<&MonitoringStatisticsResource>
pub fn statistics_resource(&self) -> Option<&MonitoringStatisticsResource>
The baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
source§impl MonitoringBaselineConfig
impl MonitoringBaselineConfig
sourcepub fn builder() -> MonitoringBaselineConfigBuilder
pub fn builder() -> MonitoringBaselineConfigBuilder
Creates a new builder-style object to manufacture MonitoringBaselineConfig
.
Trait Implementations§
source§impl Clone for MonitoringBaselineConfig
impl Clone for MonitoringBaselineConfig
source§fn clone(&self) -> MonitoringBaselineConfig
fn clone(&self) -> MonitoringBaselineConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MonitoringBaselineConfig
impl Debug for MonitoringBaselineConfig
source§impl PartialEq for MonitoringBaselineConfig
impl PartialEq for MonitoringBaselineConfig
impl StructuralPartialEq for MonitoringBaselineConfig
Auto Trait Implementations§
impl Freeze for MonitoringBaselineConfig
impl RefUnwindSafe for MonitoringBaselineConfig
impl Send for MonitoringBaselineConfig
impl Sync for MonitoringBaselineConfig
impl Unpin for MonitoringBaselineConfig
impl UnwindSafe for MonitoringBaselineConfig
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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