Struct aws_sdk_sagemaker::model::ParameterRange
source · #[non_exhaustive]pub struct ParameterRange { /* private fields */ }
Expand description
Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.
Implementations§
source§impl ParameterRange
impl ParameterRange
sourcepub fn integer_parameter_range_specification(
&self
) -> Option<&IntegerParameterRangeSpecification>
pub fn integer_parameter_range_specification(
&self
) -> Option<&IntegerParameterRangeSpecification>
A IntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.
sourcepub fn continuous_parameter_range_specification(
&self
) -> Option<&ContinuousParameterRangeSpecification>
pub fn continuous_parameter_range_specification(
&self
) -> Option<&ContinuousParameterRangeSpecification>
A ContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.
sourcepub fn categorical_parameter_range_specification(
&self
) -> Option<&CategoricalParameterRangeSpecification>
pub fn categorical_parameter_range_specification(
&self
) -> Option<&CategoricalParameterRangeSpecification>
A CategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.
source§impl ParameterRange
impl ParameterRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParameterRange
.
Trait Implementations§
source§impl Clone for ParameterRange
impl Clone for ParameterRange
source§fn clone(&self) -> ParameterRange
fn clone(&self) -> ParameterRange
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 ParameterRange
impl Debug for ParameterRange
source§impl PartialEq<ParameterRange> for ParameterRange
impl PartialEq<ParameterRange> for ParameterRange
source§fn eq(&self, other: &ParameterRange) -> bool
fn eq(&self, other: &ParameterRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.