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 for ParameterRangeBuilder
impl PartialEq 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 ==
.impl StructuralPartialEq for ParameterRangeBuilder
Auto Trait Implementations§
impl Freeze for ParameterRangeBuilder
impl RefUnwindSafe for ParameterRangeBuilder
impl Send for ParameterRangeBuilder
impl Sync for ParameterRangeBuilder
impl Unpin for ParameterRangeBuilder
impl UnwindSafe for ParameterRangeBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more