pub struct AutoMLJobConfig {
pub completion_criteria: Option<AutoMLJobCompletionCriteria>,
pub security_config: Option<AutoMLSecurityConfig>,
}
Expand description
A collection of settings used for a job.
Fields§
§completion_criteria: Option<AutoMLJobCompletionCriteria>
How long a job is allowed to run, or how many candidates a job is allowed to generate.
security_config: Option<AutoMLSecurityConfig>
Security configuration for traffic encryption or Amazon VPC settings.
Trait Implementations§
Source§impl Clone for AutoMLJobConfig
impl Clone for AutoMLJobConfig
Source§fn clone(&self) -> AutoMLJobConfig
fn clone(&self) -> AutoMLJobConfig
Returns a copy 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 AutoMLJobConfig
impl Debug for AutoMLJobConfig
Source§impl Default for AutoMLJobConfig
impl Default for AutoMLJobConfig
Source§fn default() -> AutoMLJobConfig
fn default() -> AutoMLJobConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLJobConfig
impl<'de> Deserialize<'de> for AutoMLJobConfig
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
Source§impl PartialEq for AutoMLJobConfig
impl PartialEq for AutoMLJobConfig
Source§impl Serialize for AutoMLJobConfig
impl Serialize for AutoMLJobConfig
impl StructuralPartialEq for AutoMLJobConfig
Auto Trait Implementations§
impl Freeze for AutoMLJobConfig
impl RefUnwindSafe for AutoMLJobConfig
impl Send for AutoMLJobConfig
impl Sync for AutoMLJobConfig
impl Unpin for AutoMLJobConfig
impl UnwindSafe for AutoMLJobConfig
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