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>,
}
Expand description
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§
Source§impl Clone for ModelQualityAppSpecification
impl Clone for ModelQualityAppSpecification
Source§fn clone(&self) -> ModelQualityAppSpecification
fn clone(&self) -> ModelQualityAppSpecification
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ModelQualityAppSpecification
impl Debug for ModelQualityAppSpecification
Source§impl Default for ModelQualityAppSpecification
impl Default for ModelQualityAppSpecification
Source§fn default() -> ModelQualityAppSpecification
fn default() -> ModelQualityAppSpecification
Source§impl<'de> Deserialize<'de> for ModelQualityAppSpecification
impl<'de> Deserialize<'de> for ModelQualityAppSpecification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for ModelQualityAppSpecification
impl PartialEq for ModelQualityAppSpecification
Source§fn eq(&self, other: &ModelQualityAppSpecification) -> bool
fn eq(&self, other: &ModelQualityAppSpecification) -> bool
self
and other
values to be equal, and is used by ==
.