[][src]Struct rusoto_sagemaker::MonitoringJobDefinition

pub struct MonitoringJobDefinition {
    pub baseline_config: Option<MonitoringBaselineConfig>,
    pub environment: Option<HashMap<String, String>>,
    pub monitoring_app_specification: MonitoringAppSpecification,
    pub monitoring_inputs: Vec<MonitoringInput>,
    pub monitoring_output_config: MonitoringOutputConfig,
    pub monitoring_resources: MonitoringResources,
    pub network_config: Option<NetworkConfig>,
    pub role_arn: String,
    pub stopping_condition: Option<MonitoringStoppingCondition>,
}

Defines the monitoring job.

Fields

baseline_config: Option<MonitoringBaselineConfig>

Baseline configuration used to validate that the data conforms to the specified constraints and statistics

environment: Option<HashMap<String, String>>

Sets the environment variables in the Docker container.

monitoring_app_specification: MonitoringAppSpecification

Configures the monitoring job to run a specified Docker container image.

monitoring_inputs: Vec<MonitoringInput>

The array of inputs for the monitoring job. Currently we support monitoring an Amazon SageMaker Endpoint.

monitoring_output_config: MonitoringOutputConfig

The array of outputs from the monitoring job to be uploaded to Amazon Simple Storage Service (Amazon S3).

monitoring_resources: MonitoringResources

Identifies the resources, ML compute instances, and ML storage volumes to deploy for a monitoring job. In distributed processing, you specify more than one instance.

network_config: Option<NetworkConfig>

Specifies networking options for an monitoring job.

role_arn: String

The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.

stopping_condition: Option<MonitoringStoppingCondition>

Specifies a time limit for how long the monitoring job is allowed to run.

Trait Implementations

impl Clone for MonitoringJobDefinition[src]

impl Debug for MonitoringJobDefinition[src]

impl Default for MonitoringJobDefinition[src]

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

impl PartialEq<MonitoringJobDefinition> for MonitoringJobDefinition[src]

impl Serialize for MonitoringJobDefinition[src]

impl StructuralPartialEq for MonitoringJobDefinition[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> 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.