[][src]Struct rusoto_sagemaker::MonitoringBaselineConfig

pub struct MonitoringBaselineConfig {
    pub baselining_job_name: Option<String>,
    pub constraints_resource: Option<MonitoringConstraintsResource>,
    pub statistics_resource: Option<MonitoringStatisticsResource>,
}

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

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.

Trait Implementations

impl Clone for MonitoringBaselineConfig[src]

impl Debug for MonitoringBaselineConfig[src]

impl Default for MonitoringBaselineConfig[src]

impl<'de> Deserialize<'de> for MonitoringBaselineConfig[src]

impl PartialEq<MonitoringBaselineConfig> for MonitoringBaselineConfig[src]

impl Serialize for MonitoringBaselineConfig[src]

impl StructuralPartialEq for MonitoringBaselineConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.