[][src]Struct rusoto_sagemaker::ModelQualityAppSpecification

pub struct ModelQualityAppSpecification {
    pub container_arguments: Option<Vec<String>>,
    pub container_entrypoint: Option<Vec<String>>,
    pub environment: Option<HashMap<String, String>>,
    pub image_uri: String,
    pub post_analytics_processor_source_uri: Option<String>,
    pub problem_type: 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 that the monitoring job runs.

environment: Option<HashMap<String, String>>

Sets the environment variables in the container that the monitoring job runs.

image_uri: String

The address of the container image that the monitoring job runs.

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.

problem_type: Option<String>

The machine learning problem type of the model that the monitoring job monitors.

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 ModelQualityAppSpecification[src]

impl Debug for ModelQualityAppSpecification[src]

impl Default for ModelQualityAppSpecification[src]

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

impl PartialEq<ModelQualityAppSpecification> for ModelQualityAppSpecification[src]

impl Serialize for ModelQualityAppSpecification[src]

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