#[non_exhaustive]pub struct AutoMlContainerDefinition {
pub image: Option<String>,
pub model_data_url: Option<String>,
pub environment: Option<HashMap<String, String>>,
}
Expand description
A list of container definitions that describe the different containers that make up an AutoML candidate. For more information, see ContainerDefinition.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.image: Option<String>
The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see ContainerDefinition.
model_data_url: Option<String>
The location of the model artifacts. For more information, see ContainerDefinition.
environment: Option<HashMap<String, String>>
The environment variables to set in the container. For more information, see ContainerDefinition.
Implementations§
source§impl AutoMlContainerDefinition
impl AutoMlContainerDefinition
sourcepub fn image(&self) -> Option<&str>
pub fn image(&self) -> Option<&str>
The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see ContainerDefinition.
sourcepub fn model_data_url(&self) -> Option<&str>
pub fn model_data_url(&self) -> Option<&str>
The location of the model artifacts. For more information, see ContainerDefinition.
sourcepub fn environment(&self) -> Option<&HashMap<String, String>>
pub fn environment(&self) -> Option<&HashMap<String, String>>
The environment variables to set in the container. For more information, see ContainerDefinition.
source§impl AutoMlContainerDefinition
impl AutoMlContainerDefinition
sourcepub fn builder() -> AutoMlContainerDefinitionBuilder
pub fn builder() -> AutoMlContainerDefinitionBuilder
Creates a new builder-style object to manufacture AutoMlContainerDefinition
.
Trait Implementations§
source§impl Clone for AutoMlContainerDefinition
impl Clone for AutoMlContainerDefinition
source§fn clone(&self) -> AutoMlContainerDefinition
fn clone(&self) -> AutoMlContainerDefinition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutoMlContainerDefinition
impl Debug for AutoMlContainerDefinition
source§impl PartialEq for AutoMlContainerDefinition
impl PartialEq for AutoMlContainerDefinition
source§fn eq(&self, other: &AutoMlContainerDefinition) -> bool
fn eq(&self, other: &AutoMlContainerDefinition) -> bool
self
and other
values to be equal, and is used
by ==
.