Struct aws_sdk_personalize::model::HpoResourceConfig
source · [−]#[non_exhaustive]pub struct HpoResourceConfig {
pub max_number_of_training_jobs: Option<String>,
pub max_parallel_training_jobs: Option<String>,
}
Expand description
Describes the resource configuration for hyperparameter optimization (HPO).
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.max_number_of_training_jobs: Option<String>
The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs
is 40
.
max_parallel_training_jobs: Option<String>
The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs
is 10
.
Implementations
sourceimpl HpoResourceConfig
impl HpoResourceConfig
sourcepub fn max_number_of_training_jobs(&self) -> Option<&str>
pub fn max_number_of_training_jobs(&self) -> Option<&str>
The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs
is 40
.
sourcepub fn max_parallel_training_jobs(&self) -> Option<&str>
pub fn max_parallel_training_jobs(&self) -> Option<&str>
The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs
is 10
.
sourceimpl HpoResourceConfig
impl HpoResourceConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HpoResourceConfig
Trait Implementations
sourceimpl Clone for HpoResourceConfig
impl Clone for HpoResourceConfig
sourcefn clone(&self) -> HpoResourceConfig
fn clone(&self) -> HpoResourceConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for HpoResourceConfig
impl Debug for HpoResourceConfig
sourceimpl PartialEq<HpoResourceConfig> for HpoResourceConfig
impl PartialEq<HpoResourceConfig> for HpoResourceConfig
sourcefn eq(&self, other: &HpoResourceConfig) -> bool
fn eq(&self, other: &HpoResourceConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &HpoResourceConfig) -> bool
fn ne(&self, other: &HpoResourceConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for HpoResourceConfig
Auto Trait Implementations
impl RefUnwindSafe for HpoResourceConfig
impl Send for HpoResourceConfig
impl Sync for HpoResourceConfig
impl Unpin for HpoResourceConfig
impl UnwindSafe for HpoResourceConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more