[][src]Struct rusoto_sagemaker::DataQualityAppSpecification

pub struct DataQualityAppSpecification {
    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 record_preprocessor_source_uri: Option<String>,
}

Information about the container that a data quality monitoring job runs.

Fields

container_arguments: Option<Vec<String>>

The arguments to send to the container that the monitoring job runs.

container_entrypoint: Option<Vec<String>>

The entrypoint for a container used to run a monitoring job.

environment: Option<HashMap<String, String>>

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

image_uri: String

The container image that the data quality 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.

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

impl Debug for DataQualityAppSpecification[src]

impl Default for DataQualityAppSpecification[src]

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

impl PartialEq<DataQualityAppSpecification> for DataQualityAppSpecification[src]

impl Serialize for DataQualityAppSpecification[src]

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