pub struct Builder { /* private fields */ }
Expand description
A builder for IntegerHyperParameterRange
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_min_value(self, input: Option<i32>) -> Self
pub fn set_min_value(self, input: Option<i32>) -> Self
The minimum allowable value for the hyperparameter.
sourcepub fn set_max_value(self, input: Option<i32>) -> Self
pub fn set_max_value(self, input: Option<i32>) -> Self
The maximum allowable value for the hyperparameter.
sourcepub fn build(self) -> IntegerHyperParameterRange
pub fn build(self) -> IntegerHyperParameterRange
Consumes the builder and constructs a IntegerHyperParameterRange
.