pub struct AutoMLContainerDefinition {
pub environment: Option<HashMap<String, String>>,
pub image: String,
pub model_data_url: String,
}
Expand description
A list of container definitions that describe the different containers that make up an AutoML candidate. For more information, see .
Fields§
§environment: Option<HashMap<String, String>>
The environment variables to set in the container. For more information, see .
image: String
The ECR path of the container. For more information, see .
model_data_url: String
The location of the model artifacts. For more information, see .
Trait Implementations§
Source§impl Clone for AutoMLContainerDefinition
impl Clone for AutoMLContainerDefinition
Source§fn clone(&self) -> AutoMLContainerDefinition
fn clone(&self) -> AutoMLContainerDefinition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AutoMLContainerDefinition
impl Debug for AutoMLContainerDefinition
Source§impl Default for AutoMLContainerDefinition
impl Default for AutoMLContainerDefinition
Source§fn default() -> AutoMLContainerDefinition
fn default() -> AutoMLContainerDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLContainerDefinition
impl<'de> Deserialize<'de> for AutoMLContainerDefinition
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>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AutoMLContainerDefinition
Auto Trait Implementations§
impl Freeze for AutoMLContainerDefinition
impl RefUnwindSafe for AutoMLContainerDefinition
impl Send for AutoMLContainerDefinition
impl Sync for AutoMLContainerDefinition
impl Unpin for AutoMLContainerDefinition
impl UnwindSafe for AutoMLContainerDefinition
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more