Struct aws_sdk_sagemaker::types::ResourceLimits
source · #[non_exhaustive]pub struct ResourceLimits { /* private fields */ }
Expand description
Specifies the maximum number of training jobs and parallel training jobs that a hyperparameter tuning job can launch.
Implementations§
source§impl ResourceLimits
impl ResourceLimits
sourcepub fn max_number_of_training_jobs(&self) -> Option<i32>
pub fn max_number_of_training_jobs(&self) -> Option<i32>
The maximum number of training jobs that a hyperparameter tuning job can launch.
sourcepub fn max_parallel_training_jobs(&self) -> i32
pub fn max_parallel_training_jobs(&self) -> i32
The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.
sourcepub fn max_runtime_in_seconds(&self) -> Option<i32>
pub fn max_runtime_in_seconds(&self) -> Option<i32>
The maximum time in seconds that a hyperparameter tuning job can run.
source§impl ResourceLimits
impl ResourceLimits
sourcepub fn builder() -> ResourceLimitsBuilder
pub fn builder() -> ResourceLimitsBuilder
Creates a new builder-style object to manufacture ResourceLimits
.
Trait Implementations§
source§impl Clone for ResourceLimits
impl Clone for ResourceLimits
source§fn clone(&self) -> ResourceLimits
fn clone(&self) -> ResourceLimits
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 ResourceLimits
impl Debug for ResourceLimits
source§impl PartialEq<ResourceLimits> for ResourceLimits
impl PartialEq<ResourceLimits> for ResourceLimits
source§fn eq(&self, other: &ResourceLimits) -> bool
fn eq(&self, other: &ResourceLimits) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.