Struct aws_sdk_sagemaker::types::builders::ParameterRangeBuilder
source · #[non_exhaustive]pub struct ParameterRangeBuilder { /* private fields */ }
Expand description
A builder for ParameterRange
.
Implementations§
source§impl ParameterRangeBuilder
impl ParameterRangeBuilder
sourcepub fn integer_parameter_range_specification(
self,
input: IntegerParameterRangeSpecification
) -> Self
pub fn integer_parameter_range_specification( self, input: IntegerParameterRangeSpecification ) -> Self
A IntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.
sourcepub fn set_integer_parameter_range_specification(
self,
input: Option<IntegerParameterRangeSpecification>
) -> Self
pub fn set_integer_parameter_range_specification( self, input: Option<IntegerParameterRangeSpecification> ) -> Self
A IntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.
sourcepub fn get_integer_parameter_range_specification(
&self
) -> &Option<IntegerParameterRangeSpecification>
pub fn get_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,
input: ContinuousParameterRangeSpecification
) -> Self
pub fn continuous_parameter_range_specification( self, input: ContinuousParameterRangeSpecification ) -> Self
A ContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.
sourcepub fn set_continuous_parameter_range_specification(
self,
input: Option<ContinuousParameterRangeSpecification>
) -> Self
pub fn set_continuous_parameter_range_specification( self, input: Option<ContinuousParameterRangeSpecification> ) -> Self
A ContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.
sourcepub fn get_continuous_parameter_range_specification(
&self
) -> &Option<ContinuousParameterRangeSpecification>
pub fn get_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,
input: CategoricalParameterRangeSpecification
) -> Self
pub fn categorical_parameter_range_specification( self, input: CategoricalParameterRangeSpecification ) -> Self
A CategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.
sourcepub fn set_categorical_parameter_range_specification(
self,
input: Option<CategoricalParameterRangeSpecification>
) -> Self
pub fn set_categorical_parameter_range_specification( self, input: Option<CategoricalParameterRangeSpecification> ) -> Self
A CategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.
sourcepub fn get_categorical_parameter_range_specification(
&self
) -> &Option<CategoricalParameterRangeSpecification>
pub fn get_categorical_parameter_range_specification( &self ) -> &Option<CategoricalParameterRangeSpecification>
A CategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.
sourcepub fn build(self) -> ParameterRange
pub fn build(self) -> ParameterRange
Consumes the builder and constructs a ParameterRange
.
Trait Implementations§
source§impl Clone for ParameterRangeBuilder
impl Clone for ParameterRangeBuilder
source§fn clone(&self) -> ParameterRangeBuilder
fn clone(&self) -> ParameterRangeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ParameterRangeBuilder
impl Debug for ParameterRangeBuilder
source§impl Default for ParameterRangeBuilder
impl Default for ParameterRangeBuilder
source§fn default() -> ParameterRangeBuilder
fn default() -> ParameterRangeBuilder
source§impl PartialEq<ParameterRangeBuilder> for ParameterRangeBuilder
impl PartialEq<ParameterRangeBuilder> for ParameterRangeBuilder
source§fn eq(&self, other: &ParameterRangeBuilder) -> bool
fn eq(&self, other: &ParameterRangeBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.