[][src]Struct rusoto_sagemaker::MonitoringAppSpecification

pub struct MonitoringAppSpecification {
    pub container_arguments: Option<Vec<String>>,
    pub container_entrypoint: Option<Vec<String>>,
    pub image_uri: String,
    pub post_analytics_processor_source_uri: Option<String>,
    pub record_preprocessor_source_uri: Option<String>,
}

Container image configuration object for the monitoring job.

Fields

container_arguments: Option<Vec<String>>

An array of arguments for the container used to run the monitoring job.

container_entrypoint: Option<Vec<String>>

Specifies the entrypoint for a container used to run the monitoring job.

image_uri: String

The container image to be run by the monitoring job.

post_analytics_processor_source_uri: Option<String>

An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.

record_preprocessor_source_uri: Option<String>

An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

Trait Implementations

impl Clone for MonitoringAppSpecification[src]

impl Debug for MonitoringAppSpecification[src]

impl Default for MonitoringAppSpecification[src]

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

impl PartialEq<MonitoringAppSpecification> for MonitoringAppSpecification[src]

impl Serialize for MonitoringAppSpecification[src]

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